From 42cc8695077c2739e8ff3982b24643f35861b12e Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 14:00:42 +0100 Subject: [PATCH 01/14] PrivacyList moved to library folder --- CoreBluetoothMock.podspec | 5 +++- CoreBluetoothMock/PrivacyInfo.xcprivacy | 10 ++++++++ .../CoreBluetoothMock.podspec.json | 12 ++++++++-- ...e-PrivacyInfo-CoreBluetoothMock-Info.plist | 24 +++++++++++++++++++ 4 files changed, 48 insertions(+), 3 deletions(-) create mode 100644 CoreBluetoothMock/PrivacyInfo.xcprivacy create mode 100644 Example/Pods/Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist diff --git a/CoreBluetoothMock.podspec b/CoreBluetoothMock.podspec index e61d38f..2691ea1 100644 --- a/CoreBluetoothMock.podspec +++ b/CoreBluetoothMock.podspec @@ -13,12 +13,15 @@ device and test the app on simulator. s.author = { 'Aleksander Nowakowski' => 'aleksander.nowakowski@nordicsemi.no' } s.source = { :git => 'https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock.git', :tag => s.version.to_s } s.social_media_url = 'https://twitter.com/nordictweets' + s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9'] s.ios.deployment_target = '11.0' s.osx.deployment_target = '10.13' s.tvos.deployment_target = '11.0' s.watchos.deployment_target = '4.0' - s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6'] s.source_files = 'CoreBluetoothMock/**/*' + s.resource_bundles = { + 'PrivacyInfo' => ['CoreBluetoothMock/PrivacyInfo.xcprivacy'] + } end diff --git a/CoreBluetoothMock/PrivacyInfo.xcprivacy b/CoreBluetoothMock/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..e4eb420 --- /dev/null +++ b/CoreBluetoothMock/PrivacyInfo.xcprivacy @@ -0,0 +1,10 @@ + + + + + NSPrivacyAccessedAPITypes + + NSPrivacyTracking + + + diff --git a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json index 60d8919..71d3abd 100644 --- a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json +++ b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json @@ -30,8 +30,16 @@ "5.3", "5.4", "5.5", - "5.6" + "5.6", + "5.7", + "5.8", + "5.9" ], "source_files": "CoreBluetoothMock/**/*", - "swift_version": "5.6" + "resource_bundles": { + "PrivacyInfo": [ + "CoreBluetoothMock/PrivacyInfo.xcprivacy" + ] + }, + "swift_version": "5.9" } diff --git a/Example/Pods/Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist b/Example/Pods/Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist new file mode 100644 index 0000000..feb234a --- /dev/null +++ b/Example/Pods/Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + BNDL + CFBundleShortVersionString + 0.18.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + NSPrincipalClass + + + From da05787216ca77a0a1c5b276eb38a6f16158fdd9 Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 14:08:01 +0100 Subject: [PATCH 02/14] Minimum iOS and tvOS version increased to 12 --- CoreBluetoothMock.podspec | 6 +++--- Example/Podfile | 2 +- .../Local Podspecs/CoreBluetoothMock.podspec.json | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CoreBluetoothMock.podspec b/CoreBluetoothMock.podspec index 2691ea1..ad9cb2a 100644 --- a/CoreBluetoothMock.podspec +++ b/CoreBluetoothMock.podspec @@ -15,9 +15,9 @@ device and test the app on simulator. s.social_media_url = 'https://twitter.com/nordictweets' s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9'] - s.ios.deployment_target = '11.0' - s.osx.deployment_target = '10.13' - s.tvos.deployment_target = '11.0' + s.ios.deployment_target = '12.0' + s.osx.deployment_target = '10.14' + s.tvos.deployment_target = '12.0' s.watchos.deployment_target = '4.0' s.source_files = 'CoreBluetoothMock/**/*' diff --git a/Example/Podfile b/Example/Podfile index 1d3f6ec..ab263c9 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -1,5 +1,5 @@ use_frameworks! -platform :ios, '11.0' +platform :ios, '12.0' target 'nRFBlinky' do pod 'CoreBluetoothMock', :path => '../' diff --git a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json index 71d3abd..ddfee6c 100644 --- a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json +++ b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json @@ -16,12 +16,6 @@ "tag": "0.17.0" }, "social_media_url": "https://twitter.com/nordictweets", - "platforms": { - "ios": "11.0", - "osx": "10.13", - "tvos": "11.0", - "watchos": "4.0" - }, "swift_versions": [ "4.2", "5.0", @@ -35,6 +29,12 @@ "5.8", "5.9" ], + "platforms": { + "ios": "12.0", + "osx": "10.14", + "tvos": "12.0", + "watchos": "4.0" + }, "source_files": "CoreBluetoothMock/**/*", "resource_bundles": { "PrivacyInfo": [ From 7511d431e3c22bb9d3f13d43bd525f1a4119c359 Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 14:23:19 +0100 Subject: [PATCH 03/14] Pod update --- Example/Podfile.lock | 6 +- Example/Pods/Manifest.lock | 6 +- Example/Pods/Pods.xcodeproj/project.pbxproj | 2404 +++-------------- .../CoreBluetoothMock-Info.plist | 2 +- .../CoreBluetoothMock.debug.xcconfig | 2 +- .../CoreBluetoothMock.release.xcconfig | 2 +- ...-nRFBlinky-nRFBlinky_UITests-frameworks.sh | 2 +- ...nRFBlinky-nRFBlinky_UITests.debug.xcconfig | 2 +- ...FBlinky-nRFBlinky_UITests.release.xcconfig | 2 +- .../Pods-nRFBlinky-frameworks.sh | 2 +- .../Pods-nRFBlinky.debug.xcconfig | 2 +- .../Pods-nRFBlinky.release.xcconfig | 2 +- Example/nRFBlinky.xcodeproj/project.pbxproj | 2 +- 13 files changed, 407 insertions(+), 2029 deletions(-) diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 74101e6..8c4a9da 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -9,8 +9,8 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - CoreBluetoothMock: a57a2b19d47cea663e34c3d8e62a5ecba37b0a3e + CoreBluetoothMock: f0d0a2abe6e22a875e8fd7f09da15f6f8d54e2c3 -PODFILE CHECKSUM: dbe11fdd34f545de2b6358750fede7261d00aa0a +PODFILE CHECKSUM: 0b65d3eb5c3b8364e0e8c102ccc0cee2258c07fb -COCOAPODS: 1.12.1 +COCOAPODS: 1.15.2 diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 74101e6..8c4a9da 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -9,8 +9,8 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - CoreBluetoothMock: a57a2b19d47cea663e34c3d8e62a5ecba37b0a3e + CoreBluetoothMock: f0d0a2abe6e22a875e8fd7f09da15f6f8d54e2c3 -PODFILE CHECKSUM: dbe11fdd34f545de2b6358750fede7261d00aa0a +PODFILE CHECKSUM: 0b65d3eb5c3b8364e0e8c102ccc0cee2258c07fb -COCOAPODS: 1.12.1 +COCOAPODS: 1.15.2 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 3f621e9..ad5f8bf 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -3,996 +3,151 @@ archiveVersion = 1; classes = { }; - objectVersion = 53; + objectVersion = 54; objects = { /* Begin PBXBuildFile section */ 0A32CB89E41E0E0D13A3550DF7B41CB5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 0AE9EC811537AF361F3CB7C782473473 /* Pods-nRFBlinky_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 258D14F03E5A6413193BAC7C1007AF66 /* Pods-nRFBlinky_Tests-dummy.m */; }; - 0E3A9E9943DDE846140819D3C9F6E1AE /* CoreBluetoothMock-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C2A6FFC9D0CD36A0F2077F88F9150BB /* CoreBluetoothMock-dummy.m */; }; - 13B9D09A242999FFCF24479D7F6A6EA7 /* CBMPeripheralSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8810232EC80F2CECDEA4F384114B960A /* CBMPeripheralSpec.swift */; }; + 13A434DDEC88BA10891CB7EC2FB0AD1C /* CBMPeripheral.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91005B1F2B37ACFFF064F0203DC59A89 /* CBMPeripheral.swift */; }; + 163044326A3EDA5D3CFD4C67154204A7 /* CBMAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 302B6C1B197F88C0C758F15AC93AE02F /* CBMAttributes.swift */; }; 1D0C61DB8642B5DFF28353C4E32831DA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; - 25402DAD262AA65C25D290D26BEA5F72 /* CBMPeripheralDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8A9010FF8D44ACBAB03305712138ED7 /* CBMPeripheralDelegateProxy.swift */; }; - 25CD1E200A7A9F02F2A8D3566189E7D1 /* CBMCentralManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6BC272175EEAB868B3C836FE1E464A8 /* CBMCentralManagerDelegate.swift */; }; - 2AE6DC76750D2BCE7426CF9E3A359B25 /* CBMPeripheral.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57F2DDEDF3EC5E277CABD8BB6429B2CD /* CBMPeripheral.swift */; }; - 31912A4803D961135328E736D9561CF5 /* Documentation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 3ACE06F6AFEC3C01B5C7306CF4644E71 /* Documentation.docc */; }; - 50E1BD044B1C721A6BAC687DD6EED702 /* CBMCentralManagerMock.swift in Sources */ = {isa = PBXBuildFile; fileRef = A26C0B8A4A1964538387BF8EE66442EA /* CBMCentralManagerMock.swift */; }; + 1E71700009466AC4FC9D61EBDF16251F /* CoreBluetoothMock-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1F8A700480DB04E376A96A5D16E728 /* CoreBluetoothMock-dummy.m */; }; + 2ACD11A4FC1126801772B90F4F9D7F3A /* CBMPeripheralSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4BBF203940242312F9F502D40C174E4 /* CBMPeripheralSpec.swift */; }; + 2AEC49A0D253410668378C32E38E6C68 /* CBMPeer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FBDFB4478025E4B86C606AD00164AD5 /* CBMPeer.swift */; }; + 4FE2CE7C5AC276736977ABE18AA630CF /* PrivacyInfo.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */; }; 58442FE5272883F9A5AD75D7F454B587 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; - 79B1D3D20D343CEA254B65C41CE2C84D /* CBMPeripheralPreview.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB39A7FD52CD0D238094460E13988330 /* CBMPeripheralPreview.swift */; }; - 7D6038F446EF43672262960ADBF38F9D /* CoreBluetoothMock-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B537A9C8B7A966031E6688585716D4 /* CoreBluetoothMock-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7F6FC449D63D6080845F7491270CD1F7 /* CBMPeripheralDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E4C084C61E67E48EFDABB1994D4F2F9 /* CBMPeripheralDelegate.swift */; }; - 8CD37884F9F154505E75C1246AB0306C /* CBMPeripheralSpecDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3375BF589F3DA63DE57DD0F5E6E3A01 /* CBMPeripheralSpecDelegate.swift */; }; - 9A7EB4976C780779121169B46E095E73 /* CBMPeer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 368D394EB1A2DB95A67913D13A597D73 /* CBMPeer.swift */; }; + 65D33B6FB56496291472C532ACDA22A2 /* CBMPeripheralDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D4A29D3ACD91817A2A6F5EBE160B279 /* CBMPeripheralDelegate.swift */; }; + 6AB39C94A2CC9D1FA57855543D32FCF8 /* PrivacyInfo.xcprivacy in Sources */ = {isa = PBXBuildFile; fileRef = 1B6C389415E0D9A43B237246A7B310FB /* PrivacyInfo.xcprivacy */; }; + 89221008937895C3257BBE4832A8FD64 /* Documentation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 15A440E77315ABFAFE892B30FFDF6E09 /* Documentation.docc */; }; + 89EAD28320FE453DAA049315A836DFE3 /* CBMCentralManagerFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = C21D8CAF91CB43D0BE216F9EEA09CDEA /* CBMCentralManagerFactory.swift */; }; + 903B670C1FDCA43AFDD59431DA0C0706 /* CBMCentralManagerMock.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0730100E45F2B5903D4110E9E6F85B0 /* CBMCentralManagerMock.swift */; }; A5424F98A4506A84409281CF9DCB5E50 /* Pods-nRFBlinky-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E184D822F902304BAA7F65D6A90587B /* Pods-nRFBlinky-dummy.m */; }; - B16D2BB46A12F462EE0E05011CF266A7 /* CBMCentralManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF86F9927BF1569AC0977051B800CD6C /* CBMCentralManager.swift */; }; + AC7F97116A9B417EFA3DA6A1589556B3 /* CBMCentralManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85BF8C70A395140BDE1877927469A6D0 /* CBMCentralManager.swift */; }; B558667EDB25B2544F7DBEAF79FE7E2D /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 136AD593F202ACE109B877B06A30F9B3 /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B6F664576A40B6987196665C12B8562F /* CBMAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3522ECF198D574075D1DB9325F45888F /* CBMAttributes.swift */; }; - BD646F17F0438A3058C3554613FF8F63 /* CBMManagerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4060D508A0613FB1D622ABEBA8BF2FDF /* CBMManagerTypes.swift */; }; + BF4A6369A028D1BF22AD4FEFCC6BB2C8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; C7BD3CB2879758D1502CBACD88395B1A /* Pods-nRFBlinky-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C5B2698EFAB36B4C94DDBD6245C469 /* Pods-nRFBlinky-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE7204C262DCDE1B748848567C26FA7E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; - D9F06BDF62AC0F794949403313361486 /* CBMCentralManagerFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = B839746842E823D2048AFA14708C8592 /* CBMCentralManagerFactory.swift */; }; + CCEAF594871356C68C751F681BBF2377 /* CBMCentralManagerNative.swift in Sources */ = {isa = PBXBuildFile; fileRef = A96A3F401E65A42A36904EBD5252985C /* CBMCentralManagerNative.swift */; }; + CEEAC1098EBEA2A58E65D3CF0F7D7B7E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1B6C389415E0D9A43B237246A7B310FB /* PrivacyInfo.xcprivacy */; }; + D8270C0417CAF3E19CE4CD6237B277FF /* CBMPeripheralPreview.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB408E8AFF1F660E3B5C87186C06C67F /* CBMPeripheralPreview.swift */; }; DB1D7F4C9BE1D6FDCF0A220A342702B5 /* Pods-nRFBlinky_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A61BDF33ED282A7D748B4FC5DAE523 /* Pods-nRFBlinky_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E1D2256ACCC839979767C707A2A698E5 /* CBMCentralManagerNative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E5DD3F13FDDDA4E5C44F9E4619488E8 /* CBMCentralManagerNative.swift */; }; + E1548D659124C3E56E05919DA3F1D662 /* CoreBluetoothMock-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 930F8FC27EC2A8FA2D3BB47D2F35C39D /* CoreBluetoothMock-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E5BDB07ADCB53D7633DC9AF7DF07A99E /* CBMManagerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE197D9FB847BA7E58D8975A38AD969 /* CBMManagerTypes.swift */; }; + E64E49E3B753055603C49D31E3B44F60 /* CBMPeripheralDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1C55A5F5FDBA7352275FD9F3273D43F /* CBMPeripheralDelegateProxy.swift */; }; + E6B7C37CC1408E99C4F002FD184A1D96 /* CBMPeripheralSpecDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C857B915479E7FFBCF4BCFF83B8CFE84 /* CBMPeripheralSpecDelegate.swift */; }; + EC00EF49529334EF8801024F0500469B /* CBMCentralManagerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9407630EBD5BC7FC8F1AD9092CF263F9 /* CBMCentralManagerDelegateProxy.swift */; }; EDFF1483173947D4DF125CBA02BFF9EA /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05A53FE949257853F7E3939C9F803937 /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m */; }; - F15220D9F26C38D19459FA170960A9E9 /* CBMCentralManagerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 283565A9F9F63DD7F2077CC5415D80E3 /* CBMCentralManagerDelegateProxy.swift */; }; + EE9BB1ABC315577B96D4F535BFB19552 /* CBMCentralManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC94BDBE2EC82D5D122A0729CF74BC4 /* CBMCentralManagerDelegate.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0B35C4E9CA503C94FD9E8B9D5F9F5E06 /* PBXContainerItemProxy */ = { + 0419CC7CA65C3A7779A20D6DFF74B5DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; - remoteInfo = CoreBluetoothMock; + remoteGlobalIDString = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589; + remoteInfo = "CoreBluetoothMock-PrivacyInfo"; }; - E515C70E72898D7360C50AAE26EF3DEB /* PBXContainerItemProxy */ = { + 7ACEB9113DE9EE191C645BDD80AAB5FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; remoteInfo = CoreBluetoothMock; }; - FF2795F3F3A0D4C2EC46306FF8F35524 /* PBXContainerItemProxy */ = { + F8B424CD3A3394627BB8D128D025AC25 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D8DA31B307E5478D785EED0F0F084E24; remoteInfo = "Pods-nRFBlinky"; }; + FE9350EF4CCC6E8D75BDCDB384FC1432 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; + remoteInfo = CoreBluetoothMock; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 007C5239267626342FEE8D2C3BCE5A7F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized/index.html; sourceTree = ""; }; - 008664211053751B4DC9B1B67446A7AC /* centralmanager(_:didfailtoconnect:error:)-9sppj.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didfailtoconnect:error:)-9sppj.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj.json"; sourceTree = ""; }; - 024538F9F191C0EC8EC6E97DFF79FBDE /* cancelperipheralconnection(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "cancelperipheralconnection(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:).json"; sourceTree = ""; }; - 036B9B748371E5AEC0FC0ACF86B1BEDC /* init().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init().json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init().json"; sourceTree = ""; }; - 0390EB3515C0F54F4323B22EEA815B54 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/readrssi()/index.html"; sourceTree = ""; }; - 04B2102F809937DB66B2DECA56512EC1 /* peripheral(_:didreadrssi:error:)-7zu2o.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreadrssi:error:)-7zu2o.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o.json"; sourceTree = ""; }; - 04CCBFE68A8FB3E27FC77B1C2E16DFA1 /* setnotifyvalue(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "setnotifyvalue(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:).json"; sourceTree = ""; }; - 04DA25D36D94578954EBC2E8FED7513E /* connect(_:options:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "connect(_:options:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:).json"; sourceTree = ""; }; - 04FDF34E6E04D1F644E2AAD052270B98 /* peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc.json"; sourceTree = ""; }; - 053AC0B8C295C1C38E9F4D2590AF8A99 /* cansendwritewithoutresponse.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cansendwritewithoutresponse.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse.json; sourceTree = ""; }; + 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PrivacyInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 05A53FE949257853F7E3939C9F803937 /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky-nRFBlinky_UITests-dummy.m"; sourceTree = ""; }; - 05BC2C05F5F68911A2B8222E3E0EFA5E /* centralmanager(_:didconnect:)-6tlfh.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didconnect:)-6tlfh.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh.json"; sourceTree = ""; }; - 069669AC78533B61E64F1D1191EA2B6F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmservice/index.html; sourceTree = ""; }; - 06FC49553932E0739D1FBD31EE065CED /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x/index.html"; sourceTree = ""; }; - 072A6003F584F986589E3ABF8E8A77BC /* cbmperipheraldelegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheraldelegate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegate.json; sourceTree = ""; }; - 0780AB908FFAF0EDFABAAB4DE69EC6CE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanager/isscanning/index.html; sourceTree = ""; }; - 08063281883B2DC97DCB985D0B9C0399 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:)/index.html"; sourceTree = ""; }; - 08B63A3357464677B33F3ECC93077E08 /* discoverdescriptors(for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverdescriptors(for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:).json"; sourceTree = ""; }; - 08D6BA10987D512D6C105C1FD7F2A034 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey/index.html; sourceTree = ""; }; - 09066C56B6A274471EE3000C357DEC4B /* init(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/init(_:).json"; sourceTree = ""; }; - 092AF33C634EF3E854AFC329C34D8947 /* data.json */ = {isa = PBXFileReference; includeInIndex = 1; name = data.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/data.json; sourceTree = ""; }; - 097BF116FE12CEC462CFD4EAAFCDF2F2 /* connectable(name:services:delegate:connectioninterval:mtu:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "connectable(name:services:delegate:connectioninterval:mtu:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:).json"; sourceTree = ""; }; - 0B272FD39E0CBD20D10780E5CD98050B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl/index.html"; sourceTree = ""; }; - 0B4F4B99AC5D580194AA7DD1408CAC05 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerstate/unknown/index.html; sourceTree = ""; }; - 0C3FCC0D76BC8A9409C2217D710C5E4F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg/index.html"; sourceTree = ""; }; - 0C5B4ED5BCC69873187778F7BB97B481 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property/index.html"; sourceTree = ""; }; - 0C754FB192A4D01526BDE3300E6FAAC1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:)/index.html"; sourceTree = ""; }; - 0CD81BA47934E91B6E68F5803CAC29C2 /* developer-og.jpg */ = {isa = PBXFileReference; includeInIndex = 1; name = "developer-og.jpg"; path = "docs/developer-og.jpg"; sourceTree = ""; }; - 0CDD65C94A0296E49E18A435BAC8734C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmmanagerstate/hash(into:)/index.html"; sourceTree = ""; }; - 0D78A23496FBED47B9B53C114BF70816 /* builder.json */ = {isa = PBXFileReference; includeInIndex = 1; name = builder.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder.json; sourceTree = ""; }; - 0DCB9F19D21417276786F92007C743F6 /* documentation-topic~topic~tutorials-overview.1099452b.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "documentation-topic~topic~tutorials-overview.1099452b.css"; path = "docs/css/documentation-topic~topic~tutorials-overview.1099452b.css"; sourceTree = ""; }; - 0DED66566428563AD478CCA285E3D275 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:)/index.html"; sourceTree = ""; }; - 0E08ADA173A94CF3D7DC0E40D6996B59 /* discoverincludedservices(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverincludedservices(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:).json"; sourceTree = ""; }; - 0E27869639D622CD27B490612D4E5677 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk/index.html"; sourceTree = ""; }; - 0E44E0236CF2FD90E11F1481D863031C /* peripheral(_:didreceivereadrequestfor:)-9ybod.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivereadrequestfor:)-9ybod.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod.json"; sourceTree = ""; }; - 0E7476FC4DF13BB4872421EB38BEAB1D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/index.html; sourceTree = ""; }; - 0E7D9B452E7C9BAF4AD6D905B1F4E532 /* cbmcharacteristicproperties.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcharacteristicproperties.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristicproperties.json; sourceTree = ""; }; - 0F27CD797365D4637719231685EF34F5 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:)/index.html"; sourceTree = ""; }; - 0F44E44609808785023B25A469D94C7F /* highlight-js-perl.757d7b6f.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-perl.757d7b6f.js"; path = "docs/js/highlight-js-perl.757d7b6f.js"; sourceTree = ""; }; - 0F4D9E78FF9317337091D3238EAA9F27 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations/index.html"; sourceTree = ""; }; - 107832286DD622A8D779DB0B1F8CDBF2 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/index.html; sourceTree = ""; }; - 10951710A62932BA836B813C3994D651 /* tutorials-overview.2cadc732.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "tutorials-overview.2cadc732.js"; path = "docs/js/tutorials-overview.2cadc732.js"; sourceTree = ""; }; - 110E55F2C5FB903FD163EC3DC5D73DA0 /* delay.json */ = {isa = PBXFileReference; includeInIndex = 1; name = delay.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/delay.json; sourceTree = ""; }; - 117E645CBDB6C54955954C11A0713A99 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey/index.html; sourceTree = ""; }; - 1249EBB867C36EC5C0BEF9C9FBD9A64E /* readvalue(for:)-b1qu.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readvalue(for:)-b1qu.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu.json"; sourceTree = ""; }; - 1264153E1F8E6DC2B47B1BAB5C908FB4 /* identifier.json */ = {isa = PBXFileReference; includeInIndex = 1; name = identifier.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/identifier.json; sourceTree = ""; }; - 126B3120E6C2DB667524C7ABA7C1BE16 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0/index.html"; sourceTree = ""; }; - 12E836838CFE6AEFF203F7A7C7E66A33 /* peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9.json"; sourceTree = ""; }; - 12EDB871AC5B69137E4DB84DF794CAD0 /* simulatemacchange(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulatemacchange(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:).json"; sourceTree = ""; }; - 13698D79FCA85308015B90EACAB951D5 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized/index.html; sourceTree = ""; }; + 06938B51C0B921FD24F65A621833E63C /* CoreBluetoothMock.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = CoreBluetoothMock.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 136AD593F202ACE109B877B06A30F9B3 /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h"; sourceTree = ""; }; - 13A8611A4EDAE37492675B166A6C066B /* chunk-384ef189.bb1ed903.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "chunk-384ef189.bb1ed903.js"; path = "docs/js/chunk-384ef189.bb1ed903.js"; sourceTree = ""; }; - 13D2264CD8FE9530AB32AE70BC80C2A1 /* init(type:primary:includedservice:characteristics:)-255jq.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(type:primary:includedservice:characteristics:)-255jq.json"; path = "docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq.json"; sourceTree = ""; }; - 146E6E11AEB2315ECDE767C10F21BF7C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:)/index.html"; sourceTree = ""; }; - 14B2022ECC8A7F7A3F37DEFAA06F0EFB /* diddiscoverservices.json */ = {isa = PBXFileReference; includeInIndex = 1; name = diddiscoverservices.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices.json; sourceTree = ""; }; - 14EC71CA06DBE53ABF53B327CE4E045B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/hash/index.html; sourceTree = ""; }; - 14F7DF259A32506D8F45EA4E9EACEE38 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal/index.html"; sourceTree = ""; }; - 163E18E41F4844C9D3FA22F710A78283 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:)/index.html"; sourceTree = ""; }; - 165688903D89A6E85AB794B7A9DC3AC7 /* cbmcentralmanagerdelegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagerdelegate.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate.json; sourceTree = ""; }; - 1657FFEC8E30A4DF6E2D39E6A70528AD /* peripheral(_:diddiscoverdescriptorsfor:error:)-240qo.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverdescriptorsfor:error:)-240qo.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo.json"; sourceTree = ""; }; - 168073D762DF04C290AEA68267459BE9 /* peripheral(_:didopen:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didopen:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:).json"; sourceTree = ""; }; - 1686C41A864DC409B7B6A63B7EDF3809 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey/index.html; sourceTree = ""; }; - 16CEB0D2AA2C6B8D0EB5561B3E4ACFD2 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:)/index.html"; sourceTree = ""; }; - 16EEBCE40F40EBA5BA3A885BCCDC19DC /* cbmadvertisementdatalocalnamekey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementdatalocalnamekey.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey.json; sourceTree = ""; }; - 175EFC695579E8890126891330D4922E /* cbmperipheraldelegateproxywithl2capchannel.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheraldelegateproxywithl2capchannel.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel.json; sourceTree = ""; }; - 182776627EE2F7A515220732FA18E3EB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/index.html; sourceTree = ""; }; - 1831B2566234E97F09C08711A9D14145 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:)/index.html"; sourceTree = ""; }; + 15A440E77315ABFAFE892B30FFDF6E09 /* Documentation.docc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.documentationcatalog; name = Documentation.docc; path = CoreBluetoothMock/Documentation.docc; sourceTree = ""; }; 186005ABF43807617B23120BFEDA9F21 /* Pods-nRFBlinky-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-nRFBlinky-frameworks.sh"; sourceTree = ""; }; - 18E8F2B8942A95213CA838ADC3BE6931 /* highlight-js-custom-markdown.7cffc4b3.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-custom-markdown.7cffc4b3.js"; path = "docs/js/highlight-js-custom-markdown.7cffc4b3.js"; sourceTree = ""; }; - 190202883FF8C67EE722976759F0FC9C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr/index.html"; sourceTree = ""; }; - 1910CB3704F12E4645D5B7C55E9EE735 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmatterror/index.html; sourceTree = ""; }; - 1931C92E3F7349795CF778C64345B750 /* readrssi().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readrssi().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/readrssi().json"; sourceTree = ""; }; - 1951CF1C4A43251255CD5AA591822394 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanager/index.html; sourceTree = ""; }; - 1978AD1E6D76A67DAE775B9DF2E4C3D6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheral/state/index.html; sourceTree = ""; }; - 19CD2388E7FFB1FC9E86E1D34FE443E6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:)/index.html"; sourceTree = ""; }; - 19EB8C314E8C5CAC268F841913170662 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/init(_:)/index.html"; sourceTree = ""; }; - 19EEB1235D32422657D59B1F99BFF617 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7/index.html"; sourceTree = ""; }; - 1A4DEE7B9495400669C457B4051D1DE6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65/index.html"; sourceTree = ""; }; - 1A95CFF598A1ABD193F158DE7DCA659E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:)/index.html"; sourceTree = ""; }; - 1AA6850CBA5422AA28B525FA10DF2CB4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb/index.html"; sourceTree = ""; }; - 1ABF223638C742686D32930D03421C90 /* highlight-js-ruby.f889d392.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-ruby.f889d392.js"; path = "docs/js/highlight-js-ruby.f889d392.js"; sourceTree = ""; }; - 1B0CFC92B2CB082843FA0186F02E8A2E /* cbmcentralmanagerscanoptionsolicitedserviceuuidskey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagerscanoptionsolicitedserviceuuidskey.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey.json; sourceTree = ""; }; - 1B6197A3F82D122297F7CF9B43868DB8 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:)/index.html"; sourceTree = ""; }; - 1BBA1C8DD34EC69FF18A2629DBE014E1 /* peripheral(_:didreceivewriterequestfor:data:)-75hfw.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewriterequestfor:data:)-75hfw.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw.json"; sourceTree = ""; }; - 1BF28B85F3A21875FA889596C95DBFEF /* favicon.ico */ = {isa = PBXFileReference; includeInIndex = 1; name = favicon.ico; path = docs/favicon.ico; sourceTree = ""; }; - 1BF6192FE9FB6D874868C954BB47697E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/builder/build()/index.html"; sourceTree = ""; }; - 1C599CDD18AB9B7675F6C04C60576A3B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1D128D1E9D6B8336A25E863B2C677BE4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz/index.html"; sourceTree = ""; }; - 1D47659E908B8689CECCDBA14EB22973 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey/index.html; sourceTree = ""; }; - 1D4F78831A01F18FF2E1B137E95CE122 /* peripheral(_:didwritevaluefor:error:)-2aalw.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didwritevaluefor:error:)-2aalw.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw.json"; sourceTree = ""; }; - 1DA888954D1FCE7F202DB207A72AC739 /* cbmperipheralstate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheralstate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralstate.json; sourceTree = ""; }; - 1E409006A29AB194F3667FF366E3DAE1 /* peripheraldidreceiveconnectionrequest(_:)-6eqgz.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheraldidreceiveconnectionrequest(_:)-6eqgz.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz.json"; sourceTree = ""; }; - 1E45F9A8AF033040684FA3C12AA6FA10 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan()/index.html"; sourceTree = ""; }; - 1E57CAA4BE86FFA2335E94F2BEFD00D7 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj/index.html"; sourceTree = ""; }; - 1E5DD3F13FDDDA4E5C44F9E4619488E8 /* CBMCentralManagerNative.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerNative.swift; path = CoreBluetoothMock/CBMCentralManagerNative.swift; sourceTree = ""; }; - 1E749428BACEC4ED35CB79B90D353866 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o/index.html"; sourceTree = ""; }; - 1F0BE3BE3F6208F254FA6E3E2574A305 /* cancelperipheralconnection(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "cancelperipheralconnection(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:).json"; sourceTree = ""; }; - 1F5CCEF51C0957D188616F1BA1DABC41 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv/index.html"; sourceTree = ""; }; + 1B6C389415E0D9A43B237246A7B310FB /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = CoreBluetoothMock/PrivacyInfo.xcprivacy; sourceTree = ""; }; 1F92E40BA4B115F4A8FF31133C71E5C9 /* Pods-nRFBlinky-nRFBlinky_UITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky-nRFBlinky_UITests.modulemap"; sourceTree = ""; }; - 1FC7C8724E09E114B001426ACCFFBD88 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel/index.html; sourceTree = ""; }; - 1FD2173C4497DFDB3BEE9F33462F0AA1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5/index.html"; sourceTree = ""; }; - 2017A512941D435EB2773DD3981C99B7 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/known-issues/index.html"; sourceTree = ""; }; - 2021153E6F364AF1FCA3048074E6C42A /* value.json */ = {isa = PBXFileReference; includeInIndex = 1; name = value.json; path = docs/data/documentation/corebluetoothmock/cbmdescriptor/value.json; sourceTree = ""; }; - 203B9F9ADE044664ED487C7440125177 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerstate/hashvalue/index.html; sourceTree = ""; }; - 2059DDAA23DEECA7CD5EB8CB83A552C6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:)/index.html"; sourceTree = ""; }; - 2077F07DCE5CCB97D5B8B6C2870A085B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j/index.html"; sourceTree = ""; }; - 2082495A8BA6DAA0125C3CD596C05D2E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:)/index.html"; sourceTree = ""; }; - 20C532E56FEB250E04098F84EFFAE458 /* cansendwritewithoutresponse.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cansendwritewithoutresponse.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse.json; sourceTree = ""; }; - 218C99DC3C65A6C706694032E2FFFBF8 /* peripheral(_:didupdatenotificationstatefor:error:)-9ryr0.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatenotificationstatefor:error:)-9ryr0.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0.json"; sourceTree = ""; }; - 21AF0DA3FB70977629E8C867D479A336 /* cbmperipheraldelegateproxy.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheraldelegateproxy.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy.json; sourceTree = ""; }; - 21B151E2A1C805A181017716B2360E64 /* centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n.json"; sourceTree = ""; }; - 21F704020D97081786D01A1A29603A69 /* advertisinginterval.json */ = {isa = PBXFileReference; includeInIndex = 1; name = advertisinginterval.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval.json; sourceTree = ""; }; - 2207FAE2C03AAC6D38B738EB3CCC9247 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/delegate/index.html; sourceTree = ""; }; - 22E502451E458B1C4F93232ABB91A1BE /* retrieveconnectedperipherals(withservices:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "retrieveconnectedperipherals(withservices:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:).json"; sourceTree = ""; }; - 23880F0C320D9CE55F035096BD46D18D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property/index.html"; sourceTree = ""; }; - 23A19AEBE6F8481C1CB1C60A236F052F /* setnotifyvalue(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "setnotifyvalue(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:).json"; sourceTree = ""; }; 23DDBE0DFE085AC6F53CE75068F0E893 /* Pods-nRFBlinky.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky.modulemap"; sourceTree = ""; }; - 23E4128E289ECD2FFF52F8F956EF04D4 /* properties.json */ = {isa = PBXFileReference; includeInIndex = 1; name = properties.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristic/properties.json; sourceTree = ""; }; - 240CBA0647B3BB9B03947C4AFD49162E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey/index.html; sourceTree = ""; }; - 246004BDE0FECFDD59B74E08C234B429 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/identifier/index.html; sourceTree = ""; }; - 24B5F04A20FC3C8AD40CA08134D8481A /* peripheral(_:didreceiveservicediscoveryrequest:)-1p1el.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceiveservicediscoveryrequest:)-1p1el.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el.json"; sourceTree = ""; }; - 251398C1A6F5B7E542EF8269B89B0FC1 /* centralmanager(_:connectioneventdidoccur:for:)-1ay8d.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:connectioneventdidoccur:for:)-1ay8d.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d.json"; sourceTree = ""; }; 258D14F03E5A6413193BAC7C1007AF66 /* Pods-nRFBlinky_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky_Tests-dummy.m"; sourceTree = ""; }; - 25984A2754D45BC643D27D64A9729634 /* centralmanager(_:diddiscover:advertisementdata:rssi:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:diddiscover:advertisementdata:rssi:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:).json"; sourceTree = ""; }; - 26282AD7AD2694750F4FB73FAEE189E9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations/index.html"; sourceTree = ""; }; - 26364A279ECBC887948AF33AF2604E51 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected/index.html; sourceTree = ""; }; - 266EE853CAB93FA1D1C2FABB4738BC2A /* retrieveconnectedperipherals(withservices:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "retrieveconnectedperipherals(withservices:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:).json"; sourceTree = ""; }; - 26A16D255751A7FA267E6433AB369BA7 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey/index.html; sourceTree = ""; }; - 27219BD69A07D28F1C810DF3C85DCDEB /* discoverincludedservices(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverincludedservices(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:).json"; sourceTree = ""; }; - 27C0C0F9E216CE28875E9C441AA01AD1 /* readvalue(for:)-kuta.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readvalue(for:)-kuta.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta.json"; sourceTree = ""; }; - 27C51442F4833B9C3CBBE1E244CBA5D7 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta/index.html"; sourceTree = ""; }; - 2808D57AA7C724ED7172F5509B596362 /* writevalue(_:for:type:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "writevalue(_:for:type:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:).json"; sourceTree = ""; }; - 281C8022D5A275C9108E57A9958C2F09 /* topic.bb695832.js */ = {isa = PBXFileReference; includeInIndex = 1; name = topic.bb695832.js; path = docs/js/topic.bb695832.js; sourceTree = ""; }; - 283565A9F9F63DD7F2077CC5415D80E3 /* CBMCentralManagerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegateProxy.swift; path = CoreBluetoothMock/CBMCentralManagerDelegateProxy.swift; sourceTree = ""; }; - 284E7F9DE2D4E2643921E346E9ACA153 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching()/index.html"; sourceTree = ""; }; - 28C26FC426B24530543E79D73BA32879 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc/index.html"; sourceTree = ""; }; - 293DF5895DB815F1CE654372AFCFFCC2 /* peripheral(_:diddiscoverservices:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverservices:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:).json"; sourceTree = ""; }; - 299ACE0D05017FD66EFF3766FAE9D916 /* state.json */ = {isa = PBXFileReference; includeInIndex = 1; name = state.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/state.json; sourceTree = ""; }; - 29E48A65294AD6C617566B675BB9BEDE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/name/index.html; sourceTree = ""; }; - 29F41F384DEEFEAAA27F901C2F4D0492 /* connectiondelegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = connectiondelegate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate.json; sourceTree = ""; }; - 2A1CB951A152FBC5F70E1A0E143CD281 /* scanforperipherals(withservices:options:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "scanforperipherals(withservices:options:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:).json"; sourceTree = ""; }; - 2A973EDE9CAE6AC13C3EFA333540918F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerstate/unsupported/index.html; sourceTree = ""; }; - 2AB3611B46E4CED96C6C068BA15F3A4B /* cbmadvertisementdataserviceuuidskey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementdataserviceuuidskey.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey.json; sourceTree = ""; }; - 2AB7B514814AAF83977D0DF3C8A2AA7B /* advertising(advertisementdata:withinterval:delay:alsowhenconnected:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "advertising(advertisementdata:withinterval:delay:alsowhenconnected:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:).json"; sourceTree = ""; }; - 2ADF45FAA8B11747DDB2B9D1EB35C4DB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:)/index.html"; sourceTree = ""; }; - 2B2708F31AC38DA9692A07559A31FB14 /* cbmcentralmanagerfactory.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagerfactory.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory.json; sourceTree = ""; }; - 2B2D331E128D51511C9910933B1E443C /* peripheral(_:diddiscoverdescriptorsfor:error:)-8554j.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverdescriptorsfor:error:)-8554j.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j.json"; sourceTree = ""; }; - 2BA1EC946411E7BE15C95D5D4A8E84E0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralstate/index.html; sourceTree = ""; }; - 2C7449229E59EFA8AA64B05C29B46CD2 /* highlight-js-shell.dd7f411f.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-shell.dd7f411f.js"; path = "docs/js/highlight-js-shell.dd7f411f.js"; sourceTree = ""; }; - 2CD391F2FC526E20B67CFC41C40292E5 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1/index.html"; sourceTree = ""; }; - 2E3C568B18A85011C43E4B169F971001 /* readrssi().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readrssi().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readrssi().json"; sourceTree = ""; }; - 2E44ED99300CB2A779723C0EC2387FBA /* simulatepoweroff().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulatepoweroff().json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff().json"; sourceTree = ""; }; - 2E573269B8F716F7319666A48EBD99EC /* cbmcharacteristicwritetype.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcharacteristicwritetype.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristicwritetype.json; sourceTree = ""; }; - 2F9E177A98B1700FDAE3DBA52F2A7CB9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralpreview/identifier/index.html; sourceTree = ""; }; - 2FB535E1BCB6CA09CE34F83F8851C7AB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementconfig/data/index.html; sourceTree = ""; }; - 2FD98C34AF293D167213E494E966E2BF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78/index.html"; sourceTree = ""; }; - 308EE36497791FA7B38B7B41B3E8FE6F /* simulation.json */ = {isa = PBXFileReference; includeInIndex = 1; name = simulation.json; path = docs/data/documentation/corebluetoothmock/simulation.json; sourceTree = ""; }; - 309538009BBBAB9B759A74C9E61ED941 /* peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13.json"; sourceTree = ""; }; - 30D76BB0CDBD57547449C05581F6DC02 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:)/index.html"; sourceTree = ""; }; - 30E69669CD4CD37105BAE39ECC786E59 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:)/index.html"; sourceTree = ""; }; - 312D9D77BA7667154EC3DD541D9876D0 /* cbmdescriptor.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmdescriptor.json; path = docs/data/documentation/corebluetoothmock/cbmdescriptor.json; sourceTree = ""; }; - 319418C34F1FB652D3767C6B3787D885 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementconfig/interval/index.html; sourceTree = ""; }; - 319ECC084B21BDD45160CAB48CFC8E0C /* authorization-swift.property.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "authorization-swift.property.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property.json"; sourceTree = ""; }; - 31CAD4FD236DAC96D8AC2AAAAE317362 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73/index.html"; sourceTree = ""; }; - 3337E146A3443A1F22941FF594413378 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0/index.html"; sourceTree = ""; }; - 33614F6E03F8580301AE665AE96B873F /* cbmcentralmanagernative.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagernative.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagernative.json; sourceTree = ""; }; - 33B14343B2B49E020235A8BB5175AF4F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/advertisement/index.html; sourceTree = ""; }; - 34DCEF1230236005ABDB450A65E91003 /* advertisementdata.json */ = {isa = PBXFileReference; includeInIndex = 1; name = advertisementdata.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata.json; sourceTree = ""; }; - 3522ECF198D574075D1DB9325F45888F /* CBMAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMAttributes.swift; path = CoreBluetoothMock/CBMAttributes.swift; sourceTree = ""; }; - 3599B96F6E4FF857C5D54EDDD4F707F8 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i/index.html"; sourceTree = ""; }; - 361B5AD88A1F8EFFE1B546A68D8E9C01 /* isconnected.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isconnected.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/isconnected.json; sourceTree = ""; }; - 3626010C5B6F095C91CCC7E6D22789AA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices/index.html; sourceTree = ""; }; - 3626F883157BA1B17F5EB0659B9477EE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13/index.html"; sourceTree = ""; }; - 3629C9EB340F9FCEFE6FFCE4B513D2ED /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 368D394EB1A2DB95A67913D13A597D73 /* CBMPeer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeer.swift; path = CoreBluetoothMock/CBMPeer.swift; sourceTree = ""; }; - 37556A783F6A86976061603138C4BA5C /* simulateinitialstate(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulateinitialstate(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:).json"; sourceTree = ""; }; - 375E5BC0E10CD28035413FEDF2243C27 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect/index.html; sourceTree = ""; }; - 3761F7161F3D769004D6183166552751 /* ==(_:_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "==(_:_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:).json"; sourceTree = ""; }; - 376DEC45D76E03C05C5BF6E4555CB085 /* peripheral.json */ = {isa = PBXFileReference; includeInIndex = 1; name = peripheral.json; path = docs/data/documentation/corebluetoothmock/cbmservice/peripheral.json; sourceTree = ""; }; - 3777EB8F926A93F6CFAC6EEA5B7B8685 /* peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2.json"; sourceTree = ""; }; - 37C92166B49EA4F6DD203D2CC5675B37 /* peripheral(_:didreceivesetnotifyrequest:for:)-8yagc.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivesetnotifyrequest:for:)-8yagc.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc.json"; sourceTree = ""; }; - 37F5A155D64CF3AACA99CEB90E6965C3 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl/index.html"; sourceTree = ""; }; - 37FAFBEC023B0CA81C5288909AD31A10 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:)/index.html"; sourceTree = ""; }; - 38133E6619634F809D4FC0359CB1E12E /* cbmattribute.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmattribute.json; path = docs/data/documentation/corebluetoothmock/cbmattribute.json; sourceTree = ""; }; - 386161133E4C003011ED28D78ABFED6C /* unknown.json */ = {isa = PBXFileReference; includeInIndex = 1; name = unknown.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerstate/unknown.json; sourceTree = ""; }; - 386C95B9DCC37C4D8C7F48BCBD3D8642 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval/index.html; sourceTree = ""; }; - 3870C668EBB4775284A4062F9D7F1844 /* centralmanager(_:didconnect:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didconnect:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:).json"; sourceTree = ""; }; - 38943396449740F10302C9FF0950F6B7 /* peripheral(_:didupdatevaluefor:error:)-2xce0.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatevaluefor:error:)-2xce0.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0.json"; sourceTree = ""; }; - 390BAE3244B0E2F0BE14F69C1E475C12 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse/index.html; sourceTree = ""; }; - 392E09C949486860A2EC1612335AB651 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/index.html; sourceTree = ""; }; - 3934F8591083D7150C7613D4935DB685 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmservicemock/isequal(_:)/index.html"; sourceTree = ""; }; - 398FCBF970B72D3B393C129A3C9B0E3B /* discovercharacteristics(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discovercharacteristics(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:).json"; sourceTree = ""; }; - 39BBF0AA2BB1E14C4FCA81A07CD2A79F /* cbmadvertisementdataisconnectable.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementdataisconnectable.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementdataisconnectable.json; sourceTree = ""; }; - 39D418FAAFD0BFD455007C70BE1C27C9 /* peripheral(_:didreceivereadrequestfor:)-5c1ls.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivereadrequestfor:)-5c1ls.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls.json"; sourceTree = ""; }; - 3A092389010EC99FD8415A02C1C70986 /* peripheral(_:didreceivewritecommandfor:data:)-14ln0.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewritecommandfor:data:)-14ln0.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0.json"; sourceTree = ""; }; - 3A0C88E7C2C9EF1C16DC7E59DFA42ADD /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz/index.html"; sourceTree = ""; }; - 3A5028F0B7F3E1316375EB91779E0DDF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementdataisconnectable/index.html; sourceTree = ""; }; - 3AC26891F03F0DE5524E9A1EFB4EB35A /* state.json */ = {isa = PBXFileReference; includeInIndex = 1; name = state.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralpreview/state.json; sourceTree = ""; }; - 3ACCF4D8EE9FFD21323F6C4D126D3387 /* init(type:properties:descriptors:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(type:properties:descriptors:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:).json"; sourceTree = ""; }; - 3ACE06F6AFEC3C01B5C7306CF4644E71 /* Documentation.docc */ = {isa = PBXFileReference; includeInIndex = 1; name = Documentation.docc; path = CoreBluetoothMock/Documentation.docc; sourceTree = ""; }; - 3B1F8DFCE4318A30A38C2DD1B3D0CBA4 /* peripheral(_:didupdatevaluefor:error:)-2bu3j.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatevaluefor:error:)-2bu3j.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j.json"; sourceTree = ""; }; - 3B426ED484B103AB250E2B5A8E8FC15B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey/index.html; sourceTree = ""; }; - 3B6F88FC940B4EECEDB2430253C2476A /* CoreBluetoothMock-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-prefix.pch"; sourceTree = ""; }; - 3C7EE093FB86064E8CBBBDAE5279FBCC /* characteristics.json */ = {isa = PBXFileReference; includeInIndex = 1; name = characteristics.json; path = docs/data/documentation/corebluetoothmock/cbmservice/characteristics.json; sourceTree = ""; }; - 3CCA6852029B5245088069380A8E4320 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/stopscan()/index.html"; sourceTree = ""; }; - 3CFC1B61F3C18565797DC74CD73264A5 /* migration-guide.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "migration-guide.json"; path = "docs/data/documentation/corebluetoothmock/migration-guide.json"; sourceTree = ""; }; - 3D0BDFFDD1F621F8D9F6557613B406C9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2/index.html"; sourceTree = ""; }; - 3D36173B9922909032EF84BD380FFCC8 /* far.json */ = {isa = PBXFileReference; includeInIndex = 1; name = far.json; path = docs/data/documentation/corebluetoothmock/cbmproximity/far.json; sourceTree = ""; }; - 3D729C2E259C455E97114E1374D0D26B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:)/index.html"; sourceTree = ""; }; - 3D76A84B6D75A1FB2947167EFA3774E8 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmproximity/equatable-implementations/index.html"; sourceTree = ""; }; - 3D9F7B1AA1CEF8CDA290FAC496A4B613 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:)/index.html"; sourceTree = ""; }; - 3DFFB1C7D4A883A1C476127D79DEB6B2 /* cbmcentralmanager.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanager.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanager.json; sourceTree = ""; }; - 3ED8482072955102D310014DF3472F51 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48/index.html"; sourceTree = ""; }; - 3F100C463EE7D9AB1558D23B88765BA4 /* peripheral(_:didreceivereadrequestfor:)-7sk6x.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivereadrequestfor:)-7sk6x.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x.json"; sourceTree = ""; }; - 3F1D1C98EFBAE4A5DDDDDFB4B7BA94C1 /* simulatedisconnection(witherror:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulatedisconnection(witherror:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:).json"; sourceTree = ""; }; - 3F9E935BC5290DC00D76B7A589FC8963 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi/index.html"; sourceTree = ""; }; - 3FE9366289CB43C05ACD9F980BF7F1BF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:)/index.html"; sourceTree = ""; }; - 403987AA02BFE4B3274EBFD77FEB33D7 /* centralmanager(_:willrestorestate:)-4zyhg.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:willrestorestate:)-4zyhg.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg.json"; sourceTree = ""; }; - 40542B913CED07D9E63B1B468AD59D5C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash/index.html"; sourceTree = ""; }; - 4060D508A0613FB1D622ABEBA8BF2FDF /* CBMManagerTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMManagerTypes.swift; path = CoreBluetoothMock/CBMManagerTypes.swift; sourceTree = ""; }; - 4072891023EB27790107644E8185F830 /* hash(into:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "hash(into:).json"; path = "docs/data/documentation/corebluetoothmock/cbmmanagerstate/hash(into:).json"; sourceTree = ""; }; - 4076B85E6D1B2CDE35AFB4BA5197B216 /* readvalue(for:)-1hqxp.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readvalue(for:)-1hqxp.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp.json"; sourceTree = ""; }; - 409DAFDB94DE8691D251AD03486DE519 /* init(data:interval:delay:isadvertisingwhenconnected:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(data:interval:delay:isadvertisingwhenconnected:).json"; path = "docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:).json"; sourceTree = ""; }; - 41FDB960D5DAEB5FC129BF231F3CD7A7 /* cansendwritewithoutresponse.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cansendwritewithoutresponse.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse.json; sourceTree = ""; }; - 421198D3018A7F734688751779DE938C /* retrieveperipherals(withidentifiers:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "retrieveperipherals(withidentifiers:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:).json"; sourceTree = ""; }; - 425D5501C6BF711B6585F82279B68C10 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:)/index.html"; sourceTree = ""; }; - 42C31A8EE4B1C4A9B6A85BFA96766FD0 /* mocking-peripherals.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "mocking-peripherals.json"; path = "docs/data/documentation/corebluetoothmock/mocking-peripherals.json"; sourceTree = ""; }; - 42D6EB5E429B57D86D6B48105CC646B9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43/index.html"; sourceTree = ""; }; - 42F81A72B6757FD9C564B2D3217DA117 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u/index.html"; sourceTree = ""; }; - 43152F13B3564C267092014F95718EB4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:)/index.html"; sourceTree = ""; }; - 43BED3EB3FF366AC3307F95E81584371 /* cbmconnectperipheraloptionnotifyondisconnectionkey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmconnectperipheraloptionnotifyondisconnectionkey.json; path = docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey.json; sourceTree = ""; }; - 4411F7FA8408C8F685BA5198C28AD40E /* teardownsimulation().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "teardownsimulation().json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation().json"; sourceTree = ""; }; - 442CD322BE28AAE668631F1680EEFC60 /* init(delegate:queue:options:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(delegate:queue:options:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:).json"; sourceTree = ""; }; - 44518F0D701490B917428E68C0ABAACC /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmuuid/index.html; sourceTree = ""; }; - 44AD6FBF2C5ADDC5136D8587BAF7A02E /* index.json */ = {isa = PBXFileReference; includeInIndex = 1; name = index.json; path = docs/index/index.json; sourceTree = ""; }; - 44C296ED11CB58179A798BE454B89D5D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename/index.html; sourceTree = ""; }; - 44C52ED5240AA9C46503CB943E62A256 /* cbmcccdescriptormock.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcccdescriptormock.json; path = docs/data/documentation/corebluetoothmock/cbmcccdescriptormock.json; sourceTree = ""; }; - 44CB44C6C7E79904084980D446B3EC31 /* openl2capchannel(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "openl2capchannel(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:).json"; sourceTree = ""; }; - 44DFE5AEC16DBE071E3CF1B9D3B5D9FC /* peripheral(_:didupdatevaluefor:error:)-62302.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatevaluefor:error:)-62302.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302.json"; sourceTree = ""; }; - 450D2D3366F69EF3836838FC32A6982A /* isequal(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "isequal(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:).json"; sourceTree = ""; }; - 45F09F20056BC3FEAC13A4F813CD49C9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4/index.html"; sourceTree = ""; }; - 46B192CE6A1FDD9FF9717A322BEE9424 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:)/index.html"; sourceTree = ""; }; - 46EAF4FB812DFE00C9DD2CA2971C713A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:)/index.html"; sourceTree = ""; }; - 471B87FF44D86BE701878DEBC8A898E3 /* cbmconnectionevent.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmconnectionevent.json; path = docs/data/documentation/corebluetoothmock/cbmconnectionevent.json; sourceTree = ""; }; - 4774CE54B19C343A752ED074658588A1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0/index.html"; sourceTree = ""; }; - 4791386E460B5D7B7DCB72E6B2F455D6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmdescriptormock/index.html; sourceTree = ""; }; - 479630BD05FD59CEA53351E141A8D067 /* centralmanager(_:didupdateancsauthorizationfor:)-8t3sl.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didupdateancsauthorizationfor:)-8t3sl.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl.json"; sourceTree = ""; }; - 47C5D9A42D252AC254937F3048B3AD1B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:)/index.html"; sourceTree = ""; }; - 481CFD6B6049DCE788F6F26EDB8A6EB4 /* didupdateancsauthorization.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didupdateancsauthorization.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization.json; sourceTree = ""; }; - 48227498AA11C2C19252620F60303188 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us/index.html"; sourceTree = ""; }; - 4836A3CCFCB1D603335D5EAEB4A3257E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementconfig/delay/index.html; sourceTree = ""; }; - 48C4EBAB970CA27A4A0B82A7A974E713 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:)/index.html"; sourceTree = ""; }; - 499BAEA3892C85F53ABC6BB37CE61CA7 /* simulatepoweron().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulatepoweron().json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron().json"; sourceTree = ""; }; + 2C99E13C2E6B0E4B4E8A112D8998A43C /* CoreBluetoothMock.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.release.xcconfig; sourceTree = ""; }; + 2D135B24F42296C5FFF236829EC814A7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 302B6C1B197F88C0C758F15AC93AE02F /* CBMAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMAttributes.swift; path = CoreBluetoothMock/CBMAttributes.swift; sourceTree = ""; }; + 30FA04113853DB205F4F940DC960DF07 /* CoreBluetoothMock-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-prefix.pch"; sourceTree = ""; }; 49C5B2698EFAB36B4C94DDBD6245C469 /* Pods-nRFBlinky-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky-umbrella.h"; sourceTree = ""; }; - 49C64DCC8340A2C713E1046BB79EB316 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp/index.html"; sourceTree = ""; }; - 4AD1816167DD0803CB62C6E361D7061E /* cbmadvertisementdataservicedatakey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementdataservicedatakey.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey.json; sourceTree = ""; }; - 4AE0F903927285383FB96C922983E6AE /* init(delegate:queue:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(delegate:queue:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:).json"; sourceTree = ""; }; - 4B0FE8D2B09B1648CC4F1C8104AF0522 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:)/index.html"; sourceTree = ""; }; - 4B6E505F4907EBDC3CCECCD497489757 /* peripheral(_:didwritevaluefor:error:)-86kdv.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didwritevaluefor:error:)-86kdv.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv.json"; sourceTree = ""; }; - 4B98DBBECAC038CED4B5E82CF16A7C1E /* poweredoff.json */ = {isa = PBXFileReference; includeInIndex = 1; name = poweredoff.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredoff.json; sourceTree = ""; }; - 4BC559B74FD07B5ECFEBDAC57ACD9920 /* simulatestaterestoration.json */ = {isa = PBXFileReference; includeInIndex = 1; name = simulatestaterestoration.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration.json; sourceTree = ""; }; - 4BE0A0E3729A5DF1E22C0AB4FF74EB43 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheral/delegate/index.html; sourceTree = ""; }; - 4BFE0E16D6EC70DDF2FF24B05A8AE742 /* init(rawvalue:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(rawvalue:).json"; path = "docs/data/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:).json"; sourceTree = ""; }; - 4C39DC0191D2F275A394522DA728DA26 /* highlight-js-custom-swift.5cda5c20.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-custom-swift.5cda5c20.js"; path = "docs/js/highlight-js-custom-swift.5cda5c20.js"; sourceTree = ""; }; - 4C55FA02D658D7F6C9D54BE57166A622 /* highlight-js-swift.84f3e88c.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-swift.84f3e88c.js"; path = "docs/js/highlight-js-swift.84f3e88c.js"; sourceTree = ""; }; - 4DC919CED38EB73B5576CD94FF47BEE5 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbml2cappsm/index.html; sourceTree = ""; }; - 4DDA4120973A0DD86FB55F8C4AFF3B93 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of/index.html"; sourceTree = ""; }; - 4E067B543C632948D2AD97B9A5589149 /* peripheral(_:didupdatenotificationstatefor:error:)-nipu.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatenotificationstatefor:error:)-nipu.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu.json"; sourceTree = ""; }; - 4E149CC516DD5F7F731C9E7C632ED643 /* immediate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = immediate.json; path = docs/data/documentation/corebluetoothmock/cbmproximity/immediate.json; sourceTree = ""; }; 4E184D822F902304BAA7F65D6A90587B /* Pods-nRFBlinky-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky-dummy.m"; sourceTree = ""; }; - 4E211AC3BA059A0D3EE1FE3D6B8B352D /* equatable-implementations.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "equatable-implementations.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations.json"; sourceTree = ""; }; - 4EAE0D19F1351CFC10244FA6E33A06E1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx/index.html"; sourceTree = ""; }; - 4EC27D82B714BE35A95BC2035B936143 /* cbml2cappsm.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbml2cappsm.json; path = docs/data/documentation/corebluetoothmock/cbml2cappsm.json; sourceTree = ""; }; - 4F693E5F13636C70CF99FE522E7C1360 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralpreview/name/index.html; sourceTree = ""; }; - 4FF2808EF1AC00022368028F66BD5D92 /* services.json */ = {isa = PBXFileReference; includeInIndex = 1; name = services.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralpreview/services.json; sourceTree = ""; }; - 4FFE97683DA7BE1773F3134BF211A980 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init()/index.html"; sourceTree = ""; }; - 50101DB20724DD8BB0ED5905DDBC4B9A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect/index.html; sourceTree = ""; }; - 5085A9BB6D6A5B0E85CCB5D3EBFED391 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmconnectionevent/index.html; sourceTree = ""; }; - 50B15B23CAD23B6C16614F4F14627D73 /* didwritecharacteristicvalue.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didwritecharacteristicvalue.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue.json; sourceTree = ""; }; - 50CBDE029FE92D23DFCAAE9BF3D85AAB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval()/index.html"; sourceTree = ""; }; - 519B9E90C518D411E03143E8B37BF29F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse/index.html; sourceTree = ""; }; - 52146A994AF22348E0A08774645B5BD1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:)/index.html"; sourceTree = ""; }; - 522769035EE2ABAEC5071011035AD84E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerstate/resetting/index.html; sourceTree = ""; }; - 5228F5E2AD81CB1B6674C56EA5B21707 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:)/index.html"; sourceTree = ""; }; - 52CE9A84A349B07930F066A6C6E24148 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww/index.html"; sourceTree = ""; }; - 53282A412537332A8591BA09436A3533 /* writevalue(_:for:type:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "writevalue(_:for:type:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:).json"; sourceTree = ""; }; - 5337607B57E2338D157AC10332B64C71 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning/index.html; sourceTree = ""; }; - 533DD98ADCE50F2C9639620D8597A318 /* metadata.json */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.json; path = docs/metadata.json; sourceTree = ""; }; - 5340B074803DF0462EFD021D4974A95C /* peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5.json"; sourceTree = ""; }; - 53903E5B4B283C3160B410C2132CFE51 /* discoverservices(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverservices(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:).json"; sourceTree = ""; }; - 53E085808B9FE061B3270A00CE52CF41 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse/index.html; sourceTree = ""; }; - 54149DB0B898004B13A6480BD69D4E98 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization/index.html; sourceTree = ""; }; - 5457E83FEB5359558E7040192DAC9996 /* simulatereset().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulatereset().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatereset().json"; sourceTree = ""; }; - 54950B56796640DC7F93ED0465EAF5B2 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:)/index.html"; sourceTree = ""; }; - 54DF4119E24237300AF03D2D6D293325 /* readrssi().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readrssi().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/readrssi().json"; sourceTree = ""; }; - 55548AADD72EA4BE468E4107DAB032F4 /* chunk-2d0d3105.cd72cc8e.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "chunk-2d0d3105.cd72cc8e.js"; path = "docs/js/chunk-2d0d3105.cd72cc8e.js"; sourceTree = ""; }; - 5580C9A2062642594DE4F0FB65FF5E44 /* peripheraldidupdatename(_:)-klf8.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheraldidupdatename(_:)-klf8.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8.json"; sourceTree = ""; }; - 55991BEE557842949D848464E1A9A284 /* instance(delegate:queue:options:forcemock:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "instance(delegate:queue:options:forcemock:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:).json"; sourceTree = ""; }; - 55CCAEBD1A25D41A4986696CC852C719 /* delegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = delegate.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanager/delegate.json; sourceTree = ""; }; - 55F4424E50034FDB3FBE90A0AEEE2FB5 /* didwritedescriptorvalue.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didwritedescriptorvalue.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue.json; sourceTree = ""; }; - 5665025FA37B257A77C1A0FDDA335EAD /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q/index.html"; sourceTree = ""; }; - 5692A666746AA869422A36985D7BDAC2 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmpeer/index.html; sourceTree = ""; }; - 56A9289C43723D7B26866863A8CED7B1 /* didopenchannel.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didopenchannel.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel.json; sourceTree = ""; }; - 56CDC7D1DE2A94889E4C2416C7A5E9EE /* simulateservicechange(newname:newservices:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulateservicechange(newname:newservices:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:).json"; sourceTree = ""; }; + 542B4E8DC5D095BF492E2150101C8B3D /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; sourceTree = ""; }; 574235F7BEB93EAB469098C7D5C07A8C /* Pods-nRFBlinky_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky_Tests-acknowledgements.markdown"; sourceTree = ""; }; - 577C4032336B49726EF1F26079D3FF7D /* discoverdescriptors(for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverdescriptors(for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:).json"; sourceTree = ""; }; - 578F2A0D46D8180EA83EBC864AEF45FB /* peripheral(_:didwritevaluefor:error:)-2fdon.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didwritevaluefor:error:)-2fdon.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon.json"; sourceTree = ""; }; - 5798DADAD3103E142E30DC1A0341DEC5 /* peripheral(_:didreceivesetnotifyrequest:for:)-jbut.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivesetnotifyrequest:for:)-jbut.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut.json"; sourceTree = ""; }; - 57CC529B9232C8D00C1C2453B9AB0FA2 /* peripheral(_:didmodifyservices:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didmodifyservices:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:).json"; sourceTree = ""; }; - 57F2DDEDF3EC5E277CABD8BB6429B2CD /* CBMPeripheral.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheral.swift; path = CoreBluetoothMock/CBMPeripheral.swift; sourceTree = ""; }; - 5838A4472D98AFD92093FD98F8C910C3 /* peripheral(_:didreceiveservicediscoveryrequest:)-pq5f.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceiveservicediscoveryrequest:)-pq5f.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f.json"; sourceTree = ""; }; - 584A107CD9C04214251CCCDE7C4423D4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmproximity/!=(_:_:)/index.html"; sourceTree = ""; }; 58D566B721898E1D43CFE4A9BFB4EA88 /* Pods-nRFBlinky.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky.debug.xcconfig"; sourceTree = ""; }; - 58E433026B2CC167CCCEA394E60CBE2C /* writevalue(_:for:type:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "writevalue(_:for:type:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:).json"; sourceTree = ""; }; - 59131DF54D02BC1E693A0A739A7A1F5F /* centralmanagerdidupdatestate(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanagerdidupdatestate(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:).json"; sourceTree = ""; }; - 5AEEA577D6093D4430A103EA67455E57 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralpreview/delegate/index.html; sourceTree = ""; }; - 5B0DFE6F51C45B6D2223EED39C072B8F /* peripheral(_:didwritevaluefor:error:)-2gkk4.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didwritevaluefor:error:)-2gkk4.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4.json"; sourceTree = ""; }; - 5B214AE3245BB91C1F684AFBBE181B56 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:)/index.html"; sourceTree = ""; }; - 5B6DE252D0A4896DC99E148A67B60011 /* maximumwritevaluelength(for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "maximumwritevaluelength(for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:).json"; sourceTree = ""; }; - 5B9DA7DC7448FCE8E8B072DD3DA79C00 /* near.json */ = {isa = PBXFileReference; includeInIndex = 1; name = near.json; path = docs/data/documentation/corebluetoothmock/cbmproximity/near.json; sourceTree = ""; }; - 5BB3230F2EACCA14D5201154FB6711CE /* peripheral(_:didreceivereadrequestfor:)-9aw73.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivereadrequestfor:)-9aw73.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73.json"; sourceTree = ""; }; - 5BBCF4CCA5CA51D0C0EB9F6F49E21514 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/readrssi()/index.html"; sourceTree = ""; }; - 5C9E821E79BFA5117B1F1BC61EDC7325 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b/index.html"; sourceTree = ""; }; - 5CCDD7F9DAE3718A99BCB7992E9CC442 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/simulation/index.html; sourceTree = ""; }; - 5CE2377EAC8269DB8D92D3647AE16EC5 /* isequal(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "isequal(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmservicemock/isequal(_:).json"; sourceTree = ""; }; - 5CFC10E368B8B4C09D82E48BCF1872BF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b/index.html"; sourceTree = ""; }; - 5D458CD281398F2AE288983847FF404C /* delegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = delegate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheral/delegate.json; sourceTree = ""; }; - 5DE83B85CD54B7A29CBCD31497117DEB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralpreview/index.html; sourceTree = ""; }; - 5DEA4261311F9C25BBEC66E3452DCEE9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected/index.html; sourceTree = ""; }; - 5E04D30E25DA841AF1E2887AB2B0ADAF /* discovercharacteristics(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discovercharacteristics(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:).json"; sourceTree = ""; }; - 5E2D57BFFAE795453501BC6B514391DA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmattribute/index.html; sourceTree = ""; }; - 5E53FD0EE6C78BC8A24ACB0C763EDCF4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa/index.html"; sourceTree = ""; }; - 5E9A56B6F007473DACF8BC54B6DB4485 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:)/index.html"; sourceTree = ""; }; - 5EA8770327E28F1C756BE6A8B8B11D75 /* reset()-8n6fz.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "reset()-8n6fz.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz.json"; sourceTree = ""; }; - 5EAB4732D3349E03E73BF6988EC98195 /* diddiscovercharacteristics.json */ = {isa = PBXFileReference; includeInIndex = 1; name = diddiscovercharacteristics.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics.json; sourceTree = ""; }; - 5F77E16429A02C784D088E4C58BBE88C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:)/index.html"; sourceTree = ""; }; - 5F854D618368300FE784676EAE9064F6 /* readvalue(for:)-3xyb1.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readvalue(for:)-3xyb1.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1.json"; sourceTree = ""; }; - 5FFC74065291B64AEE57D26EEA68C038 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristicmock/index.html; sourceTree = ""; }; + 5B1F8A700480DB04E376A96A5D16E728 /* CoreBluetoothMock-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CoreBluetoothMock-dummy.m"; sourceTree = ""; }; 601EB604CAC3ECACFB55BDBEDB2B2FF8 /* Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh"; sourceTree = ""; }; - 603D04F6B85756C5393D44386F332937 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:)/index.html"; sourceTree = ""; }; - 60911F6FF92203A3B59C176C134B3975 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementconfig/index.html; sourceTree = ""; }; 60EDDADB5A72F73CE358CC9DD73E6E4D /* Pods-nRFBlinky-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-Info.plist"; sourceTree = ""; }; - 6119E29AFEE7996BDE3AE1494D5CF762 /* state.json */ = {isa = PBXFileReference; includeInIndex = 1; name = state.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanager/state.json; sourceTree = ""; }; - 612C7D0302F5AA007445BA0CB086E2D5 /* cbml2capchannel.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbml2capchannel.json; path = docs/data/documentation/corebluetoothmock/cbml2capchannel.json; sourceTree = ""; }; - 613559A30538E836220F43794E38125D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0/index.html"; sourceTree = ""; }; - 6145529826FD81256C963EA44FDDB810 /* isreadytosendwritewithoutresponse.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isreadytosendwritewithoutresponse.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse.json; sourceTree = ""; }; - 6164E9848A20B5F630DD76E7F0525429 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91/index.html"; sourceTree = ""; }; - 6173B726D2A00FA10716B6748915A946 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmservice/includedservices/index.html; sourceTree = ""; }; - 62A42C948EBA19F3B90503E7AB06BF3A /* connect(_:options:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "connect(_:options:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:).json"; sourceTree = ""; }; - 62B4BC95E3E110054F56112B6F1D6AA7 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk/index.html"; sourceTree = ""; }; - 6307ECD8841E7535477321FD57391C0A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi/index.html; sourceTree = ""; }; - 634F99F67172D793F5356FB2CF38E14C /* !=(_:_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "!=(_:_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmproximity/!=(_:_:).json"; sourceTree = ""; }; - 6381652162719EB9A2160BDD81A4D07A /* poweredon.json */ = {isa = PBXFileReference; includeInIndex = 1; name = poweredon.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredon.json; sourceTree = ""; }; - 63960B55B5FBB6CE8E9D6C2838091565 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi/index.html"; sourceTree = ""; }; - 63BD47D55299499EA8F6C44CBB6BD928 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerstate/unauthorized/index.html; sourceTree = ""; }; - 6444C8E61AC72DDF9D8C731AC3764C23 /* peripheralisready(tosendwritewithoutresponse:)-2cz0i.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheralisready(tosendwritewithoutresponse:)-2cz0i.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i.json"; sourceTree = ""; }; - 64E08615368C4D4A7B7E5EBF93D445BF /* peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr.json"; sourceTree = ""; }; - 64FA36AD8D1F2EC389810B7248EE895E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:)/index.html"; sourceTree = ""; }; - 656545B4E60E57B3BBA4CAF631FC4BAC /* documentation-topic.29351f99.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "documentation-topic.29351f99.css"; path = "docs/css/documentation-topic.29351f99.css"; sourceTree = ""; }; - 65ABF2015C71F6BFB586D64FFEA69EF5 /* instance(forcemock:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "instance(forcemock:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:).json"; sourceTree = ""; }; - 663B06ED768D5513BD439E22E1E45791 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue/index.html; sourceTree = ""; }; - 6773FE07689BB4AE9B02CE63797351BA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/isknown/index.html; sourceTree = ""; }; - 679AB217C9BDC8B66AD204D3D76A8E26 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:)/index.html"; sourceTree = ""; }; - 67BCF6180F1E6FD48C18C414047BB52C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:)/index.html"; sourceTree = ""; }; - 68AEC1DE22974207ADBD133E23B34BB8 /* discoverdescriptors(for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverdescriptors(for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:).json"; sourceTree = ""; }; - 693E1055E9BBDE11DCABD2EFE4DD5E14 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:)/index.html"; sourceTree = ""; }; - 694890523085422027DAA817CB7E0D00 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:)/index.html"; sourceTree = ""; }; - 6950EF1634C0F91EA7FCEF62C392570C /* writevalue(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "writevalue(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:).json"; sourceTree = ""; }; - 6960818DBFC627A010041700D0684DC3 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:)/index.html"; sourceTree = ""; }; - 696C13655028E87ACC578AC32A7A71F6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate/index.html; sourceTree = ""; }; 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky_Tests"; path = Pods_nRFBlinky_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BB2B965A8EFAC97B3F9DAC9ADD7AD57 /* services.json */ = {isa = PBXFileReference; includeInIndex = 1; name = services.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock/services.json; sourceTree = ""; }; - 6CAC8498ABA3BA133474A0CC33E80D90 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:)/index.html"; sourceTree = ""; }; - 6D4CE69C03CEADEDABDCBF92A99F76D3 /* discovercharacteristics(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discovercharacteristics(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:).json"; sourceTree = ""; }; - 6D5C3645F7031A72F39AF3AA0E2E324B /* readvalue(for:)-29us6.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readvalue(for:)-29us6.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6.json"; sourceTree = ""; }; - 6D6211C2DED7670A984E3782819285B5 /* readvalue(for:)-9on43.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readvalue(for:)-9on43.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43.json"; sourceTree = ""; }; - 6D94CBE854FBDC14BBFB7DAC2A6FE1A8 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:)/index.html"; sourceTree = ""; }; - 6DB5329FB72DD35C6F5924DBD6639EAF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmproximity/far/index.html; sourceTree = ""; }; - 6DEC8D07A2A2A29E88F2537CC2C66CEC /* hashvalue.json */ = {isa = PBXFileReference; includeInIndex = 1; name = hashvalue.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerstate/hashvalue.json; sourceTree = ""; }; - 6E98A4CE3C8B249C4046A2E5D2D475DD /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/index.html; sourceTree = ""; }; - 6E994FFE220195E4162A31B2B8C5BC86 /* init(delegate:queue:options:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(delegate:queue:options:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:).json"; sourceTree = ""; }; - 6EA3D7585CCCDD3CE741155BD93A5778 /* peripheral(_:didupdatenotificationstatefor:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatenotificationstatefor:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:).json"; sourceTree = ""; }; - 6F3AFA7D4C4C14496A78987C3DEE8656 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp/index.html"; sourceTree = ""; }; - 6F52E2B4FDF1334C0F944428F8FB923A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristic/service/index.html; sourceTree = ""; }; - 6FE273F01578B4692D33FF8A43984875 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations/index.html"; sourceTree = ""; }; - 70BFC2B782DC0B0DAEC02ED851E51178 /* peripheraldidreceiveconnectionrequest(_:)-2bpww.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheraldidreceiveconnectionrequest(_:)-2bpww.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww.json"; sourceTree = ""; }; - 70F1C47E98C246EED2F0668225118C7F /* diddisconnect.json */ = {isa = PBXFileReference; includeInIndex = 1; name = diddisconnect.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect.json; sourceTree = ""; }; - 713D12DADCC1016B0E07F3EEB5E0DEFA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh/index.html"; sourceTree = ""; }; - 7143152F51DE487EC679F45E1F248022 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:)/index.html"; sourceTree = ""; }; - 715AD008A907E9186F267B7E2F872033 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmdescriptor/uuid/index.html; sourceTree = ""; }; - 71C853320AB7DCE2509659C602F22652 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld/index.html"; sourceTree = ""; }; - 71CC532F951A094255C4B8C9CA5AD633 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l/index.html"; sourceTree = ""; }; - 71E39266937F08946FBFF3AB311D506F /* cbmcentralmanagerdelegateproxy.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagerdelegateproxy.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy.json; sourceTree = ""; }; - 724EE9C63928792A61E008947F13940D /* maximumwritevaluelength(for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "maximumwritevaluelength(for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:).json"; sourceTree = ""; }; - 725AC4F1E664EB9F58B4AA8A3BAE2E76 /* hash.json */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative/hash.json; sourceTree = ""; }; + 6FBDFB4478025E4B86C606AD00164AD5 /* CBMPeer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeer.swift; path = CoreBluetoothMock/CBMPeer.swift; sourceTree = ""; }; 72D8941B2D1FDDEABD4AE7C02FED240C /* Pods-nRFBlinky_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky_Tests.debug.xcconfig"; sourceTree = ""; }; 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 7308F1670B145CAA514BBF5308F4061F /* tutorials-overview.2a582c39.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "tutorials-overview.2a582c39.css"; path = "docs/css/tutorials-overview.2a582c39.css"; sourceTree = ""; }; - 731AB44F3D1C52D583676F9D4BD9203E /* isprimary.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isprimary.json; path = docs/data/documentation/corebluetoothmock/cbmservice/isprimary.json; sourceTree = ""; }; 73F49D0D11CA3BC68F1FFF1BB879E869 /* Pods-nRFBlinky_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky_Tests.release.xcconfig"; sourceTree = ""; }; - 73FDA0C4C034EBAE7434BCE4A09470D1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:)/index.html"; sourceTree = ""; }; - 7441CB6B0BEC8213F06082CFB54C82E5 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d/index.html"; sourceTree = ""; }; - 74759577484DB161757D189A126C6056 /* init(type:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(type:).json"; path = "docs/data/documentation/corebluetoothmock/cbmdescriptormock/init(type:).json"; sourceTree = ""; }; - 7489387E4F685EC90D973C1547C3EDF8 /* isadvertisingwhenconnected.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isadvertisingwhenconnected.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected.json; sourceTree = ""; }; - 749344E8F528E654815705F5AAAD3F9F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmservice/uuid/index.html; sourceTree = ""; }; - 7564164C54F31D1CCB73084CE579C983 /* readrssi().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readrssi().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/readrssi().json"; sourceTree = ""; }; 75DD36E0C1A14D8060C2AF6DFF30D574 /* Pods-nRFBlinky-nRFBlinky_UITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-nRFBlinky_UITests-Info.plist"; sourceTree = ""; }; - 75F2D5CD80BDAF914BE1DA8E4320F0CD /* name.json */ = {isa = PBXFileReference; includeInIndex = 1; name = name.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock/name.json; sourceTree = ""; }; - 760E7CCD0877B28EC2B9EB568E845204 /* diddiscoverperipheral.json */ = {isa = PBXFileReference; includeInIndex = 1; name = diddiscoverperipheral.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral.json; sourceTree = ""; }; - 7670D8C39AD427F9C1FCD72C688241BF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:)/index.html"; sourceTree = ""; }; - 7685BED3CF5AE5D14E49BA869A58072D /* documentation-topic~topic~tutorials-overview.5b27b87b.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "documentation-topic~topic~tutorials-overview.5b27b87b.js"; path = "docs/js/documentation-topic~topic~tutorials-overview.5b27b87b.js"; sourceTree = ""; }; - 76CB0FD9DE798A0C83E5F0FC37449516 /* descriptors.json */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptors.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristic/descriptors.json; sourceTree = ""; }; - 76DD388554DA68BF3EAD822BFA062B5F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:)/index.html"; sourceTree = ""; }; - 76EDA6B06DEDA6E179FAEA92CFCA70C4 /* discoverincludedservices(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverincludedservices(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:).json"; sourceTree = ""; }; - 7747224C06BCE20A19B64ED367176E31 /* peripheral(_:didopen:error:)-8ac1d.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didopen:error:)-8ac1d.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d.json"; sourceTree = ""; }; - 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CoreBluetoothMock; path = CoreBluetoothMock.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CoreBluetoothMock.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 77A61BDF33ED282A7D748B4FC5DAE523 /* Pods-nRFBlinky_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky_Tests-umbrella.h"; sourceTree = ""; }; - 78259E8DFE90D0E3781BE2ACD5A230E8 /* cbmatterror.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmatterror.json; path = docs/data/documentation/corebluetoothmock/cbmatterror.json; sourceTree = ""; }; - 7885843DE7570F9AD5722841EE703663 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral/index.html; sourceTree = ""; }; - 78A7D19C10FF56725CBCE7C59ED38738 /* peripheral(_:didmodifyservices:)-1pvuz.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didmodifyservices:)-1pvuz.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz.json"; sourceTree = ""; }; - 78D2403E5EC63AE7A34C4FF42D2128E0 /* init(_:state:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(_:state:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:).json"; sourceTree = ""; }; - 78EACB6FE26B29F704F0DFC5494A232B /* peripheral(_:didwritevaluefor:error:)-eh78.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didwritevaluefor:error:)-eh78.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78.json"; sourceTree = ""; }; - 79986E928948510DAACDE16286C9DE14 /* isequal(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "isequal(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:).json"; sourceTree = ""; }; - 79FE44E7CFCD4904AF1D3A227E01EE98 /* simulateauthorization(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulateauthorization(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:).json"; sourceTree = ""; }; - 79FE50DEEA1C40EFEDA73C0835BC5F34 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristic/isnotifying/index.html; sourceTree = ""; }; - 7A06AB6F0E8D8CD97D77A2BE58C25D4F /* peripheral(_:diddisconnect:)-37v65.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddisconnect:)-37v65.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65.json"; sourceTree = ""; }; - 7A32474934AAFFCE24D5C96D661D30B8 /* cbmservicemock.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmservicemock.json; path = docs/data/documentation/corebluetoothmock/cbmservicemock.json; sourceTree = ""; }; - 7A7EA3B119D2B1CB132D4D59EEDB9F6C /* centralmanager(_:diddisconnectperipheral:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:diddisconnectperipheral:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:).json"; sourceTree = ""; }; - 7A82DA430E0978A07A84C13085467835 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:)/index.html"; sourceTree = ""; }; - 7AB8146421AC2AE715350FEEF54E9DED /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6/index.html"; sourceTree = ""; }; - 7B2B06B25EDBDEAEF6E8971DF2832CBC /* peripheral(_:didwritevaluefor:error:)-90cp.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didwritevaluefor:error:)-90cp.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp.json"; sourceTree = ""; }; - 7B394AB992DFB4B6E74B1A800DD5C265 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan()/index.html"; sourceTree = ""; }; - 7BC2F7577FE8E951E71A56E2691E1B3D /* cbmconnectperipheraloptionnotifyonconnectionkey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmconnectperipheraloptionnotifyonconnectionkey.json; path = docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey.json; sourceTree = ""; }; - 7C2A6FFC9D0CD36A0F2077F88F9150BB /* CoreBluetoothMock-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CoreBluetoothMock-dummy.m"; sourceTree = ""; }; - 7C5FFBA5F2F77467AD72FEF18CC5A7AE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheral/identifier/index.html; sourceTree = ""; }; - 7C7D4122245628756ADC8B23CA8711BE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl/index.html"; sourceTree = ""; }; - 7C90BF560BAC1F0424258CB143181188 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/init()/index.html"; sourceTree = ""; }; - 7CEFB337781A02E18A2DEB4D9A765EFB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmservice/characteristics/index.html; sourceTree = ""; }; - 7D6E9958851EF6DA2D52DAA9D2218D24 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/index.html; sourceTree = ""; }; - 7DC0EEEEBCD334D01FA1AF2027D4C4B1 /* isnotifying.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isnotifying.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristic/isnotifying.json; sourceTree = ""; }; - 7E40BD14F87D39246CEEBEAD0EE9E18B /* authorization-swift.property.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "authorization-swift.property.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property.json"; sourceTree = ""; }; - 7EFBD515A9F4FE1AA8C6E241E0E3EE7B /* didfailtoconnect.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didfailtoconnect.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect.json; sourceTree = ""; }; - 7F469C38ABA6CF29E0975051F5170D30 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate/index.html; sourceTree = ""; }; - 7FA2A70E7361805264BDA4C767075399 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise/index.html"; sourceTree = ""; }; - 801D5518F74DAFB68C63C10F0429C145 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulatereset()/index.html"; sourceTree = ""; }; - 80F2ED1E03182B4749039D5E33A23F28 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:)/index.html"; sourceTree = ""; }; - 81352D4F44F2FD72B744A58722BF2D72 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/index.html; sourceTree = ""; }; - 816B7B4F8E92B96CCDAF202B1D4FEAB8 /* highlight-js-http.163e45b6.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-http.163e45b6.js"; path = "docs/js/highlight-js-http.163e45b6.js"; sourceTree = ""; }; - 81C5F92BD30B3AD670B5D3A3B5B56434 /* services.json */ = {isa = PBXFileReference; includeInIndex = 1; name = services.json; path = docs/data/documentation/corebluetoothmock/cbmperipheral/services.json; sourceTree = ""; }; - 82582A241EB7C5DE05590905B893746B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:)/index.html"; sourceTree = ""; }; - 828989049FC907B5E2033936141E5037 /* peripheral(_:diddiscoverservices:)-6mi4k.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverservices:)-6mi4k.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k.json"; sourceTree = ""; }; - 82D83B3EA9397FD92122F63D954C5BCE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp/index.html"; sourceTree = ""; }; - 82E8D10C48B017AA9CC0CBC3B535F902 /* peripheral(_:diddiscoverincludedservicesfor:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverincludedservicesfor:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:).json"; sourceTree = ""; }; - 83D572086ADE6D0BC958ABAD0BA096F8 /* simulateperipheral(identifier:proximity:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulateperipheral(identifier:proximity:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:).json"; sourceTree = ""; }; 841F4A2347EB60F32CD0D3903EA8A854 /* Pods-nRFBlinky-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-acknowledgements.plist"; sourceTree = ""; }; - 8469162D0C85D0B34076B0331BC3331E /* peripheral(_:didreceivereadrequestfor:)-3sqgp.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivereadrequestfor:)-3sqgp.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp.json"; sourceTree = ""; }; - 846D58054B2A69328DB1F4D59442275A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey/index.html; sourceTree = ""; }; - 84AE4F6D434EC675A912C476DD84B47A /* simulateproximitychange(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulateproximitychange(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:).json"; sourceTree = ""; }; - 84F204B6C82EFE380282836F8A7D81E1 /* cbmuuid.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmuuid.json; path = docs/data/documentation/corebluetoothmock/cbmuuid.json; sourceTree = ""; }; - 854B818693F6600E95422E7107A1A890 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp/index.html"; sourceTree = ""; }; - 855AEFB24AE4E79637821353BD12A8BF /* peripheral(_:didreadrssi:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreadrssi:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:).json"; sourceTree = ""; }; - 8588FEEF02825FE3B8878C5163EC224A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property/index.html"; sourceTree = ""; }; - 859C1D7F760953C1B0802FF04D1D1851 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristic/uuid/index.html; sourceTree = ""; }; - 85BF7F5C9DECFD8BBCD9EED13B25BFEE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerstate/poweredoff/index.html; sourceTree = ""; }; - 860770DCA3E72B8ABB8F158D6CE01A79 /* cbmcharacteristic.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcharacteristic.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristic.json; sourceTree = ""; }; - 864F123E4A531B77D6F85C21B071CC1C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:)/index.html"; sourceTree = ""; }; - 866C9B7B3D7EFF83126E1C137D1070A6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q/index.html"; sourceTree = ""; }; - 8679E65AAC939569B460F6CF404E438E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k/index.html"; sourceTree = ""; }; - 86BF6DA4D202E6B7241025CDF049EB37 /* peripheral(_:diddiscoverservices:)-7annk.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverservices:)-7annk.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk.json"; sourceTree = ""; }; - 870A21307DA8A6925BEA5F4A7FE3E469 /* authorization-swift.type.property.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "authorization-swift.type.property.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property.json"; sourceTree = ""; }; - 87A781DFA085B18A4492D3F1C72FDA77 /* documentation-topic~topic.900fc80c.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "documentation-topic~topic.900fc80c.js"; path = "docs/js/documentation-topic~topic.900fc80c.js"; sourceTree = ""; }; - 87DA794E346F40079A7F56A432939D8C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:)/index.html"; sourceTree = ""; }; - 8810232EC80F2CECDEA4F384114B960A /* CBMPeripheralSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpec.swift; path = CoreBluetoothMock/CBMPeripheralSpec.swift; sourceTree = ""; }; - 88703F2B231D3AFE7270AD6AC6E538A1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmdescriptormock/init(type:)/index.html"; sourceTree = ""; }; - 8871ADAC6C9F4F5B5E35865BCD8E8102 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey/index.html; sourceTree = ""; }; + 85B1D09A64C3FA37D5C6AC2DBC147B10 /* CoreBluetoothMock.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.debug.xcconfig; sourceTree = ""; }; + 85BF8C70A395140BDE1877927469A6D0 /* CBMCentralManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManager.swift; path = CoreBluetoothMock/CBMCentralManager.swift; sourceTree = ""; }; 88D27FB2652F32CA77F55A6A7C490761 /* Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.markdown"; sourceTree = ""; }; - 8923E90C2D9E5C85B68D36CFBCC68FDA /* value.json */ = {isa = PBXFileReference; includeInIndex = 1; name = value.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristic/value.json; sourceTree = ""; }; - 8953672DAD096275CAE7518AFB3BE4B6 /* stopscan().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "stopscan().json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan().json"; sourceTree = ""; }; - 896592EEC413CEE933BBDFA79B2B5574 /* scanforperipherals(withservices:options:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "scanforperipherals(withservices:options:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:).json"; sourceTree = ""; }; - 89A763D8E31280C3B70BA1AB5E168E48 /* cbmerror.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmerror.json; path = docs/data/documentation/corebluetoothmock/cbmerror.json; sourceTree = ""; }; - 89E47491CACB727767646FAEB0196E87 /* cbmperipheralspecdelegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheralspecdelegate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate.json; sourceTree = ""; }; - 89EFBEF7D7E46EF5F0664E60A473AFEC /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y/index.html"; sourceTree = ""; }; - 8A93C32B67C4DCD00ADE3EBD49E1981C /* peripheral(_:didopen:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didopen:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:).json"; sourceTree = ""; }; - 8AF67DFAA371C4BD06F11EDDE402AACF /* peripheralisready(tosendwritewithoutresponse:)-1nvtl.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheralisready(tosendwritewithoutresponse:)-1nvtl.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl.json"; sourceTree = ""; }; - 8B3806617EEE50C6ED31A93CB6DA347C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations/index.html"; sourceTree = ""; }; - 8B4C3F3B2E2D048972BB8255D73C76F9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n/index.html"; sourceTree = ""; }; - 8BA7B7565C232B5CAA87542E1214A34C /* simulateconnection().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulateconnection().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection().json"; sourceTree = ""; }; - 8BBE86B8189C1D420DCD9B934D9A3BA2 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo/index.html"; sourceTree = ""; }; - 8BE2F26D886263140D270B24391C03C9 /* centralmanager(_:didconnect:)-p052.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didconnect:)-p052.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052.json"; sourceTree = ""; }; - 8BE644211B0D8B61B2383FFAA8F02A1A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors/index.html; sourceTree = ""; }; - 8C1A7ED61C704BA0C3544D05D4300D97 /* no-image@2x.df2a0a50.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "no-image@2x.df2a0a50.png"; path = "docs/img/no-image@2x.df2a0a50.png"; sourceTree = ""; }; - 8C77FB5E7455CC5CF4119B9761BDD54A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/migration-guide/index.html"; sourceTree = ""; }; - 8C81D25AA01FE1F888E1FF6DDA13F88B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:)/index.html"; sourceTree = ""; }; - 8C93DD43E4E37B9CCF807E803E5F425D /* peripheral(_:didreceivewriterequestfor:data:)-23hwi.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewriterequestfor:data:)-23hwi.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi.json"; sourceTree = ""; }; - 8CA592E5C442E7258174950A95D60609 /* cbmcentralmanageroptionrestoreidentifierkey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanageroptionrestoreidentifierkey.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey.json; sourceTree = ""; }; - 8CAD2AA6F6595F1D6B7EF1E4A7868366 /* peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk.json"; sourceTree = ""; }; - 8D022D720D596233F04CA52B62531F72 /* didconnect.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didconnect.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect.json; sourceTree = ""; }; - 8D0B2E845014AC32B4502828E5D94356 /* name.json */ = {isa = PBXFileReference; includeInIndex = 1; name = name.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/name.json; sourceTree = ""; }; - 8D6C0099BB05BA09107A64E8BD6F7570 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation()/index.html"; sourceTree = ""; }; - 8DEA7476BFCCD58DF41F6CA1D10EDA8A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:)/index.html"; sourceTree = ""; }; + 8D4A29D3ACD91817A2A6F5EBE160B279 /* CBMPeripheralDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegate.swift; path = CoreBluetoothMock/CBMPeripheralDelegate.swift; sourceTree = ""; }; 8E090B58AD04F7215131769994A091A3 /* Pods-nRFBlinky-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky-acknowledgements.markdown"; sourceTree = ""; }; 8E161584725FCAD8B1A028E8DEB9486A /* Pods-nRFBlinky_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky_Tests-Info.plist"; sourceTree = ""; }; - 8E23A2ACD3474D32F359FECAF3E30ED3 /* writevalue(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "writevalue(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:).json"; sourceTree = ""; }; - 8E2AECB255AAD2AE69774A29D1074A4A /* unsupported.json */ = {isa = PBXFileReference; includeInIndex = 1; name = unsupported.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerstate/unsupported.json; sourceTree = ""; }; - 8E3CDF0DB7B62228023F6ECFFAC5BA60 /* interval.json */ = {isa = PBXFileReference; includeInIndex = 1; name = interval.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/interval.json; sourceTree = ""; }; - 8E6A01D7FA8F6CC51BEAB495A1E74385 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/state/index.html; sourceTree = ""; }; - 8E8C6897921D2376EAC6D6A8D0346B5C /* allowforretrieval().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "allowforretrieval().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval().json"; sourceTree = ""; }; - 8EA9CA5A3DE81A683212FFE1FE3A74FD /* connect(_:options:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "connect(_:options:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:).json"; sourceTree = ""; }; - 8ED157F0FFC65EC80A1F18039369D3C3 /* stopscan().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "stopscan().json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/stopscan().json"; sourceTree = ""; }; - 8F011F5CB9C751327B4FAA476B4DCF28 /* characteristic.json */ = {isa = PBXFileReference; includeInIndex = 1; name = characteristic.json; path = docs/data/documentation/corebluetoothmock/cbmdescriptor/characteristic.json; sourceTree = ""; }; - 8FACDF011FA90F12508524E40A913C12 /* delegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = delegate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralpreview/delegate.json; sourceTree = ""; }; - 8FDA1BC8FDF3BC64075F70F78FA25BA2 /* centralmanager(_:diddisconnectperipheral:error:)-1lv48.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:diddisconnectperipheral:error:)-1lv48.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48.json"; sourceTree = ""; }; - 9000EC99F76EBA6BE6F1A87FCE70013E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey/index.html; sourceTree = ""; }; - 902B13C5CBCF34D49CBA7567B99E1B04 /* descriptors.json */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptors.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors.json; sourceTree = ""; }; - 9101CABDCB4BA5D128E395686E5C9281 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/index.html; sourceTree = ""; }; - 9130CA536A2AE9974CE6B9EBBB232B9A /* documentation-topic~topic.fccbd76c.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "documentation-topic~topic.fccbd76c.css"; path = "docs/css/documentation-topic~topic.fccbd76c.css"; sourceTree = ""; }; - 9133A879A0AC2B82FB0A5901D95241FB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/delegate/index.html; sourceTree = ""; }; - 917947D9C4AE3C77CAB3B5CDB19C0971 /* retrieveconnectedperipherals(withservices:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "retrieveconnectedperipherals(withservices:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:).json"; sourceTree = ""; }; - 91AA44DC8B1540A9E7D0D6D7680BF897 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d/index.html"; sourceTree = ""; }; - 91C268C906CCF5E6BC763EFE39D356CF /* simulateperipherals(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulateperipherals(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:).json"; sourceTree = ""; }; - 91C69DAD3D142838B1BF0D55FB179752 /* centralmanager(_:didupdateancsauthorizationfor:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didupdateancsauthorizationfor:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:).json"; sourceTree = ""; }; - 91EECF1FBB7D29B30752632097DB1512 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el/index.html"; sourceTree = ""; }; - 91FF95ABD0A047F6224F920F27094366 /* highlight-js-xml.9c3688c7.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-xml.9c3688c7.js"; path = "docs/js/highlight-js-xml.9c3688c7.js"; sourceTree = ""; }; - 924CB1FC286049761CC1982BB5EBFDB6 /* centralmanager(_:connectioneventdidoccur:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:connectioneventdidoccur:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:).json"; sourceTree = ""; }; - 925A35A70EA7639D95FABC793A4EE314 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh/index.html"; sourceTree = ""; }; - 93399B29937C7348ECA47578D54642CF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/identifier/index.html; sourceTree = ""; }; - 9428BB5ED553543E723D2E54B74DB2F7 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/state/index.html; sourceTree = ""; }; - 9436A733C42F0F80F408C9AA97C0FE7F /* writevalue(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "writevalue(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:).json"; sourceTree = ""; }; - 9436C66ED23255B3893829F915E6B4F2 /* cbmperipheralspec.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheralspec.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec.json; sourceTree = ""; }; - 9471EBED103A07F219E694BC7A6B25BF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg/index.html"; sourceTree = ""; }; - 94C0F718968C3E693058D627E61541CA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse/index.html; sourceTree = ""; }; - 9502204562DFFB5C31BDF9DB47B2928D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmdescriptor/value/index.html; sourceTree = ""; }; - 95342A36C3367080FD87F17F012641B3 /* readvalue(for:)-5cb2u.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readvalue(for:)-5cb2u.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u.json"; sourceTree = ""; }; - 9543F799CB0261EA8D5F1D181848062C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk/index.html"; sourceTree = ""; }; - 95626C5815276DD70BFF82D8D5111BA6 /* cbmproximity.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmproximity.json; path = docs/data/documentation/corebluetoothmock/cbmproximity.json; sourceTree = ""; }; - 958FF745D6F07DE8B62138D238035C14 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz/index.html"; sourceTree = ""; }; - 95E1477256DA857016574B2462D81B30 /* readvalue(for:)-65lsz.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "readvalue(for:)-65lsz.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz.json"; sourceTree = ""; }; - 95EC31DC7922EBFBCDD6562439B7AC60 /* equatable-implementations.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "equatable-implementations.json"; path = "docs/data/documentation/corebluetoothmock/cbmproximity/equatable-implementations.json"; sourceTree = ""; }; - 96333EA93184F0C7F87AC062C8D7123B /* cbmcentralmanageroptionshowpoweralertkey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanageroptionshowpoweralertkey.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey.json; sourceTree = ""; }; - 965197C4EC3051471412574D11C20FB0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2/index.html"; sourceTree = ""; }; - 969AF0B8E43DF347C8AB9D4FC553F874 /* mtu.json */ = {isa = PBXFileReference; includeInIndex = 1; name = mtu.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/mtu.json; sourceTree = ""; }; - 971CEE7C355BF6987C30E78AE126FCE2 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics/index.html; sourceTree = ""; }; - 9783F25CA96CFAB0E7A740F2582D79CD /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey/index.html; sourceTree = ""; }; - 978E48ACB907AF65DDCC8D5A4B35A345 /* state.json */ = {isa = PBXFileReference; includeInIndex = 1; name = state.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock/state.json; sourceTree = ""; }; - 98197F7DF313C7AB1099E6E1F58E4373 /* highlight-js-c.d1db3f17.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-c.d1db3f17.js"; path = "docs/js/highlight-js-c.d1db3f17.js"; sourceTree = ""; }; - 986006E63AB039AFCEB80E6EBF907770 /* identifier.json */ = {isa = PBXFileReference; includeInIndex = 1; name = identifier.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock/identifier.json; sourceTree = ""; }; - 98925D3BEE2DC53FE566674B49197FAA /* identifier.json */ = {isa = PBXFileReference; includeInIndex = 1; name = identifier.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative/identifier.json; sourceTree = ""; }; - 990FC381E78E71384F5596854D848BD9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey/index.html; sourceTree = ""; }; - 99798A04B8BD7B75DAF7A1816CB3E401 /* cbmcharacteristicmock.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcharacteristicmock.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristicmock.json; sourceTree = ""; }; - 9986B5A6ECFD950BA534CC5AB6A30ECB /* peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal.json"; sourceTree = ""; }; - 9989E5C0FB7FD578A26BB10092FA2CFD /* cbmclientcharacteristicconfigurationdescriptormock.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmclientcharacteristicconfigurationdescriptormock.json; path = docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock.json; sourceTree = ""; }; - 9A53F0FC55942B469745AFDE233634C9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:)/index.html"; sourceTree = ""; }; - 9AA3F2C0DE0F80B7568B61D5415FF0A0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:)/index.html"; sourceTree = ""; }; - 9AB1AB75EBCBDF7E0B72DDD993D0AF7F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron()/index.html"; sourceTree = ""; }; - 9B6BF5954CB6A5B0E06930631643EBBA /* equatable-implementations.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "equatable-implementations.json"; path = "docs/data/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations.json"; sourceTree = ""; }; - 9BAA58C399CC1E15CC765A2323133FD9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:)/index.html"; sourceTree = ""; }; - 9BC32FCA4A512F990163AF2C4A7120F7 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:)/index.html"; sourceTree = ""; }; - 9BEC28BDAFFE0C2F60FCDCE8E83F0AA1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:)/index.html"; sourceTree = ""; }; - 9BEEBA6C8B108FBFDADE897E2BCF2B3A /* peripheral(_:didreceivewriterequestfor:data:)-3nc1b.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewriterequestfor:data:)-3nc1b.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b.json"; sourceTree = ""; }; - 9C0ECE33691024DEAA081F6CF1F069FE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/index.html; sourceTree = ""; }; - 9C4EA27C0DDACF7FA2547D1A643B441D /* identifier.json */ = {isa = PBXFileReference; includeInIndex = 1; name = identifier.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralpreview/identifier.json; sourceTree = ""; }; + 91005B1F2B37ACFFF064F0203DC59A89 /* CBMPeripheral.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheral.swift; path = CoreBluetoothMock/CBMPeripheral.swift; sourceTree = ""; }; + 930F8FC27EC2A8FA2D3BB47D2F35C39D /* CoreBluetoothMock-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-umbrella.h"; sourceTree = ""; }; + 9407630EBD5BC7FC8F1AD9092CF263F9 /* CBMCentralManagerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegateProxy.swift; path = CoreBluetoothMock/CBMCentralManagerDelegateProxy.swift; sourceTree = ""; }; + 9A9CAA178E4930BB951503A38E7048C4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 9C5103A94668BA93B8DCDBD27491209F /* Pods-nRFBlinky.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky.release.xcconfig"; sourceTree = ""; }; - 9C6B7BF6CED0B4D869A5F5B8B8FB4937 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn/index.html"; sourceTree = ""; }; - 9CB9849D3EF95A7820CA07D4F0031BDD /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/index.html; sourceTree = ""; }; - 9D6275CEB5033FD5DF17050FC3338B3C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f/index.html"; sourceTree = ""; }; - 9D89CB4E7BEA4AD7D084BFBDABD91398 /* cbmdescriptormock.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmdescriptormock.json; path = docs/data/documentation/corebluetoothmock/cbmdescriptormock.json; sourceTree = ""; }; - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DC816B8592A400A7EB4CEACB904A7FF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs/index.html"; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9E47724F38F58189A2FC36C853941E76 /* Pods-nRFBlinky_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky_Tests-acknowledgements.plist"; sourceTree = ""; }; - 9E4C084C61E67E48EFDABB1994D4F2F9 /* CBMPeripheralDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegate.swift; path = CoreBluetoothMock/CBMPeripheralDelegate.swift; sourceTree = ""; }; - 9E6DAF04881939D1086D3860B8267C14 /* setnotifyvalue(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "setnotifyvalue(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:).json"; sourceTree = ""; }; - 9E7AEAAC1F3B8A6D733BC1479A0EF5AB /* peripheral(_:didopen:error:)-tise.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didopen:error:)-tise.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise.json"; sourceTree = ""; }; - 9E7CF16B6596FBA0437724638ED2356B /* cansendwritewithoutresponse.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cansendwritewithoutresponse.json; path = docs/data/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse.json; sourceTree = ""; }; - 9E9D36A8187473EDBB17D556860EC973 /* cbmadvertisementdatamanufacturerdatakey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementdatamanufacturerdatakey.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey.json; sourceTree = ""; }; - 9FC8D482E58D41DDC5843AF2AC3B8343 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq/index.html"; sourceTree = ""; }; - A00118B92BD11E0324B1879017174BB6 /* topic.726a35dc.css */ = {isa = PBXFileReference; includeInIndex = 1; name = topic.726a35dc.css; path = docs/css/topic.726a35dc.css; sourceTree = ""; }; - A0AEB0EBF4B63E4A945F5A132CFF7778 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:)/index.html"; sourceTree = ""; }; - A0CFD60CA1DD775D3E5D328332A3E2C2 /* chunk-vendors.b24b7aaa.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "chunk-vendors.b24b7aaa.js"; path = "docs/js/chunk-vendors.b24b7aaa.js"; sourceTree = ""; }; - A0F67F6FE8D91A9DD833779AB461498A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristic/value/index.html; sourceTree = ""; }; - A10BE19BD5C56F42A76B5BD1C081868C /* didreadrssi.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didreadrssi.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi.json; sourceTree = ""; }; - A1CAD71B0749C1D4361536B9280C4007 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl/index.html"; sourceTree = ""; }; - A26C0B8A4A1964538387BF8EE66442EA /* CBMCentralManagerMock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerMock.swift; path = CoreBluetoothMock/CBMCentralManagerMock.swift; sourceTree = ""; }; - A27BD0F64D2FABC31A99A80D742843B9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:)/index.html"; sourceTree = ""; }; - A288F2A0C20B3B967497ABD1E64378A3 /* CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CoreBluetoothMock-Info.plist"; sourceTree = ""; }; - A3083B3BD1A5175EC25C22B93DDA09FF /* hash(into:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "hash(into:).json"; path = "docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:).json"; sourceTree = ""; }; - A373E8065B3CF733FDA0AAE7316CB90F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/services/index.html; sourceTree = ""; }; - A3CC0FBF1B2DEF7DC34D016E44BB98B7 /* cancelperipheralconnection(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "cancelperipheralconnection(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:).json"; sourceTree = ""; }; - A3CD5CED787BD6841D15224D34B43CB0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod/index.html"; sourceTree = ""; }; - A3EF58899864CE76F10528691C0B6D1E /* services.json */ = {isa = PBXFileReference; includeInIndex = 1; name = services.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative/services.json; sourceTree = ""; }; - A4317AF566E98C1D7A3643B4B088AEB4 /* retrieveperipherals(withidentifiers:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "retrieveperipherals(withidentifiers:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:).json"; sourceTree = ""; }; - A4597A0B3575F8777552E360E4AD1063 /* peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav.json"; sourceTree = ""; }; - A47B97E69F42D2268C0A477D87C8495B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:)/index.html"; sourceTree = ""; }; - A532A67069E0EC1E7E57C7A7D4BB0061 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristicproperties/index.html; sourceTree = ""; }; - A58ECC49490E184F868EEA0BA2C24958 /* highlight-js-css.75eab1fe.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-css.75eab1fe.js"; path = "docs/js/highlight-js-css.75eab1fe.js"; sourceTree = ""; }; - A59983F102678BB97C40F5B9785C3830 /* peripheral(_:didreceivesetnotifyrequest:for:)-9r03q.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivesetnotifyrequest:for:)-9r03q.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q.json"; sourceTree = ""; }; - A5FD2AF412B7896CFB44AC7694D2EB92 /* didupdatestate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didupdatestate.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate.json; sourceTree = ""; }; - A621BEA255C46D7C49D0BA8FE13EE990 /* peripheral(_:didwritevaluefor:error:)-9twsk.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didwritevaluefor:error:)-9twsk.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk.json"; sourceTree = ""; }; - A66117CCFA68F88DBC90ADAA5B7FF3D2 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:)/index.html"; sourceTree = ""; }; - A6C01AC486932821A7B3AFD8C826E875 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property/index.html"; sourceTree = ""; }; - A6E98D1F73D53C4AAF82554564972EC4 /* cbmadvertisementdatasolicitedserviceuuidskey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementdatasolicitedserviceuuidskey.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey.json; sourceTree = ""; }; - A7089E3FAAFFCE53AAE0552056BD4917 /* peripheraldidupdatename(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheraldidupdatename(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:).json"; sourceTree = ""; }; - A759187707B2E0CC1B99356F045D172C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:)/index.html"; sourceTree = ""; }; - A790FD9B920D7F526BBFC5968D05E24E /* highlight-js-diff.62d66733.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-diff.62d66733.js"; path = "docs/js/highlight-js-diff.62d66733.js"; sourceTree = ""; }; - A80CDE966036F34AC33CEB663A92A5BC /* CoreBluetoothMock.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CoreBluetoothMock.modulemap; sourceTree = ""; }; - A8902276BABD048BE3B8653F1AF68D29 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagermock/state/index.html; sourceTree = ""; }; - A9105993351B518F2F709C055078C07E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:)/index.html"; sourceTree = ""; }; - A951ACE5873D049B3C07399E1BF55057 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagermock/index.html; sourceTree = ""; }; - A9F41B36F39282E0D2EA37809E94E3DD /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c/index.html"; sourceTree = ""; }; - AA2CE74723BAFC4AC5E0D037CBF122D0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052/index.html"; sourceTree = ""; }; - AA873732AE8F49F86FF1A74B04D86874 /* peripheral(_:didreceivewritecommandfor:data:)-65o4m.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewritecommandfor:data:)-65o4m.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m.json"; sourceTree = ""; }; - AABF9DA88065B03F1805FD6B803BDB1B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut/index.html"; sourceTree = ""; }; - AB6C90DDFCBD716EC678A475D268E9C8 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmservicemock/index.html; sourceTree = ""; }; - AB81111973F44CA31518091D12B1F491 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue/index.html; sourceTree = ""; }; - AB8FCA73934008D8C1B71A48956CD310 /* simulateadvertisementchange(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulateadvertisementchange(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:).json"; sourceTree = ""; }; - AC0775DF44BF845BE2E04C55DA69C9AA /* peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q.json"; sourceTree = ""; }; - AC6C489D85841DFF6AB6A2A41DC3805D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmproximity/index.html; sourceTree = ""; }; - AC8D5D2CFE9BD3B8F4731CC3B25A7A8C /* cbmperipheraldelegate-implementations.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "cbmperipheraldelegate-implementations.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations.json"; sourceTree = ""; }; - ACDAB14B00636E02B0FE8C8AF92A6CFA /* name.json */ = {isa = PBXFileReference; includeInIndex = 1; name = name.json; path = docs/data/documentation/corebluetoothmock/cbmperipheral/name.json; sourceTree = ""; }; - ACF70D5D034EA3E65F1A9FB39D43F34F /* cbmcentralmanagermock.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagermock.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagermock.json; sourceTree = ""; }; - AD07AA5D6821FBCC7F1F880F193B0B93 /* uuid.json */ = {isa = PBXFileReference; includeInIndex = 1; name = uuid.json; path = docs/data/documentation/corebluetoothmock/cbmdescriptor/uuid.json; sourceTree = ""; }; - AD2D878DBF1CF40272B7FB7B65736096 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:)/index.html"; sourceTree = ""; }; - AD5694554C5A4AEB731F5872D67B94D3 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/name/index.html; sourceTree = ""; }; - ADC26F05373AFBF4F2A40C9805DDEACB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations/index.html"; sourceTree = ""; }; - ADCC10CBE67B295026BF72F21CAB6C4F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:)/index.html"; sourceTree = ""; }; - AE0E674CE5E82CC8EB5001ACFA775FD4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:)/index.html"; sourceTree = ""; }; - AE6AD1BEEC393F2C93670C1B63D810CC /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristicwritetype/index.html; sourceTree = ""; }; - AEBC90EB35565DE741A802B58C192017 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbml2capchannel/index.html; sourceTree = ""; }; - AF22DEB871FB574A6DA162A86928B3E6 /* scanforperipherals(withservices:options:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "scanforperipherals(withservices:options:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:).json"; sourceTree = ""; }; - AF599C041AF3212B60056099CBF38700 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/index.html; sourceTree = ""; }; - B08F9EA61FBD079FAD9888A36C9BA2F9 /* peripheral.json */ = {isa = PBXFileReference; includeInIndex = 1; name = peripheral.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative/peripheral.json; sourceTree = ""; }; - B0EEA107B7B96CDF1A8772E413D472F7 /* didmodifyservices.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didmodifyservices.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices.json; sourceTree = ""; }; - B0F81DF00A0618E82F9A895F486FB070 /* writevalue(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "writevalue(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:).json"; sourceTree = ""; }; - B1376C0F67DD20C757EF744CC40CCF05 /* hash.json */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock/hash.json; sourceTree = ""; }; - B2D5CA9BAD64BB87B6E272F7189FC917 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/isconnected/index.html; sourceTree = ""; }; - B33A774EDD8865F13E487E19FA0B5430 /* cbmconnectioneventmatchingoption.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmconnectioneventmatchingoption.json; path = docs/data/documentation/corebluetoothmock/cbmconnectioneventmatchingoption.json; sourceTree = ""; }; - B395D1AB9E43565D34598F3D7B269B51 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:)/index.html"; sourceTree = ""; }; - B3A06715C2CB2BFC9D4C607C99E0DCE6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey/index.html; sourceTree = ""; }; - B3A994D228E943E4B2C6C4577A83E940 /* peripheral(_:diddisconnect:)-9slvl.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddisconnect:)-9slvl.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl.json"; sourceTree = ""; }; - B4DA0FB38342BFE3B48249B189D4795C /* maximumwritevaluelength(for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "maximumwritevaluelength(for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:).json"; sourceTree = ""; }; - B4DAB815532683BD4BB53315A0A4CE60 /* equatable-implementations.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "equatable-implementations.json"; path = "docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations.json"; sourceTree = ""; }; - B53937502C1E89A5E75C096480F205C0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmproximity/near/index.html; sourceTree = ""; }; - B5E8AC6526BA98280183DF4B4B9F5429 /* cbmperipheralmock.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheralmock.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock.json; sourceTree = ""; }; - B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky"; path = Pods_nRFBlinky.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B65073C4345C5E9E0B1E3777F173631F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/peripheral/index.html; sourceTree = ""; }; - B70F29376E147600449B1B9BC9FBAABB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmservice/isprimary/index.html; sourceTree = ""; }; - B72512A5E34329C430DB2A7A31340F17 /* hashable-implementations.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "hashable-implementations.json"; path = "docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations.json"; sourceTree = ""; }; - B7643E0ED1BAC794CAD058BC81DFAFCB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5/index.html"; sourceTree = ""; }; - B7B1BD2A6E5481E0C2A29C85D7AF2740 /* peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of.json"; sourceTree = ""; }; - B7D73D412E0B7E8DDD0B34D45E8F42F6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate/index.html; sourceTree = ""; }; - B7DFCCBFAE3223097484270FB83FAD8C /* cbmperipheralnative.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheralnative.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative.json; sourceTree = ""; }; - B81677FC31B42A0A9F84AE0D3DE21D60 /* highlight-js-javascript.acb8a8eb.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-javascript.acb8a8eb.js"; path = "docs/js/highlight-js-javascript.acb8a8eb.js"; sourceTree = ""; }; - B839746842E823D2048AFA14708C8592 /* CBMCentralManagerFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerFactory.swift; path = CoreBluetoothMock/CBMCentralManagerFactory.swift; sourceTree = ""; }; - B879DB6158A8CAD730C6077B02600D0D /* index.d5b499b0.css */ = {isa = PBXFileReference; includeInIndex = 1; name = index.d5b499b0.css; path = docs/css/index.d5b499b0.css; sourceTree = ""; }; - B95B9A32D8E99B70378914CCB87D3D6F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristic/properties/index.html; sourceTree = ""; }; - B97CC0EF613383F0547E116AB2BDAD97 /* peripheral(_:diddiscovercharacteristicsfor:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscovercharacteristicsfor:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:).json"; sourceTree = ""; }; - B98A10B19216831A2C1110FBBD97DBB0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/identifier/index.html; sourceTree = ""; }; - B9E294517FBE01AF0B8FEB8480CCA80E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices/index.html; sourceTree = ""; }; - B9E64E45C117890C2483B6CA04DEBD94 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:)/index.html"; sourceTree = ""; }; - BA0D20593A7CB598B5F1E597C3ABE6B8 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:)/index.html"; sourceTree = ""; }; - BA2AFB34B821A8C96739BA90F029D2FA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur/index.html; sourceTree = ""; }; - BA7E000A87B98B362DB1C90D3CF8CB35 /* peripheral(_:didupdatevaluefor:error:)-6bw1b.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatevaluefor:error:)-6bw1b.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b.json"; sourceTree = ""; }; - BA8A39A2111DE6DDD616D0A0192059B3 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:)/index.html"; sourceTree = ""; }; - BA9F6292FE83EE1AD72942013451E3F6 /* highlight-js-php.cc8d6c27.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-php.cc8d6c27.js"; path = "docs/js/highlight-js-php.cc8d6c27.js"; sourceTree = ""; }; - BB4A4BCC9FFAB1725AF152EB57E9879E /* peripheralisready(tosendwritewithoutresponse:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheralisready(tosendwritewithoutresponse:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:).json"; sourceTree = ""; }; - BB5299E5B7326DCB497FB73EFB9A5EAA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanager/delegate/index.html; sourceTree = ""; }; - BB69112B39306C41316BD24687D42516 /* rawrepresentable-implementations.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "rawrepresentable-implementations.json"; path = "docs/data/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations.json"; sourceTree = ""; }; - BBEBAB43C2551DB65169927E80588F54 /* state.json */ = {isa = PBXFileReference; includeInIndex = 1; name = state.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/state.json; sourceTree = ""; }; - BC8864B1E9F1D6FA4EC4C295E508CE11 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmproximity/outofrange/index.html; sourceTree = ""; }; - BCEF67AA094C8646605215C0B43E3BE4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagernative/index.html; sourceTree = ""; }; - BD13BAF4A1D0ED1552065238DF53A56F /* connectioninterval.json */ = {isa = PBXFileReference; includeInIndex = 1; name = connectioninterval.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval.json; sourceTree = ""; }; - BD1836D1AE65E0F25BD9804E99165159 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations/index.html"; sourceTree = ""; }; - BD3648C41A56E5780388964C63A73FCA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheral/index.html; sourceTree = ""; }; - BDD47CE37BF3A12DF1DE0D109C99FAF0 /* highlight-js-markdown.90077643.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-markdown.90077643.js"; path = "docs/js/highlight-js-markdown.90077643.js"; sourceTree = ""; }; - BE55A9A060C56305D204B13563101E70 /* peripheral(_:didreceivewriterequestfor:data:)-81sdk.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewriterequestfor:data:)-81sdk.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk.json"; sourceTree = ""; }; - BE6E27B44A125457E97151F227FAC554 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/services/index.html; sourceTree = ""; }; - BEB8D65A263ACCFDA1702DFD756DE644 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu/index.html"; sourceTree = ""; }; - BEC2EFA65C08470A965C043FC0625E2C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmconnectioneventmatchingoption/index.html; sourceTree = ""; }; - BEDEF3DB74EBAF1C81FF6E988167273F /* peripheral(_:didmodifyservices:)-9i6xy.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didmodifyservices:)-9i6xy.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy.json"; sourceTree = ""; }; - BEF54F5D0C7A1CE869180393A13141D4 /* simulatevalueupdate(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulatevalueupdate(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:).json"; sourceTree = ""; }; - BF1815DE78C8DE272BBE55545D72899E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:)/index.html"; sourceTree = ""; }; - BF2876A851B14E79BB6F915AB7B450CA /* peripheral(_:didupdatenotificationstatefor:error:)-4aash.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatenotificationstatefor:error:)-4aash.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash.json"; sourceTree = ""; }; - BF4543362822656B6CD682CB23A93A53 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2/index.html"; sourceTree = ""; }; - BF493603B36CEE738A93A1235892AD35 /* reset()-7utrg.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "reset()-7utrg.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg.json"; sourceTree = ""; }; - BF567803B6B4677CB9C8C7EFA136B186 /* outofrange.json */ = {isa = PBXFileReference; includeInIndex = 1; name = outofrange.json; path = docs/data/documentation/corebluetoothmock/cbmproximity/outofrange.json; sourceTree = ""; }; - BF5D565D58B343904D59ED87C406D04E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i/index.html"; sourceTree = ""; }; - BF86F9927BF1569AC0977051B800CD6C /* CBMCentralManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManager.swift; path = CoreBluetoothMock/CBMCentralManager.swift; sourceTree = ""; }; - C041892D6D04EEE30F04F1FA8B25DBED /* highlight-js-json.471128d2.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-json.471128d2.js"; path = "docs/js/highlight-js-json.471128d2.js"; sourceTree = ""; }; - C05E141629563B9B649F165B1E1548CB /* authorization-swift.type.property.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "authorization-swift.type.property.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property.json"; sourceTree = ""; }; - C067AB69A308486B3A2270F6542F9E3E /* cbmmanagerstate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmmanagerstate.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerstate.json; sourceTree = ""; }; - C068777ADDD82838D1AC7ACD2EB66BB9 /* index.aa320932.js */ = {isa = PBXFileReference; includeInIndex = 1; name = index.aa320932.js; path = docs/js/index.aa320932.js; sourceTree = ""; }; - C09609BE80BCC9F5A8E7C162F3F85205 /* CoreBluetoothMock.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.release.xcconfig; sourceTree = ""; }; - C117977F111DF9AED2419DAFBF53EF22 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmdescriptor/index.html; sourceTree = ""; }; - C192CBEAB28EC49B39C3F4E8B6453DD3 /* cbmservice.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmservice.json; path = docs/data/documentation/corebluetoothmock/cbmservice.json; sourceTree = ""; }; - C1D47B373A82AF70E1690BCA284891BC /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property/index.html"; sourceTree = ""; }; - C26913D21FF290F2526B7542B8ACD3F7 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection()/index.html"; sourceTree = ""; }; - C307FB335C3961142E2C8DECC2456939 /* centralmanager(_:connectioneventdidoccur:for:)-3pqer.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:connectioneventdidoccur:for:)-3pqer.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer.json"; sourceTree = ""; }; - C31570F817113472CD0E86B4685E941F /* init(delegate:queue:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(delegate:queue:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:).json"; sourceTree = ""; }; + A14B4B0603B0B55E2BBC5C972A20DB72 /* CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CoreBluetoothMock-Info.plist"; sourceTree = ""; }; + A96A3F401E65A42A36904EBD5252985C /* CBMCentralManagerNative.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerNative.swift; path = CoreBluetoothMock/CBMCentralManagerNative.swift; sourceTree = ""; }; + B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_nRFBlinky.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C21D8CAF91CB43D0BE216F9EEA09CDEA /* CBMCentralManagerFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerFactory.swift; path = CoreBluetoothMock/CBMCentralManagerFactory.swift; sourceTree = ""; }; C348C9192BF2799624BD1BAAF5DFED0C /* Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig"; sourceTree = ""; }; - C348DB924D5E5A96F7CA8C4DBEB19049 /* centralmanager(_:didfailtoconnect:error:)-2h1bb.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didfailtoconnect:error:)-2h1bb.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb.json"; sourceTree = ""; }; - C3654BD60DC8522620763229C4249E6B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property/index.html"; sourceTree = ""; }; C366D985CC68EF9A7B5BBB3186F44D2D /* Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig"; sourceTree = ""; }; - C379E672D84DC11D208B2E96420C4B94 /* peripheral(_:didupdatenotificationstatefor:error:)-5tl1y.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatenotificationstatefor:error:)-5tl1y.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y.json"; sourceTree = ""; }; - C3C0266789A6A5D9FB6A10511FC0DF35 /* didupdatedescriptorvalue.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didupdatedescriptorvalue.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue.json; sourceTree = ""; }; - C3DA9488D906BFDB3298E818225308C6 /* setnotifyvalue(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "setnotifyvalue(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:).json"; sourceTree = ""; }; - C40A22C79A95C71D178C849A8FD3ED13 /* peripheral(_:didreceivewriterequestfor:data:)-753gh.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewriterequestfor:data:)-753gh.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh.json"; sourceTree = ""; }; - C4434599730EEE7526E20BC23C7A7290 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/readrssi()/index.html"; sourceTree = ""; }; - C467A05E0A488D5DCB470FDE013E03CC /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/mocking-peripherals/index.html"; sourceTree = ""; }; - C4709EE3779EA96265559627B2D21372 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/services/index.html; sourceTree = ""; }; - C50A08FD2D3571462395434E7FA5D870 /* authorization-swift.type.property.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "authorization-swift.type.property.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property.json"; sourceTree = ""; }; - C5276B11CC04FF3BE7A085D82BADD429 /* deprecated-icon.015b4f17.svg */ = {isa = PBXFileReference; includeInIndex = 1; name = "deprecated-icon.015b4f17.svg"; path = "docs/img/deprecated-icon.015b4f17.svg"; sourceTree = ""; }; - C542C78FFF2E59546D7A27E265645F49 /* willrestorestate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = willrestorestate.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate.json; sourceTree = ""; }; - C546679401B87ED3B4E89865BE86475F /* cbmadvertisementdataoverflowserviceuuidskey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementdataoverflowserviceuuidskey.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey.json; sourceTree = ""; }; - C5497D9858E71DBDA7D6FD46719E5DB0 /* init().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init().json"; path = "docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init().json"; sourceTree = ""; }; - C5794F4F6E5DC6FDD8A77369C2C45A0B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:)/index.html"; sourceTree = ""; }; - C5CD129A3295921E07FD8C35DDE58D76 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw/index.html"; sourceTree = ""; }; - C5FAEE9A29E3805C9A05C37CE98A9CAE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey/index.html; sourceTree = ""; }; - C64CC8A1A36B3782CB2800CC61D15B34 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff()/index.html"; sourceTree = ""; }; C6B191FE01870F950E66F66A65810125 /* Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.plist"; sourceTree = ""; }; - C6BC272175EEAB868B3C836FE1E464A8 /* CBMCentralManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegate.swift; path = CoreBluetoothMock/CBMCentralManagerDelegate.swift; sourceTree = ""; }; - C7919AA8EE524FA6921E98B9327FF9B4 /* delegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = delegate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative/delegate.json; sourceTree = ""; }; - C84A7EADD727F0451F1F9A15131B3EA3 /* cbmcentralmanagerrestoredstatescanserviceskey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagerrestoredstatescanserviceskey.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey.json; sourceTree = ""; }; - C87BC24A20D801A9E77ADE56EFD6E6CA /* advertisement.json */ = {isa = PBXFileReference; includeInIndex = 1; name = advertisement.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisement.json; sourceTree = ""; }; - C888B8AF7DAFC96B2219B2AD37681D69 /* peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs.json"; sourceTree = ""; }; - C94B62F9283AF26641C6E8D7FC2941CE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9/index.html"; sourceTree = ""; }; - C94DC51AE1F5A996D935D9E05CD1156C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8/index.html"; sourceTree = ""; }; - C9CB166F6C95B9F2AA652B287CB30083 /* peripheral(_:didupdatevaluefor:error:)-88um0.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatevaluefor:error:)-88um0.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0.json"; sourceTree = ""; }; - C9D3DC4A0C45891616A336465814021F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerstate/poweredon/index.html; sourceTree = ""; }; - C9D61654336965D07D9FEE75A42A14B6 /* isadvertisingwhenconnected.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isadvertisingwhenconnected.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected.json; sourceTree = ""; }; - CA491DE5D27ACF5AA0C6F94E1F50E1FA /* uuid.json */ = {isa = PBXFileReference; includeInIndex = 1; name = uuid.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristic/uuid.json; sourceTree = ""; }; - CA8FF9B5F0BA464571AB4040FBB2297C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors/index.html; sourceTree = ""; }; - CAA435383530D6A381AB410CFCEDB1EC /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:)/index.html"; sourceTree = ""; }; - CB61323A0BFF12862ABEE501DA96FD0F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerauthorization/index.html; sourceTree = ""; }; - CBCEA8C1E12AFA94FE0B563784805C5D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmdescriptor/characteristic/index.html; sourceTree = ""; }; - CBF98FDF1684D03357CE90D4D98A487C /* !=(_:_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "!=(_:_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:).json"; sourceTree = ""; }; - CC5BD90B0BBFDADF9EF1CB199DC9DD71 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j/index.html"; sourceTree = ""; }; - CCA7EBE4B3DA9FB0EF1D3E421C56E0C9 /* init(type:primary:includedservice:characteristics:)-2pj4o.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init(type:primary:includedservice:characteristics:)-2pj4o.json"; path = "docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o.json"; sourceTree = ""; }; - CCBADDA4BCE424202C83AD434068E111 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/init()/index.html"; sourceTree = ""; }; - CD1C2936BD8D59149DC35D14F4947F2B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:)/index.html"; sourceTree = ""; }; - CDCA5DF8CFBD472BE823B3D3189147E0 /* isknown.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isknown.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/isknown.json; sourceTree = ""; }; - CDD4A9718266DFFE6FE0B6959268597C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcccdescriptormock/index.html; sourceTree = ""; }; - CE301C725F1DF1ABA99DFECC14B33A57 /* name.json */ = {isa = PBXFileReference; includeInIndex = 1; name = name.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralpreview/name.json; sourceTree = ""; }; - CE81766E4356F6DE8D4A91AD466EDC43 /* highlight-js-llvm.6100b125.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-llvm.6100b125.js"; path = "docs/js/highlight-js-llvm.6100b125.js"; sourceTree = ""; }; - CEB55ED28EE8746F73A324C0873B4E24 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:)/index.html"; sourceTree = ""; }; - CEC1F54257A8DF3BC8489BC73A18AA24 /* highlight-js-bash.1b52852f.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-bash.1b52852f.js"; path = "docs/js/highlight-js-bash.1b52852f.js"; sourceTree = ""; }; - D03004919FE26C9E7AFE94BDB0F3AD6A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:)/index.html"; sourceTree = ""; }; - D05358513392A9D17F9EBF80865AF687 /* ancsauthorized.json */ = {isa = PBXFileReference; includeInIndex = 1; name = ancsauthorized.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized.json; sourceTree = ""; }; - D15317158F287B36152BD272A9DF6D20 /* centralmanagerdidupdatestate(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanagerdidupdatestate(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:).json"; sourceTree = ""; }; - D15EAB7616D2507FEC2AA3E98C9EA24F /* known-issues.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "known-issues.json"; path = "docs/data/documentation/corebluetoothmock/known-issues.json"; sourceTree = ""; }; - D187C143C060FA46463A205EDA86F0E2 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy/index.html"; sourceTree = ""; }; - D1918A2D5E1F6A8FA5102CA9C544F773 /* peripheral(_:didreadrssi:error:)-7xmo2.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreadrssi:error:)-7xmo2.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2.json"; sourceTree = ""; }; - D19370EDA1C3DD079C541FB35DFDF295 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:)/index.html"; sourceTree = ""; }; - D1A60E32E1C9612A4528D6376804CEF4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmproximity/immediate/index.html; sourceTree = ""; }; - D1F21B17B909A73A008D97C148C2AB50 /* cbmcentralmanagerrestoredstateperipheralskey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagerrestoredstateperipheralskey.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey.json; sourceTree = ""; }; - D2327ACEF36C78A240020D6C82AE31D9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect/index.html; sourceTree = ""; }; - D2A4D733D662DC2F376396D35BD3C20D /* retrieveperipherals(withidentifiers:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "retrieveperipherals(withidentifiers:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:).json"; sourceTree = ""; }; - D2E68CEE9EF4939784845BC767CC847F /* peripheral(_:didreceivewriterequestfor:data:)-6plt7.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewriterequestfor:data:)-6plt7.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7.json"; sourceTree = ""; }; - D3375BF589F3DA63DE57DD0F5E6E3A01 /* CBMPeripheralSpecDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpecDelegate.swift; path = CoreBluetoothMock/CBMPeripheralSpecDelegate.swift; sourceTree = ""; }; - D35A5C54EAC16BF0EA0E10CC8C454C4B /* includedservices.json */ = {isa = PBXFileReference; includeInIndex = 1; name = includedservices.json; path = docs/data/documentation/corebluetoothmock/cbmservice/includedservices.json; sourceTree = ""; }; - D3A6F8747F9A3B5AD251C9B177CB2F62 /* centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp.json"; sourceTree = ""; }; - D3B6AB01B8D404EB6DE83DE4D270BDAE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)/index.html"; sourceTree = ""; }; - D3BBC4646B923DEBAEBCC4E999226D5C /* discoverservices(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverservices(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:).json"; sourceTree = ""; }; - D3E4CD6344EB372231500618C09001B3 /* added-icon.d6f7e47d.svg */ = {isa = PBXFileReference; includeInIndex = 1; name = "added-icon.d6f7e47d.svg"; path = "docs/img/added-icon.d6f7e47d.svg"; sourceTree = ""; }; - D3FAB833162D59A7BF529651C7AE864D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval/index.html; sourceTree = ""; }; - D4277F255CC7941104B2C336E1D87B5A /* discoverincludedservices(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverincludedservices(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:).json"; sourceTree = ""; }; - D4504927E6FF502D252E08C1AE96C6B5 /* centralmanager(_:willrestorestate:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:willrestorestate:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:).json"; sourceTree = ""; }; - D4A8043F489505468C653CB2504C5BB8 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheral/services/index.html; sourceTree = ""; }; - D4D8FFA43EBA530CDC3A116D4EC74B2E /* cbmmanagerauthorization.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmmanagerauthorization.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerauthorization.json; sourceTree = ""; }; - D5B30D3D24D79116A57BB3E3BC051CD3 /* discoverservices(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverservices(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:).json"; sourceTree = ""; }; - D5D0CB50AB7CAE10CD42A6ED3D988B62 /* resetting.json */ = {isa = PBXFileReference; includeInIndex = 1; name = resetting.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerstate/resetting.json; sourceTree = ""; }; - D5E9B2BCB2C7F5E3A175BEFFD08A27DA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices/index.html; sourceTree = ""; }; - D66EEADBF7D2967A6B39183BB7A0DAE9 /* discoverdescriptors(for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverdescriptors(for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:).json"; sourceTree = ""; }; - D6DA9AC79E07892AABF51574AB9D7779 /* highlight-js-scss.62ee18da.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-scss.62ee18da.js"; path = "docs/js/highlight-js-scss.62ee18da.js"; sourceTree = ""; }; - D6E37A0E711074FAC00D9C823A0DA19B /* didupdatenotificationstate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didupdatenotificationstate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate.json; sourceTree = ""; }; - D7302C48A415BF2447F4EE8FB8F2069D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue/index.html; sourceTree = ""; }; - D7856F403D4004960F5F6E70559B3294 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:)/index.html"; sourceTree = ""; }; - D7C70EB8EFD62EB4336C0DF66987AAAF /* init().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "init().json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init().json"; sourceTree = ""; }; - D804E4A1A93DB84D38632DA8EECA9AB1 /* services.json */ = {isa = PBXFileReference; includeInIndex = 1; name = services.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/services.json; sourceTree = ""; }; - D8589784F45014AFE403380EC6700C80 /* name.json */ = {isa = PBXFileReference; includeInIndex = 1; name = name.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative/name.json; sourceTree = ""; }; - D878B35FB28627E5348BA1023B9FC968 /* peripheral(_:didreceivewriterequestfor:data:)-yspa.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewriterequestfor:data:)-yspa.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa.json"; sourceTree = ""; }; - D8A9010FF8D44ACBAB03305712138ED7 /* CBMPeripheralDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegateProxy.swift; path = CoreBluetoothMock/CBMPeripheralDelegateProxy.swift; sourceTree = ""; }; - D8B9CD350A288C5C6010CFB3B05EDFF5 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:)/index.html"; sourceTree = ""; }; - D91FD515647F93FC31CBA0A1AE62BDBA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o/index.html"; sourceTree = ""; }; - D95DF815BF4CBF677AD247291EEF8DCA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanager/state/index.html; sourceTree = ""; }; - D9986B3DB9F0399BB59603A12961B40F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:)/index.html"; sourceTree = ""; }; - D99B485617E1DB336B9651629297BA52 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk/index.html"; sourceTree = ""; }; - D99BA0FCB55FA8B20349950F57138A61 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey/index.html; sourceTree = ""; }; - D9B537A9C8B7A966031E6688585716D4 /* CoreBluetoothMock-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-umbrella.h"; sourceTree = ""; }; - D9F6F159E7027579CA5E729BD1BBD3B6 /* didupdatecharacteristicvalue.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didupdatecharacteristicvalue.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue.json; sourceTree = ""; }; - DA75FC1D03B0B60B84010078BDB7792D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralmock/hash/index.html; sourceTree = ""; }; - DA955F1ECB6429638A8282E011C3089C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmmanagerstate/index.html; sourceTree = ""; }; - DB4C5F45719767DACF5F503002BE8668 /* peripheral(_:didupdatevaluefor:error:)-nw91.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatevaluefor:error:)-nw91.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91.json"; sourceTree = ""; }; - DB4F706DD16752A07369E178C893C3E0 /* peripheral(_:didreceivewritecommandfor:data:)-58pcn.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewritecommandfor:data:)-58pcn.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn.json"; sourceTree = ""; }; - DB884A059D42BC8E0C1B56A34528D911 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate/index.html; sourceTree = ""; }; - DC16EB4BEB42849F3CA78EF75FB030AA /* ==(_:_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "==(_:_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:).json"; sourceTree = ""; }; - DC6F29890956067CEE16E484785969D8 /* unauthorized.json */ = {isa = PBXFileReference; includeInIndex = 1; name = unauthorized.json; path = docs/data/documentation/corebluetoothmock/cbmmanagerstate/unauthorized.json; sourceTree = ""; }; - DC81CC75ECEDDE66BBC8FD1EC45E0D75 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralnative/name/index.html; sourceTree = ""; }; - DC9A5DB7C2B3CDAEAF3E4E659C96BAF9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmservice/peripheral/index.html; sourceTree = ""; }; - DD23DCF6E647DF935C19A8C6DC23EAD8 /* centralmanager(_:diddisconnectperipheral:error:)-1j8c2.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:diddisconnectperipheral:error:)-1j8c2.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2.json"; sourceTree = ""; }; - DD6E8F10A116B28F533D8BBE1F136E94 /* centralmanager(_:didupdateancsauthorizationfor:)-6msdh.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didupdateancsauthorizationfor:)-6msdh.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh.json"; sourceTree = ""; }; - DDBA7DD94850C4D1F16C9B82A8F157CD /* didupdatename.json */ = {isa = PBXFileReference; includeInIndex = 1; name = didupdatename.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename.json; sourceTree = ""; }; - DE2881FD0116709B1A2C0EC38E804EAE /* cbmadvertisementconfig.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementconfig.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementconfig.json; sourceTree = ""; }; - DE369E1C4071F14C2C9F3922AFF0793E /* discovercharacteristics(_:for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discovercharacteristics(_:for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:).json"; sourceTree = ""; }; - DE3A4979CAEDF7A3EB9C4F48186A373A /* favicon.svg */ = {isa = PBXFileReference; includeInIndex = 1; name = favicon.svg; path = docs/favicon.svg; sourceTree = ""; }; - DEDAE0B70E860908651273B892553588 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u/index.html"; sourceTree = ""; }; - DEDF8FA3AA39FB643B7FCB725451FD1B /* writevalue(_:for:type:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "writevalue(_:for:type:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:).json"; sourceTree = ""; }; - DF44F2A79928272207C49C8947344C14 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k/index.html"; sourceTree = ""; }; - DF5203A1D62E571C4FBC7E31E118B70A /* highlight-js-java.8326d9d8.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-java.8326d9d8.js"; path = "docs/js/highlight-js-java.8326d9d8.js"; sourceTree = ""; }; - DF5BFD982C750FCEC28A1E11A8F87CBD /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/builder/index.html; sourceTree = ""; }; - DF9E1F8E2BF92E9CDA2B9A00C4542BA6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/readrssi()/index.html"; sourceTree = ""; }; - DFC4A40ECE8C147A45B982E2FE8774A2 /* connected(name:services:delegate:connectioninterval:mtu:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "connected(name:services:delegate:connectioninterval:mtu:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:).json"; sourceTree = ""; }; - DFC74125D5DB43B298583C3C7A5776B8 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw/index.html"; sourceTree = ""; }; - E1AEDBC1D476EB90D8D0743DDBC7E9D3 /* instance(delegate:queue:forcemock:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "instance(delegate:queue:forcemock:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:).json"; sourceTree = ""; }; - E1B178083C700CB8E01426834866E52A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:)/index.html"; sourceTree = ""; }; - E2240A288A02255483E0AA79283A3DF7 /* centralmanager(_:didfailtoconnect:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:didfailtoconnect:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:).json"; sourceTree = ""; }; - E230AE7F2DCF28BB747C95FABD8A22F9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:)/index.html"; sourceTree = ""; }; - E233B9C480E5423B46EA375CC77D7E8F /* peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us.json"; sourceTree = ""; }; - E28F239C797CDF8F9E75BCFD645F7A9D /* cbmpeer.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmpeer.json; path = docs/data/documentation/corebluetoothmock/cbmpeer.json; sourceTree = ""; }; - E2DD01E578A2F90D7DC19D4461276C55 /* !=(_:_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "!=(_:_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:).json"; sourceTree = ""; }; - E2DE4C773B626D2594E810517A455DDC /* proximity.json */ = {isa = PBXFileReference; includeInIndex = 1; name = proximity.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralspec/proximity.json; sourceTree = ""; }; - E3091BA86D758E9E73875B8276F45693 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey/index.html; sourceTree = ""; }; - E346D31696F14D2E0F46ADB2E26E2640 /* modified-icon.f496e73d.svg */ = {isa = PBXFileReference; includeInIndex = 1; name = "modified-icon.f496e73d.svg"; path = "docs/img/modified-icon.f496e73d.svg"; sourceTree = ""; }; - E37EE85420F71EB9A60209DEA094FB95 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagernative/state/index.html; sourceTree = ""; }; - E3C8F15B491779636B54F908F1BC70C8 /* delegate.json */ = {isa = PBXFileReference; includeInIndex = 1; name = delegate.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock/delegate.json; sourceTree = ""; }; - E3E6FE6A7699F1679747DED29F1D3FC5 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata/index.html; sourceTree = ""; }; - E411E47CBB24A7E3F8901B664B18B73B /* peripheraldidupdatename(_:)-4r9dx.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheraldidupdatename(_:)-4r9dx.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx.json"; sourceTree = ""; }; - E4C7E2AAE38B57606A60608705BD497D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:)/index.html"; sourceTree = ""; }; - E4DAB022CB3557EB29258DF2A21CF637 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:)/index.html"; sourceTree = ""; }; - E5055A496338FAE3DC373052FF55019F /* CoreBluetoothMock.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CoreBluetoothMock.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C857B915479E7FFBCF4BCFF83B8CFE84 /* CBMPeripheralSpecDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpecDelegate.swift; path = CoreBluetoothMock/CBMPeripheralSpecDelegate.swift; sourceTree = ""; }; + CB408E8AFF1F660E3B5C87186C06C67F /* CBMPeripheralPreview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralPreview.swift; path = CoreBluetoothMock/CBMPeripheralPreview.swift; sourceTree = ""; }; + CCE197D9FB847BA7E58D8975A38AD969 /* CBMManagerTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMManagerTypes.swift; path = CoreBluetoothMock/CBMManagerTypes.swift; sourceTree = ""; }; + CFC94BDBE2EC82D5D122A0729CF74BC4 /* CBMCentralManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegate.swift; path = CoreBluetoothMock/CBMCentralManagerDelegate.swift; sourceTree = ""; }; + D1C55A5F5FDBA7352275FD9F3273D43F /* CBMPeripheralDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegateProxy.swift; path = CoreBluetoothMock/CBMPeripheralDelegateProxy.swift; sourceTree = ""; }; + E0730100E45F2B5903D4110E9E6F85B0 /* CBMCentralManagerMock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerMock.swift; path = CoreBluetoothMock/CBMCentralManagerMock.swift; sourceTree = ""; }; E51C3B2EBE3D334E3BD361653A43734F /* Pods-nRFBlinky_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky_Tests.modulemap"; sourceTree = ""; }; - E5538270C9C82CC2BACBCF1A07B546E9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristic/index.html; sourceTree = ""; }; - E5B2FE5425730916D65AFC416D3F2568 /* peripheral(_:didreceivereadrequestfor:)-6p4xw.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivereadrequestfor:)-6p4xw.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw.json"; sourceTree = ""; }; - E5B9756450EF45FBC8643C5C0A6DAAA7 /* cbmconnectperipheraloptionstartdelaykey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmconnectperipheraloptionstartdelaykey.json; path = docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey.json; sourceTree = ""; }; - E5DBFDF2FDD818F544BF64141EE38CBC /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz/index.html"; sourceTree = ""; }; - E6A8B0C242416F50FD74519A68524E52 /* authorization-swift.property.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "authorization-swift.property.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property.json"; sourceTree = ""; }; - E6C02ADBCE2BEF0D1FBC28B419E3E303 /* CoreBluetoothMock.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.debug.xcconfig; sourceTree = ""; }; - E79DEBD3098622DB97A4D735050B420F /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh/index.html"; sourceTree = ""; }; - E8012C4F536800822A67473364C0E8EF /* peripheral(_:didreceivewriterequestfor:data:)-2hi9u.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewriterequestfor:data:)-2hi9u.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u.json"; sourceTree = ""; }; - E92ECEC524B9308785E9F0B76FC6C1F9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey/index.html; sourceTree = ""; }; - E92F962131F6424D2B44F76A0D131AEC /* cbmcentralmanagerscanoptionallowduplicateskey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagerscanoptionallowduplicateskey.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey.json; sourceTree = ""; }; - E94191D05800344DF0C60AD5CF78FED6 /* peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr.json"; sourceTree = ""; }; - E9B6D16C6380348107EB722C4FE29C7A /* stopscan().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "stopscan().json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan().json"; sourceTree = ""; }; - E9C087015B099555B064146A4CF18515 /* peripheral(_:didupdatevaluefor:error:)-73y6k.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatevaluefor:error:)-73y6k.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k.json"; sourceTree = ""; }; - EA23FD96A8750EDDF0F4793787CA92B9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc/index.html"; sourceTree = ""; }; - EA56525BD4170F2B892CD0C399CDCF28 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:)/index.html"; sourceTree = ""; }; - EA87D6A322B549EF24DD95D9421D288C /* corebluetoothmock.json */ = {isa = PBXFileReference; includeInIndex = 1; name = corebluetoothmock.json; path = docs/data/documentation/corebluetoothmock.json; sourceTree = ""; }; - EAC132243FE68980E66B9047499BB1D9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:)/index.html"; sourceTree = ""; }; - EB39A7FD52CD0D238094460E13988330 /* CBMPeripheralPreview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralPreview.swift; path = CoreBluetoothMock/CBMPeripheralPreview.swift; sourceTree = ""; }; - EB4F29A00075D48C7B1F854CA44561FF /* peripheral(_:didupdatevaluefor:error:)-7ocld.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didupdatevaluefor:error:)-7ocld.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld.json"; sourceTree = ""; }; - EB54C232778E2C56190330D80DF24F53 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:)/index.html"; sourceTree = ""; }; - ECF898E494C235DDA0DBEB9BE1BD49AF /* state.json */ = {isa = PBXFileReference; includeInIndex = 1; name = state.json; path = docs/data/documentation/corebluetoothmock/cbmperipheral/state.json; sourceTree = ""; }; - ED149EF3896B9CD000AF50EDF6049CED /* simulatecaching().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "simulatecaching().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching().json"; sourceTree = ""; }; - ED45FD129D5A081F10116D7A0603929E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse/index.html; sourceTree = ""; }; - ED99515419941E880B8ECFE9524BB8A6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:)/index.html"; sourceTree = ""; }; - EDD708B50C1D53ADFB25518D7D636C18 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegate/index.html; sourceTree = ""; }; - EDFD9F83192231D22F8658FEE42599A3 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration/index.html; sourceTree = ""; }; - EE388DDBB16E7C84A41B191E53834420 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302/index.html"; sourceTree = ""; }; - EEC8DA27C926CB5D6A888C378A6CE337 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg/index.html"; sourceTree = ""; }; - EF759736716DD59F516A16446C4F391C /* cbmcentralmanagerrestoredstatescanoptionskey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmcentralmanagerrestoredstatescanoptionskey.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey.json; sourceTree = ""; }; - EFD1BA95668611C0DFDEBDB61D3F10DF /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:)/index.html"; sourceTree = ""; }; - EFFE490691825085315D3C9CB7EBB51B /* connectioneventdidoccur.json */ = {isa = PBXFileReference; includeInIndex = 1; name = connectioneventdidoccur.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur.json; sourceTree = ""; }; - F027697F3DAB2B0A7F35621F72FDFCD3 /* highlight-js-cpp.eaddddbe.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-cpp.eaddddbe.js"; path = "docs/js/highlight-js-cpp.eaddddbe.js"; sourceTree = ""; }; - F0317C3DF2AE867ABC5FE3A791C2D313 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:)/index.html"; sourceTree = ""; }; - F039ABD837F4707C3D2CB6CB97A4AE6A /* ancsauthorized.json */ = {isa = PBXFileReference; includeInIndex = 1; name = ancsauthorized.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized.json; sourceTree = ""; }; - F05B8DEF1D407C8A5F936CD9DA87490E /* openl2capchannel(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "openl2capchannel(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:).json"; sourceTree = ""; }; - F06772B4A099F0AEBEB566BE41091701 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralpreview/services/index.html; sourceTree = ""; }; - F06ACB181B51C8E5FEFC3E38615FAE85 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht/index.html"; sourceTree = ""; }; - F0B5573A89AD6778AEF857F8F7696FDA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu/index.html"; sourceTree = ""; }; - F0BABD7B63DE0112DE842D6D9417CA63 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls/index.html"; sourceTree = ""; }; - F0EDD7F9911DE9AE6B0FF2A00B1ACEB0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmerror/index.html; sourceTree = ""; }; - F10D1AF6DF2DA1694A3D3EBF3D68CD59 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcharacteristic/descriptors/index.html; sourceTree = ""; }; - F169B385B66B1C9D2A4CF007D1A9674E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/mtu/index.html; sourceTree = ""; }; - F18CEFFAF6C57AB472C4C4E6E0A8194D /* peripheral(_:diddiscoverdescriptorsfor:error:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:diddiscoverdescriptorsfor:error:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:).json"; sourceTree = ""; }; - F19A80D3F92B37B141E44B804FDF088C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralpreview/state/index.html; sourceTree = ""; }; - F1BFC4556EF76C9A6C99133C6B622832 /* cbmperipheral.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheral.json; path = docs/data/documentation/corebluetoothmock/cbmperipheral.json; sourceTree = ""; }; - F1C46D97241B0A16048590ABCD5274A2 /* peripheral(_:didreceivewritecommandfor:data:)-2v5ht.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivewritecommandfor:data:)-2v5ht.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht.json"; sourceTree = ""; }; - F2245D8AEC176896474BE27BC1DBBEE1 /* discoverservices(_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "discoverservices(_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:).json"; sourceTree = ""; }; - F255107079A2CC6EC1E542DE1EDBE40F /* uuid.json */ = {isa = PBXFileReference; includeInIndex = 1; name = uuid.json; path = docs/data/documentation/corebluetoothmock/cbmservice/uuid.json; sourceTree = ""; }; - F2F57572E6CF7F22FEA95D372D74CD39 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheral/name/index.html; sourceTree = ""; }; - F307FA53B50B7CE67C5000203982E8A3 /* highlight-js-python.c214ed92.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-python.c214ed92.js"; path = "docs/js/highlight-js-python.c214ed92.js"; sourceTree = ""; }; - F3CC5BDB4BED6F6B23BC3191F74A9C17 /* isscanning.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isscanning.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanager/isscanning.json; sourceTree = ""; }; - F3E2A069B76CA428382310A4ED5620CE /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue/index.html; sourceTree = ""; }; - F41BC7C6BDAF1D90B5A67B88446BBCD1 /* identifier.json */ = {isa = PBXFileReference; includeInIndex = 1; name = identifier.json; path = docs/data/documentation/corebluetoothmock/cbmperipheral/identifier.json; sourceTree = ""; }; - F43C0FCF40641F04034E8E616B16A6E2 /* developer-og-twitter.jpg */ = {isa = PBXFileReference; includeInIndex = 1; name = "developer-og-twitter.jpg"; path = "docs/developer-og-twitter.jpg"; sourceTree = ""; }; - F4A8DC46B2D6D7A9A0D77422113F7785 /* cbmperipheralpreview.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmperipheralpreview.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralpreview.json; sourceTree = ""; }; - F4A94FF07DA4118D4ADDFAB03C3740B0 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr/index.html"; sourceTree = ""; }; - F4C86D2ABFF37148DC228727A324A8F1 /* service.json */ = {isa = PBXFileReference; includeInIndex = 1; name = service.json; path = docs/data/documentation/corebluetoothmock/cbmcharacteristic/service.json; sourceTree = ""; }; - F5758F43BEF983CB4C09892F5FB61298 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer/index.html"; sourceTree = ""; }; - F59FAEC1C3D41A2FD0E6264B2E75B927 /* peripheral(_:didreceivereadrequestfor:)-6tewg.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivereadrequestfor:)-6tewg.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg.json"; sourceTree = ""; }; - F5E493E4F693800FB6F273EE62C8D173 /* cbmadvertisementdatatxpowerlevelkey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmadvertisementdatatxpowerlevelkey.json; path = docs/data/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey.json; sourceTree = ""; }; - F6F1FE2F1A731A332196F0F18C723228 /* peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5.json"; sourceTree = ""; }; - F72B6F616B8798B58A98B263B5B125DC /* isscanning.json */ = {isa = PBXFileReference; includeInIndex = 1; name = isscanning.json; path = docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning.json; sourceTree = ""; }; - F733B0251CA3995E04574BEA15D8ED60 /* build().json */ = {isa = PBXFileReference; includeInIndex = 1; name = "build().json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/build().json"; sourceTree = ""; }; - F753F73FB0D5EAA5486016131A790E72 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m/index.html"; sourceTree = ""; }; - F7925901013C48220D67801A5C7FF129 /* !=(_:_:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "!=(_:_:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:).json"; sourceTree = ""; }; - F7AB8AA6B3181AD73854E2CB72EF4AF5 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:)/index.html"; sourceTree = ""; }; - F80AC6BA2D307EA9A44555E2AB8AE9DB /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:)/index.html"; sourceTree = ""; }; - F831A5A5B082F68E2C79D3715F122A0F /* chunk-384ef189.7ede1ea3.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "chunk-384ef189.7ede1ea3.css"; path = "docs/css/chunk-384ef189.7ede1ea3.css"; sourceTree = ""; }; - F8687C7CC417305AE2C2A8C874BEEC48 /* documentation-topic.2ed269e3.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "documentation-topic.2ed269e3.js"; path = "docs/js/documentation-topic.2ed269e3.js"; sourceTree = ""; }; - F941539E978B95395BD86153F928249C /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav/index.html"; sourceTree = ""; }; - F947A57BBB0E1055B01F8E3799D06709 /* diddiscoverincludedservices.json */ = {isa = PBXFileReference; includeInIndex = 1; name = diddiscoverincludedservices.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices.json; sourceTree = ""; }; - F95B5C3123CFFEC8458348AAEACFB4A4 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:)/index.html"; sourceTree = ""; }; - F96C0CDBBA8BF42FE34681D9B72CAFF0 /* diddiscoverdescriptors.json */ = {isa = PBXFileReference; includeInIndex = 1; name = diddiscoverdescriptors.json; path = docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors.json; sourceTree = ""; }; + EBB7873C3A9433A954AB79F157D860DF /* CoreBluetoothMock.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CoreBluetoothMock.modulemap; sourceTree = ""; }; + F4BBF203940242312F9F502D40C174E4 /* CBMPeripheralSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpec.swift; path = CoreBluetoothMock/CBMPeripheralSpec.swift; sourceTree = ""; }; FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods-nRFBlinky-nRFBlinky_UITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky-nRFBlinky_UITests"; path = Pods_nRFBlinky_nRFBlinky_UITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FA42E73C84AADBCFE0F2A81BB7081C31 /* centralmanager(_:willrestorestate:)-9qavl.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "centralmanager(_:willrestorestate:)-9qavl.json"; path = "docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl.json"; sourceTree = ""; }; - FAA0DE7A7AB9DDDF4CEF5AE045E91B91 /* cbmconnectperipheraloptionnotifyonnotificationkey.json */ = {isa = PBXFileReference; includeInIndex = 1; name = cbmconnectperipheraloptionnotifyonnotificationkey.json; path = docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey.json; sourceTree = ""; }; - FB71910F2FCCA9DE1759336532667008 /* peripheral(_:didreceivereadrequestfor:)-47a2c.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivereadrequestfor:)-47a2c.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c.json"; sourceTree = ""; }; - FBE6CAC1889BA30C96ED42CAC5A072F7 /* maximumwritevaluelength(for:).json */ = {isa = PBXFileReference; includeInIndex = 1; name = "maximumwritevaluelength(for:).json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:).json"; sourceTree = ""; }; - FC12A1EBD07CC458D28D211D642F5926 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:)/index.html"; sourceTree = ""; }; - FC482826AC8A28F29757E6D6A268A179 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmperipheralspec/proximity/index.html; sourceTree = ""; }; - FC5528E1202E3D9DE2D3BF8CCF56C579 /* peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i.json"; sourceTree = ""; }; - FCD2812BC9E1D6073CD3DBF538673E16 /* highlight-js-objectivec.bcdf5156.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "highlight-js-objectivec.bcdf5156.js"; path = "docs/js/highlight-js-objectivec.bcdf5156.js"; sourceTree = ""; }; - FD87D8129455E816B9E5E44F645BBAE4 /* peripheral(_:didwritevaluefor:error:)-3ghoi.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didwritevaluefor:error:)-3ghoi.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi.json"; sourceTree = ""; }; - FDCDFB88759B83C055534893B3F3C4B1 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:)/index.html"; sourceTree = ""; }; - FE38D39D9F2D4B22A2BDE19C66931A05 /* state.json */ = {isa = PBXFileReference; includeInIndex = 1; name = state.json; path = docs/data/documentation/corebluetoothmock/cbmperipheralnative/state.json; sourceTree = ""; }; - FE7E70650FA8A2F96D881A075087B310 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:)/index.html"; sourceTree = ""; }; - FEC49C16C7CC930F924DE09AD3866CC6 /* peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l.json */ = {isa = PBXFileReference; includeInIndex = 1; name = "peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l.json"; path = "docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l.json"; sourceTree = ""; }; - FEEA4D409A3603425BCEF471E70D2DB9 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:)/index.html"; sourceTree = ""; }; - FEFF11F883CC3CF50665F61FE8C7A77A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:)/index.html"; sourceTree = ""; }; - FF1785313BCC663F0F3A1C0D60AE393B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/index.html; sourceTree = ""; }; - FF3509C089A290332E82126C02668FD6 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw/index.html"; sourceTree = ""; }; - FF9DC251F7908408AF52C54EE116299A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey/index.html; sourceTree = ""; }; - FFA2A3C3D014123228C2DC16D7C0FA2A /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon/index.html"; sourceTree = ""; }; - FFF491F6C79940D6A4E4014110851F7B /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = "docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:)/index.html"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 488FF9A5A4E81E05DF0FC25B54D85B64 /* Frameworks */ = { + 4ED429848847BD6E98E00AFC4E3F7B3E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5578708761FD4A0A49F6E7F04C62A801 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - CE7204C262DCDE1B748848567C26FA7E /* Foundation.framework in Frameworks */, + BF4A6369A028D1BF22AD4FEFCC6BB2C8 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1023,6 +178,18 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 088E62683BA657E94911AE22A17008AB /* Products */ = { + isa = PBXGroup; + children = ( + 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */, + 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */, + B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */, + FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods-nRFBlinky-nRFBlinky_UITests */, + 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */, + ); + name = Products; + sourceTree = ""; + }; 182FD0D77DB15F326EC7F37857D0215F /* Pods-nRFBlinky_Tests */ = { isa = PBXGroup; children = ( @@ -1039,6 +206,43 @@ path = "Target Support Files/Pods-nRFBlinky_Tests"; sourceTree = ""; }; + 2043E321F8F303951A1078C86A001A34 /* CoreBluetoothMock */ = { + isa = PBXGroup; + children = ( + 302B6C1B197F88C0C758F15AC93AE02F /* CBMAttributes.swift */, + 85BF8C70A395140BDE1877927469A6D0 /* CBMCentralManager.swift */, + CFC94BDBE2EC82D5D122A0729CF74BC4 /* CBMCentralManagerDelegate.swift */, + 9407630EBD5BC7FC8F1AD9092CF263F9 /* CBMCentralManagerDelegateProxy.swift */, + C21D8CAF91CB43D0BE216F9EEA09CDEA /* CBMCentralManagerFactory.swift */, + E0730100E45F2B5903D4110E9E6F85B0 /* CBMCentralManagerMock.swift */, + A96A3F401E65A42A36904EBD5252985C /* CBMCentralManagerNative.swift */, + CCE197D9FB847BA7E58D8975A38AD969 /* CBMManagerTypes.swift */, + 6FBDFB4478025E4B86C606AD00164AD5 /* CBMPeer.swift */, + 91005B1F2B37ACFFF064F0203DC59A89 /* CBMPeripheral.swift */, + 8D4A29D3ACD91817A2A6F5EBE160B279 /* CBMPeripheralDelegate.swift */, + D1C55A5F5FDBA7352275FD9F3273D43F /* CBMPeripheralDelegateProxy.swift */, + CB408E8AFF1F660E3B5C87186C06C67F /* CBMPeripheralPreview.swift */, + F4BBF203940242312F9F502D40C174E4 /* CBMPeripheralSpec.swift */, + C857B915479E7FFBCF4BCFF83B8CFE84 /* CBMPeripheralSpecDelegate.swift */, + 15A440E77315ABFAFE892B30FFDF6E09 /* Documentation.docc */, + 1B6C389415E0D9A43B237246A7B310FB /* PrivacyInfo.xcprivacy */, + 2CA75ED9661D2276973D3906BACDF10F /* Pod */, + 64B0F70FFDC0CDCC627167EA303D0628 /* Support Files */, + ); + name = CoreBluetoothMock; + path = ../..; + sourceTree = ""; + }; + 2CA75ED9661D2276973D3906BACDF10F /* Pod */ = { + isa = PBXGroup; + children = ( + 06938B51C0B921FD24F65A621833E63C /* CoreBluetoothMock.podspec */, + 9A9CAA178E4930BB951503A38E7048C4 /* LICENSE */, + 2D135B24F42296C5FFF236829EC814A7 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; 3A45CAB5CC6B1759026B856C4F9A8654 /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -1049,898 +253,36 @@ name = "Targets Support Files"; sourceTree = ""; }; - 578452D2E740E91742655AC8F1636D1F /* iOS */ = { + 3E19703E7C77FDA1AC9857C1714E06E8 /* Development Pods */ = { isa = PBXGroup; children = ( - 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, + 2043E321F8F303951A1078C86A001A34 /* CoreBluetoothMock */, ); - name = iOS; + name = "Development Pods"; sourceTree = ""; }; - 647DCEE57A5C790794E38F50659668B9 /* Pod */ = { + 578452D2E740E91742655AC8F1636D1F /* iOS */ = { isa = PBXGroup; children = ( - CBF98FDF1684D03357CE90D4D98A487C /* !=(_:_:).json */, - E2DD01E578A2F90D7DC19D4461276C55 /* !=(_:_:).json */, - F7925901013C48220D67801A5C7FF129 /* !=(_:_:).json */, - 634F99F67172D793F5356FB2CF38E14C /* !=(_:_:).json */, - 3761F7161F3D769004D6183166552751 /* ==(_:_:).json */, - DC16EB4BEB42849F3CA78EF75FB030AA /* ==(_:_:).json */, - D3E4CD6344EB372231500618C09001B3 /* added-icon.d6f7e47d.svg */, - C87BC24A20D801A9E77ADE56EFD6E6CA /* advertisement.json */, - 34DCEF1230236005ABDB450A65E91003 /* advertisementdata.json */, - 2AB7B514814AAF83977D0DF3C8A2AA7B /* advertising(advertisementdata:withinterval:delay:alsowhenconnected:).json */, - 21F704020D97081786D01A1A29603A69 /* advertisinginterval.json */, - 8E8C6897921D2376EAC6D6A8D0346B5C /* allowforretrieval().json */, - F039ABD837F4707C3D2CB6CB97A4AE6A /* ancsauthorized.json */, - D05358513392A9D17F9EBF80865AF687 /* ancsauthorized.json */, - 7E40BD14F87D39246CEEBEAD0EE9E18B /* authorization-swift.property.json */, - E6A8B0C242416F50FD74519A68524E52 /* authorization-swift.property.json */, - 319ECC084B21BDD45160CAB48CFC8E0C /* authorization-swift.property.json */, - C50A08FD2D3571462395434E7FA5D870 /* authorization-swift.type.property.json */, - C05E141629563B9B649F165B1E1548CB /* authorization-swift.type.property.json */, - 870A21307DA8A6925BEA5F4A7FE3E469 /* authorization-swift.type.property.json */, - F733B0251CA3995E04574BEA15D8ED60 /* build().json */, - 0D78A23496FBED47B9B53C114BF70816 /* builder.json */, - 024538F9F191C0EC8EC6E97DFF79FBDE /* cancelperipheralconnection(_:).json */, - A3CC0FBF1B2DEF7DC34D016E44BB98B7 /* cancelperipheralconnection(_:).json */, - 1F0BE3BE3F6208F254FA6E3E2574A305 /* cancelperipheralconnection(_:).json */, - 9E7CF16B6596FBA0437724638ED2356B /* cansendwritewithoutresponse.json */, - 41FDB960D5DAEB5FC129BF231F3CD7A7 /* cansendwritewithoutresponse.json */, - 053AC0B8C295C1C38E9F4D2590AF8A99 /* cansendwritewithoutresponse.json */, - 20C532E56FEB250E04098F84EFFAE458 /* cansendwritewithoutresponse.json */, - DE2881FD0116709B1A2C0EC38E804EAE /* cbmadvertisementconfig.json */, - 39BBF0AA2BB1E14C4FCA81A07CD2A79F /* cbmadvertisementdataisconnectable.json */, - 16EEBCE40F40EBA5BA3A885BCCDC19DC /* cbmadvertisementdatalocalnamekey.json */, - 9E9D36A8187473EDBB17D556860EC973 /* cbmadvertisementdatamanufacturerdatakey.json */, - C546679401B87ED3B4E89865BE86475F /* cbmadvertisementdataoverflowserviceuuidskey.json */, - 4AD1816167DD0803CB62C6E361D7061E /* cbmadvertisementdataservicedatakey.json */, - 2AB3611B46E4CED96C6C068BA15F3A4B /* cbmadvertisementdataserviceuuidskey.json */, - A6E98D1F73D53C4AAF82554564972EC4 /* cbmadvertisementdatasolicitedserviceuuidskey.json */, - F5E493E4F693800FB6F273EE62C8D173 /* cbmadvertisementdatatxpowerlevelkey.json */, - 78259E8DFE90D0E3781BE2ACD5A230E8 /* cbmatterror.json */, - 38133E6619634F809D4FC0359CB1E12E /* cbmattribute.json */, - 44C52ED5240AA9C46503CB943E62A256 /* cbmcccdescriptormock.json */, - 3DFFB1C7D4A883A1C476127D79DEB6B2 /* cbmcentralmanager.json */, - 165688903D89A6E85AB794B7A9DC3AC7 /* cbmcentralmanagerdelegate.json */, - 71E39266937F08946FBFF3AB311D506F /* cbmcentralmanagerdelegateproxy.json */, - 2B2708F31AC38DA9692A07559A31FB14 /* cbmcentralmanagerfactory.json */, - ACF70D5D034EA3E65F1A9FB39D43F34F /* cbmcentralmanagermock.json */, - 33614F6E03F8580301AE665AE96B873F /* cbmcentralmanagernative.json */, - 8CA592E5C442E7258174950A95D60609 /* cbmcentralmanageroptionrestoreidentifierkey.json */, - 96333EA93184F0C7F87AC062C8D7123B /* cbmcentralmanageroptionshowpoweralertkey.json */, - D1F21B17B909A73A008D97C148C2AB50 /* cbmcentralmanagerrestoredstateperipheralskey.json */, - EF759736716DD59F516A16446C4F391C /* cbmcentralmanagerrestoredstatescanoptionskey.json */, - C84A7EADD727F0451F1F9A15131B3EA3 /* cbmcentralmanagerrestoredstatescanserviceskey.json */, - E92F962131F6424D2B44F76A0D131AEC /* cbmcentralmanagerscanoptionallowduplicateskey.json */, - 1B0CFC92B2CB082843FA0186F02E8A2E /* cbmcentralmanagerscanoptionsolicitedserviceuuidskey.json */, - 860770DCA3E72B8ABB8F158D6CE01A79 /* cbmcharacteristic.json */, - 99798A04B8BD7B75DAF7A1816CB3E401 /* cbmcharacteristicmock.json */, - 0E7D9B452E7C9BAF4AD6D905B1F4E532 /* cbmcharacteristicproperties.json */, - 2E573269B8F716F7319666A48EBD99EC /* cbmcharacteristicwritetype.json */, - 9989E5C0FB7FD578A26BB10092FA2CFD /* cbmclientcharacteristicconfigurationdescriptormock.json */, - 471B87FF44D86BE701878DEBC8A898E3 /* cbmconnectionevent.json */, - B33A774EDD8865F13E487E19FA0B5430 /* cbmconnectioneventmatchingoption.json */, - 7BC2F7577FE8E951E71A56E2691E1B3D /* cbmconnectperipheraloptionnotifyonconnectionkey.json */, - 43BED3EB3FF366AC3307F95E81584371 /* cbmconnectperipheraloptionnotifyondisconnectionkey.json */, - FAA0DE7A7AB9DDDF4CEF5AE045E91B91 /* cbmconnectperipheraloptionnotifyonnotificationkey.json */, - E5B9756450EF45FBC8643C5C0A6DAAA7 /* cbmconnectperipheraloptionstartdelaykey.json */, - 312D9D77BA7667154EC3DD541D9876D0 /* cbmdescriptor.json */, - 9D89CB4E7BEA4AD7D084BFBDABD91398 /* cbmdescriptormock.json */, - 89A763D8E31280C3B70BA1AB5E168E48 /* cbmerror.json */, - 612C7D0302F5AA007445BA0CB086E2D5 /* cbml2capchannel.json */, - 4EC27D82B714BE35A95BC2035B936143 /* cbml2cappsm.json */, - D4D8FFA43EBA530CDC3A116D4EC74B2E /* cbmmanagerauthorization.json */, - C067AB69A308486B3A2270F6542F9E3E /* cbmmanagerstate.json */, - E28F239C797CDF8F9E75BCFD645F7A9D /* cbmpeer.json */, - F1BFC4556EF76C9A6C99133C6B622832 /* cbmperipheral.json */, - 072A6003F584F986589E3ABF8E8A77BC /* cbmperipheraldelegate.json */, - AC8D5D2CFE9BD3B8F4731CC3B25A7A8C /* cbmperipheraldelegate-implementations.json */, - 21AF0DA3FB70977629E8C867D479A336 /* cbmperipheraldelegateproxy.json */, - 175EFC695579E8890126891330D4922E /* cbmperipheraldelegateproxywithl2capchannel.json */, - B5E8AC6526BA98280183DF4B4B9F5429 /* cbmperipheralmock.json */, - B7DFCCBFAE3223097484270FB83FAD8C /* cbmperipheralnative.json */, - F4A8DC46B2D6D7A9A0D77422113F7785 /* cbmperipheralpreview.json */, - 9436C66ED23255B3893829F915E6B4F2 /* cbmperipheralspec.json */, - 89E47491CACB727767646FAEB0196E87 /* cbmperipheralspecdelegate.json */, - 1DA888954D1FCE7F202DB207A72AC739 /* cbmperipheralstate.json */, - 95626C5815276DD70BFF82D8D5111BA6 /* cbmproximity.json */, - C192CBEAB28EC49B39C3F4E8B6453DD3 /* cbmservice.json */, - 7A32474934AAFFCE24D5C96D661D30B8 /* cbmservicemock.json */, - 84F204B6C82EFE380282836F8A7D81E1 /* cbmuuid.json */, - 924CB1FC286049761CC1982BB5EBFDB6 /* centralmanager(_:connectioneventdidoccur:for:).json */, - 251398C1A6F5B7E542EF8269B89B0FC1 /* centralmanager(_:connectioneventdidoccur:for:)-1ay8d.json */, - C307FB335C3961142E2C8DECC2456939 /* centralmanager(_:connectioneventdidoccur:for:)-3pqer.json */, - 3870C668EBB4775284A4062F9D7F1844 /* centralmanager(_:didconnect:).json */, - 05BC2C05F5F68911A2B8222E3E0EFA5E /* centralmanager(_:didconnect:)-6tlfh.json */, - 8BE2F26D886263140D270B24391C03C9 /* centralmanager(_:didconnect:)-p052.json */, - 7A7EA3B119D2B1CB132D4D59EEDB9F6C /* centralmanager(_:diddisconnectperipheral:error:).json */, - DD23DCF6E647DF935C19A8C6DC23EAD8 /* centralmanager(_:diddisconnectperipheral:error:)-1j8c2.json */, - 8FDA1BC8FDF3BC64075F70F78FA25BA2 /* centralmanager(_:diddisconnectperipheral:error:)-1lv48.json */, - 25984A2754D45BC643D27D64A9729634 /* centralmanager(_:diddiscover:advertisementdata:rssi:).json */, - D3A6F8747F9A3B5AD251C9B177CB2F62 /* centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp.json */, - 21B151E2A1C805A181017716B2360E64 /* centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n.json */, - E2240A288A02255483E0AA79283A3DF7 /* centralmanager(_:didfailtoconnect:error:).json */, - C348DB924D5E5A96F7CA8C4DBEB19049 /* centralmanager(_:didfailtoconnect:error:)-2h1bb.json */, - 008664211053751B4DC9B1B67446A7AC /* centralmanager(_:didfailtoconnect:error:)-9sppj.json */, - 91C69DAD3D142838B1BF0D55FB179752 /* centralmanager(_:didupdateancsauthorizationfor:).json */, - DD6E8F10A116B28F533D8BBE1F136E94 /* centralmanager(_:didupdateancsauthorizationfor:)-6msdh.json */, - 479630BD05FD59CEA53351E141A8D067 /* centralmanager(_:didupdateancsauthorizationfor:)-8t3sl.json */, - D4504927E6FF502D252E08C1AE96C6B5 /* centralmanager(_:willrestorestate:).json */, - 403987AA02BFE4B3274EBFD77FEB33D7 /* centralmanager(_:willrestorestate:)-4zyhg.json */, - FA42E73C84AADBCFE0F2A81BB7081C31 /* centralmanager(_:willrestorestate:)-9qavl.json */, - D15317158F287B36152BD272A9DF6D20 /* centralmanagerdidupdatestate(_:).json */, - 59131DF54D02BC1E693A0A739A7A1F5F /* centralmanagerdidupdatestate(_:).json */, - 8F011F5CB9C751327B4FAA476B4DCF28 /* characteristic.json */, - 3C7EE093FB86064E8CBBBDAE5279FBCC /* characteristics.json */, - 55548AADD72EA4BE468E4107DAB032F4 /* chunk-2d0d3105.cd72cc8e.js */, - F831A5A5B082F68E2C79D3715F122A0F /* chunk-384ef189.7ede1ea3.css */, - 13A8611A4EDAE37492675B166A6C066B /* chunk-384ef189.bb1ed903.js */, - A0CFD60CA1DD775D3E5D328332A3E2C2 /* chunk-vendors.b24b7aaa.js */, - 8EA9CA5A3DE81A683212FFE1FE3A74FD /* connect(_:options:).json */, - 04DA25D36D94578954EBC2E8FED7513E /* connect(_:options:).json */, - 62A42C948EBA19F3B90503E7AB06BF3A /* connect(_:options:).json */, - 097BF116FE12CEC462CFD4EAAFCDF2F2 /* connectable(name:services:delegate:connectioninterval:mtu:).json */, - DFC4A40ECE8C147A45B982E2FE8774A2 /* connected(name:services:delegate:connectioninterval:mtu:).json */, - 29F41F384DEEFEAAA27F901C2F4D0492 /* connectiondelegate.json */, - EFFE490691825085315D3C9CB7EBB51B /* connectioneventdidoccur.json */, - BD13BAF4A1D0ED1552065238DF53A56F /* connectioninterval.json */, - EA87D6A322B549EF24DD95D9421D288C /* corebluetoothmock.json */, - E5055A496338FAE3DC373052FF55019F /* CoreBluetoothMock.podspec */, - 092AF33C634EF3E854AFC329C34D8947 /* data.json */, - 110E55F2C5FB903FD163EC3DC5D73DA0 /* delay.json */, - 55CCAEBD1A25D41A4986696CC852C719 /* delegate.json */, - 5D458CD281398F2AE288983847FF404C /* delegate.json */, - E3C8F15B491779636B54F908F1BC70C8 /* delegate.json */, - C7919AA8EE524FA6921E98B9327FF9B4 /* delegate.json */, - 8FACDF011FA90F12508524E40A913C12 /* delegate.json */, - C5276B11CC04FF3BE7A085D82BADD429 /* deprecated-icon.015b4f17.svg */, - 76CB0FD9DE798A0C83E5F0FC37449516 /* descriptors.json */, - 902B13C5CBCF34D49CBA7567B99E1B04 /* descriptors.json */, - 0CD81BA47934E91B6E68F5803CAC29C2 /* developer-og.jpg */, - F43C0FCF40641F04034E8E616B16A6E2 /* developer-og-twitter.jpg */, - 8D022D720D596233F04CA52B62531F72 /* didconnect.json */, - 70F1C47E98C246EED2F0668225118C7F /* diddisconnect.json */, - 5EAB4732D3349E03E73BF6988EC98195 /* diddiscovercharacteristics.json */, - F96C0CDBBA8BF42FE34681D9B72CAFF0 /* diddiscoverdescriptors.json */, - F947A57BBB0E1055B01F8E3799D06709 /* diddiscoverincludedservices.json */, - 760E7CCD0877B28EC2B9EB568E845204 /* diddiscoverperipheral.json */, - 14B2022ECC8A7F7A3F37DEFAA06F0EFB /* diddiscoverservices.json */, - 7EFBD515A9F4FE1AA8C6E241E0E3EE7B /* didfailtoconnect.json */, - B0EEA107B7B96CDF1A8772E413D472F7 /* didmodifyservices.json */, - 56A9289C43723D7B26866863A8CED7B1 /* didopenchannel.json */, - A10BE19BD5C56F42A76B5BD1C081868C /* didreadrssi.json */, - 481CFD6B6049DCE788F6F26EDB8A6EB4 /* didupdateancsauthorization.json */, - D9F6F159E7027579CA5E729BD1BBD3B6 /* didupdatecharacteristicvalue.json */, - C3C0266789A6A5D9FB6A10511FC0DF35 /* didupdatedescriptorvalue.json */, - DDBA7DD94850C4D1F16C9B82A8F157CD /* didupdatename.json */, - D6E37A0E711074FAC00D9C823A0DA19B /* didupdatenotificationstate.json */, - A5FD2AF412B7896CFB44AC7694D2EB92 /* didupdatestate.json */, - 50B15B23CAD23B6C16614F4F14627D73 /* didwritecharacteristicvalue.json */, - 55F4424E50034FDB3FBE90A0AEEE2FB5 /* didwritedescriptorvalue.json */, - 398FCBF970B72D3B393C129A3C9B0E3B /* discovercharacteristics(_:for:).json */, - 6D4CE69C03CEADEDABDCBF92A99F76D3 /* discovercharacteristics(_:for:).json */, - DE369E1C4071F14C2C9F3922AFF0793E /* discovercharacteristics(_:for:).json */, - 5E04D30E25DA841AF1E2887AB2B0ADAF /* discovercharacteristics(_:for:).json */, - 577C4032336B49726EF1F26079D3FF7D /* discoverdescriptors(for:).json */, - D66EEADBF7D2967A6B39183BB7A0DAE9 /* discoverdescriptors(for:).json */, - 08B63A3357464677B33F3ECC93077E08 /* discoverdescriptors(for:).json */, - 68AEC1DE22974207ADBD133E23B34BB8 /* discoverdescriptors(for:).json */, - 76EDA6B06DEDA6E179FAEA92CFCA70C4 /* discoverincludedservices(_:for:).json */, - D4277F255CC7941104B2C336E1D87B5A /* discoverincludedservices(_:for:).json */, - 0E08ADA173A94CF3D7DC0E40D6996B59 /* discoverincludedservices(_:for:).json */, - 27219BD69A07D28F1C810DF3C85DCDEB /* discoverincludedservices(_:for:).json */, - D5B30D3D24D79116A57BB3E3BC051CD3 /* discoverservices(_:).json */, - 53903E5B4B283C3160B410C2132CFE51 /* discoverservices(_:).json */, - F2245D8AEC176896474BE27BC1DBBEE1 /* discoverservices(_:).json */, - D3BBC4646B923DEBAEBCC4E999226D5C /* discoverservices(_:).json */, - 656545B4E60E57B3BBA4CAF631FC4BAC /* documentation-topic.29351f99.css */, - F8687C7CC417305AE2C2A8C874BEEC48 /* documentation-topic.2ed269e3.js */, - 87A781DFA085B18A4492D3F1C72FDA77 /* documentation-topic~topic.900fc80c.js */, - 9130CA536A2AE9974CE6B9EBBB232B9A /* documentation-topic~topic.fccbd76c.css */, - 0DCB9F19D21417276786F92007C743F6 /* documentation-topic~topic~tutorials-overview.1099452b.css */, - 7685BED3CF5AE5D14E49BA869A58072D /* documentation-topic~topic~tutorials-overview.5b27b87b.js */, - B4DAB815532683BD4BB53315A0A4CE60 /* equatable-implementations.json */, - 9B6BF5954CB6A5B0E06930631643EBBA /* equatable-implementations.json */, - 4E211AC3BA059A0D3EE1FE3D6B8B352D /* equatable-implementations.json */, - 95EC31DC7922EBFBCDD6562439B7AC60 /* equatable-implementations.json */, - 3D36173B9922909032EF84BD380FFCC8 /* far.json */, - 1BF28B85F3A21875FA889596C95DBFEF /* favicon.ico */, - DE3A4979CAEDF7A3EB9C4F48186A373A /* favicon.svg */, - B1376C0F67DD20C757EF744CC40CCF05 /* hash.json */, - 725AC4F1E664EB9F58B4AA8A3BAE2E76 /* hash.json */, - A3083B3BD1A5175EC25C22B93DDA09FF /* hash(into:).json */, - 4072891023EB27790107644E8185F830 /* hash(into:).json */, - B72512A5E34329C430DB2A7A31340F17 /* hashable-implementations.json */, - 6DEC8D07A2A2A29E88F2537CC2C66CEC /* hashvalue.json */, - CEC1F54257A8DF3BC8489BC73A18AA24 /* highlight-js-bash.1b52852f.js */, - 98197F7DF313C7AB1099E6E1F58E4373 /* highlight-js-c.d1db3f17.js */, - F027697F3DAB2B0A7F35621F72FDFCD3 /* highlight-js-cpp.eaddddbe.js */, - A58ECC49490E184F868EEA0BA2C24958 /* highlight-js-css.75eab1fe.js */, - 18E8F2B8942A95213CA838ADC3BE6931 /* highlight-js-custom-markdown.7cffc4b3.js */, - 4C39DC0191D2F275A394522DA728DA26 /* highlight-js-custom-swift.5cda5c20.js */, - A790FD9B920D7F526BBFC5968D05E24E /* highlight-js-diff.62d66733.js */, - 816B7B4F8E92B96CCDAF202B1D4FEAB8 /* highlight-js-http.163e45b6.js */, - DF5203A1D62E571C4FBC7E31E118B70A /* highlight-js-java.8326d9d8.js */, - B81677FC31B42A0A9F84AE0D3DE21D60 /* highlight-js-javascript.acb8a8eb.js */, - C041892D6D04EEE30F04F1FA8B25DBED /* highlight-js-json.471128d2.js */, - CE81766E4356F6DE8D4A91AD466EDC43 /* highlight-js-llvm.6100b125.js */, - BDD47CE37BF3A12DF1DE0D109C99FAF0 /* highlight-js-markdown.90077643.js */, - FCD2812BC9E1D6073CD3DBF538673E16 /* highlight-js-objectivec.bcdf5156.js */, - 0F44E44609808785023B25A469D94C7F /* highlight-js-perl.757d7b6f.js */, - BA9F6292FE83EE1AD72942013451E3F6 /* highlight-js-php.cc8d6c27.js */, - F307FA53B50B7CE67C5000203982E8A3 /* highlight-js-python.c214ed92.js */, - 1ABF223638C742686D32930D03421C90 /* highlight-js-ruby.f889d392.js */, - D6DA9AC79E07892AABF51574AB9D7779 /* highlight-js-scss.62ee18da.js */, - 2C7449229E59EFA8AA64B05C29B46CD2 /* highlight-js-shell.dd7f411f.js */, - 4C55FA02D658D7F6C9D54BE57166A622 /* highlight-js-swift.84f3e88c.js */, - 91FF95ABD0A047F6224F920F27094366 /* highlight-js-xml.9c3688c7.js */, - F41BC7C6BDAF1D90B5A67B88446BBCD1 /* identifier.json */, - 986006E63AB039AFCEB80E6EBF907770 /* identifier.json */, - 98925D3BEE2DC53FE566674B49197FAA /* identifier.json */, - 9C4EA27C0DDACF7FA2547D1A643B441D /* identifier.json */, - 1264153E1F8E6DC2B47B1BAB5C908FB4 /* identifier.json */, - 4E149CC516DD5F7F731C9E7C632ED643 /* immediate.json */, - D35A5C54EAC16BF0EA0E10CC8C454C4B /* includedservices.json */, - F80AC6BA2D307EA9A44555E2AB8AE9DB /* index.html */, - 5E9A56B6F007473DACF8BC54B6DB4485 /* index.html */, - 2FB535E1BCB6CA09CE34F83F8851C7AB /* index.html */, - 4836A3CCFCB1D603335D5EAEB4A3257E /* index.html */, - BD1836D1AE65E0F25BD9804E99165159 /* index.html */, - B9E64E45C117890C2483B6CA04DEBD94 /* index.html */, - 8B3806617EEE50C6ED31A93CB6DA347C /* index.html */, - 60911F6FF92203A3B59C176C134B3975 /* index.html */, - 9BAA58C399CC1E15CC765A2323133FD9 /* index.html */, - 319418C34F1FB652D3767C6B3787D885 /* index.html */, - 26364A279ECBC887948AF33AF2604E51 /* index.html */, - 3A5028F0B7F3E1316375EB91779E0DDF /* index.html */, - 846D58054B2A69328DB1F4D59442275A /* index.html */, - 8871ADAC6C9F4F5B5E35865BCD8E8102 /* index.html */, - 990FC381E78E71384F5596854D848BD9 /* index.html */, - 9783F25CA96CFAB0E7A740F2582D79CD /* index.html */, - 1686C41A864DC409B7B6A63B7EDF3809 /* index.html */, - E3091BA86D758E9E73875B8276F45693 /* index.html */, - 117E645CBDB6C54955954C11A0713A99 /* index.html */, - 1910CB3704F12E4645D5B7C55E9EE735 /* index.html */, - 5E2D57BFFAE795453501BC6B514391DA /* index.html */, - CDD4A9718266DFFE6FE0B6959268597C /* index.html */, - 0C5B4ED5BCC69873187778F7BB97B481 /* index.html */, - C3654BD60DC8522620763229C4249E6B /* index.html */, - 425D5501C6BF711B6585F82279B68C10 /* index.html */, - 5F77E16429A02C784D088E4C58BBE88C /* index.html */, - BB5299E5B7326DCB497FB73EFB9A5EAA /* index.html */, - 1951CF1C4A43251255CD5AA591822394 /* index.html */, - 19EB8C314E8C5CAC268F841913170662 /* index.html */, - 0780AB908FFAF0EDFABAAB4DE69EC6CE /* index.html */, - AD2D878DBF1CF40272B7FB7B65736096 /* index.html */, - F7AB8AA6B3181AD73854E2CB72EF4AF5 /* index.html */, - 1831B2566234E97F09C08711A9D14145 /* index.html */, - D95DF815BF4CBF677AD247291EEF8DCA /* index.html */, - 3CCA6852029B5245088069380A8E4320 /* index.html */, - 91AA44DC8B1540A9E7D0D6D7680BF897 /* index.html */, - F5758F43BEF983CB4C09892F5FB61298 /* index.html */, - 925A35A70EA7639D95FABC793A4EE314 /* index.html */, - AA2CE74723BAFC4AC5E0D037CBF122D0 /* index.html */, - 3D0BDFFDD1F621F8D9F6557613B406C9 /* index.html */, - 3ED8482072955102D310014DF3472F51 /* index.html */, - 49C64DCC8340A2C713E1046BB79EB316 /* index.html */, - 8B4C3F3B2E2D048972BB8255D73C76F9 /* index.html */, - 1AA6850CBA5422AA28B525FA10DF2CB4 /* index.html */, - 1E57CAA4BE86FFA2335E94F2BEFD00D7 /* index.html */, - E79DEBD3098622DB97A4D735050B420F /* index.html */, - 0B272FD39E0CBD20D10780E5CD98050B /* index.html */, - 0C3FCC0D76BC8A9409C2217D710C5E4F /* index.html */, - 7C7D4122245628756ADC8B23CA8711BE /* index.html */, - 864F123E4A531B77D6F85C21B071CC1C /* index.html */, - 107832286DD622A8D779DB0B1F8CDBF2 /* index.html */, - E1B178083C700CB8E01426834866E52A /* index.html */, - FC12A1EBD07CC458D28D211D642F5926 /* index.html */, - 7A82DA430E0978A07A84C13085467835 /* index.html */, - 82582A241EB7C5DE05590905B893746B /* index.html */, - 9BEC28BDAFFE0C2F60FCDCE8E83F0AA1 /* index.html */, - BF1815DE78C8DE272BBE55545D72899E /* index.html */, - 1A95CFF598A1ABD193F158DE7DCA659E /* index.html */, - 08063281883B2DC97DCB985D0B9C0399 /* index.html */, - BA2AFB34B821A8C96739BA90F029D2FA /* index.html */, - 50101DB20724DD8BB0ED5905DDBC4B9A /* index.html */, - 375E5BC0E10CD28035413FEDF2243C27 /* index.html */, - 7885843DE7570F9AD5722841EE703663 /* index.html */, - D2327ACEF36C78A240020D6C82AE31D9 /* index.html */, - 54149DB0B898004B13A6480BD69D4E98 /* index.html */, - B7D73D412E0B7E8DDD0B34D45E8F42F6 /* index.html */, - FF1785313BCC663F0F3A1C0D60AE393B /* index.html */, - 7F469C38ABA6CF29E0975051F5170D30 /* index.html */, - 0E7476FC4DF13BB4872421EB38BEAB1D /* index.html */, - 679AB217C9BDC8B66AD204D3D76A8E26 /* index.html */, - 30E69669CD4CD37105BAE39ECC786E59 /* index.html */, - EAC132243FE68980E66B9047499BB1D9 /* index.html */, - 23880F0C320D9CE55F035096BD46D18D /* index.html */, - C1D47B373A82AF70E1690BCA284891BC /* index.html */, - 693E1055E9BBDE11DCABD2EFE4DD5E14 /* index.html */, - 0DED66566428563AD478CCA285E3D275 /* index.html */, - A951ACE5873D049B3C07399E1BF55057 /* index.html */, - 7C90BF560BAC1F0424258CB143181188 /* index.html */, - EA56525BD4170F2B892CD0C399CDCF28 /* index.html */, - FE7E70650FA8A2F96D881A075087B310 /* index.html */, - 76DD388554DA68BF3EAD822BFA062B5F /* index.html */, - 603D04F6B85756C5393D44386F332937 /* index.html */, - 46B192CE6A1FDD9FF9717A322BEE9424 /* index.html */, - 47C5D9A42D252AC254937F3048B3AD1B /* index.html */, - 2059DDAA23DEECA7CD5EB8CB83A552C6 /* index.html */, - A47B97E69F42D2268C0A477D87C8495B /* index.html */, - C64CC8A1A36B3782CB2800CC61D15B34 /* index.html */, - 9AB1AB75EBCBDF7E0B72DDD993D0AF7F /* index.html */, - EDFD9F83192231D22F8658FEE42599A3 /* index.html */, - A8902276BABD048BE3B8653F1AF68D29 /* index.html */, - 1E45F9A8AF033040684FA3C12AA6FA10 /* index.html */, - 8D6C0099BB05BA09107A64E8BD6F7570 /* index.html */, - A6C01AC486932821A7B3AFD8C826E875 /* index.html */, - 8588FEEF02825FE3B8878C5163EC224A /* index.html */, - D9986B3DB9F0399BB59603A12961B40F /* index.html */, - FEFF11F883CC3CF50665F61FE8C7A77A /* index.html */, - BCEF67AA094C8646605215C0B43E3BE4 /* index.html */, - CCBADDA4BCE424202C83AD434068E111 /* index.html */, - 52146A994AF22348E0A08774645B5BD1 /* index.html */, - 6D94CBE854FBDC14BBFB7DAC2A6FE1A8 /* index.html */, - 5337607B57E2338D157AC10332B64C71 /* index.html */, - FEEA4D409A3603425BCEF471E70D2DB9 /* index.html */, - 64FA36AD8D1F2EC389810B7248EE895E /* index.html */, - ADCC10CBE67B295026BF72F21CAB6C4F /* index.html */, - E37EE85420F71EB9A60209DEA094FB95 /* index.html */, - 7B394AB992DFB4B6E74B1A800DD5C265 /* index.html */, - C5FAEE9A29E3805C9A05C37CE98A9CAE /* index.html */, - FF9DC251F7908408AF52C54EE116299A /* index.html */, - E92ECEC524B9308785E9F0B76FC6C1F9 /* index.html */, - D99BA0FCB55FA8B20349950F57138A61 /* index.html */, - B3A06715C2CB2BFC9D4C607C99E0DCE6 /* index.html */, - 9000EC99F76EBA6BE6F1A87FCE70013E /* index.html */, - 26A16D255751A7FA267E6433AB369BA7 /* index.html */, - F10D1AF6DF2DA1694A3D3EBF3D68CD59 /* index.html */, - E5538270C9C82CC2BACBCF1A07B546E9 /* index.html */, - 79FE50DEEA1C40EFEDA73C0835BC5F34 /* index.html */, - B95B9A32D8E99B70378914CCB87D3D6F /* index.html */, - 6F52E2B4FDF1334C0F944428F8FB923A /* index.html */, - 859C1D7F760953C1B0802FF04D1D1851 /* index.html */, - A0F67F6FE8D91A9DD833779AB461498A /* index.html */, - CA8FF9B5F0BA464571AB4040FBB2297C /* index.html */, - 5FFC74065291B64AEE57D26EEA68C038 /* index.html */, - E4DAB022CB3557EB29258DF2A21CF637 /* index.html */, - E4C7E2AAE38B57606A60608705BD497D /* index.html */, - A532A67069E0EC1E7E57C7A7D4BB0061 /* index.html */, - AE6AD1BEEC393F2C93670C1B63D810CC /* index.html */, - 182776627EE2F7A515220732FA18E3EB /* index.html */, - 4FFE97683DA7BE1773F3134BF211A980 /* index.html */, - 5085A9BB6D6A5B0E85CCB5D3EBFED391 /* index.html */, - BEC2EFA65C08470A965C043FC0625E2C /* index.html */, - 08D6BA10987D512D6C105C1FD7F2A034 /* index.html */, - 240CBA0647B3BB9B03947C4AFD49162E /* index.html */, - 1D47659E908B8689CECCDBA14EB22973 /* index.html */, - 3B426ED484B103AB250E2B5A8E8FC15B /* index.html */, - CBCEA8C1E12AFA94FE0B563784805C5D /* index.html */, - C117977F111DF9AED2419DAFBF53EF22 /* index.html */, - 715AD008A907E9186F267B7E2F872033 /* index.html */, - 9502204562DFFB5C31BDF9DB47B2928D /* index.html */, - 4791386E460B5D7B7DCB72E6B2F455D6 /* index.html */, - 88703F2B231D3AFE7270AD6AC6E538A1 /* index.html */, - 46EAF4FB812DFE00C9DD2CA2971C713A /* index.html */, - F0EDD7F9911DE9AE6B0FF2A00B1ACEB0 /* index.html */, - AEBC90EB35565DE741A802B58C192017 /* index.html */, - 4DC919CED38EB73B5576CD94FF47BEE5 /* index.html */, - CB61323A0BFF12862ABEE501DA96FD0F /* index.html */, - BA0D20593A7CB598B5F1E597C3ABE6B8 /* index.html */, - ADC26F05373AFBF4F2A40C9805DDEACB /* index.html */, - 0CDD65C94A0296E49E18A435BAC8734C /* index.html */, - 203B9F9ADE044664ED487C7440125177 /* index.html */, - DA955F1ECB6429638A8282E011C3089C /* index.html */, - 80F2ED1E03182B4749039D5E33A23F28 /* index.html */, - 85BF7F5C9DECFD8BBCD9EED13B25BFEE /* index.html */, - C9D3DC4A0C45891616A336465814021F /* index.html */, - 26282AD7AD2694750F4FB73FAEE189E9 /* index.html */, - 522769035EE2ABAEC5071011035AD84E /* index.html */, - 63BD47D55299499EA8F6C44CBB6BD928 /* index.html */, - 0B4F4B99AC5D580194AA7DD1408CAC05 /* index.html */, - 2A973EDE9CAE6AC13C3EFA333540918F /* index.html */, - 5692A666746AA869422A36985D7BDAC2 /* index.html */, - 519B9E90C518D411E03143E8B37BF29F /* index.html */, - 4BE0A0E3729A5DF1E22C0AB4FF74EB43 /* index.html */, - F95B5C3123CFFEC8458348AAEACFB4A4 /* index.html */, - 3D9F7B1AA1CEF8CDA290FAC496A4B613 /* index.html */, - AE0E674CE5E82CC8EB5001ACFA775FD4 /* index.html */, - A759187707B2E0CC1B99356F045D172C /* index.html */, - 7C5FFBA5F2F77467AD72FEF18CC5A7AE /* index.html */, - BD3648C41A56E5780388964C63A73FCA /* index.html */, - 5228F5E2AD81CB1B6674C56EA5B21707 /* index.html */, - F2F57572E6CF7F22FEA95D372D74CD39 /* index.html */, - 0390EB3515C0F54F4323B22EEA815B54 /* index.html */, - 6F3AFA7D4C4C14496A78987C3DEE8656 /* index.html */, - 2CD391F2FC526E20B67CFC41C40292E5 /* index.html */, - D4A8043F489505468C653CB2504C5BB8 /* index.html */, - 54950B56796640DC7F93ED0465EAF5B2 /* index.html */, - 1978AD1E6D76A67DAE775B9DF2E4C3D6 /* index.html */, - 7670D8C39AD427F9C1FCD72C688241BF /* index.html */, - 0C754FB192A4D01526BDE3300E6FAAC1 /* index.html */, - EDD708B50C1D53ADFB25518D7D636C18 /* index.html */, - EA23FD96A8750EDDF0F4793787CA92B9 /* index.html */, - D99B485617E1DB336B9651629297BA52 /* index.html */, - 8BBE86B8189C1D420DCD9B934D9A3BA2 /* index.html */, - 2077F07DCE5CCB97D5B8B6C2870A085B /* index.html */, - 866C9B7B3D7EFF83126E1C137D1070A6 /* index.html */, - F4A94FF07DA4118D4ADDFAB03C3740B0 /* index.html */, - 8679E65AAC939569B460F6CF404E438E /* index.html */, - 9543F799CB0261EA8D5F1D181848062C /* index.html */, - 3A0C88E7C2C9EF1C16DC7E59DFA42ADD /* index.html */, - D187C143C060FA46463A205EDA86F0E2 /* index.html */, - 7441CB6B0BEC8213F06082CFB54C82E5 /* index.html */, - 7FA2A70E7361805264BDA4C767075399 /* index.html */, - 965197C4EC3051471412574D11C20FB0 /* index.html */, - D91FD515647F93FC31CBA0A1AE62BDBA /* index.html */, - 89EFBEF7D7E46EF5F0664E60A473AFEC /* index.html */, - 3337E146A3443A1F22941FF594413378 /* index.html */, - CC5BD90B0BBFDADF9EF1CB199DC9DD71 /* index.html */, - 126B3120E6C2DB667524C7ABA7C1BE16 /* index.html */, - EE388DDBB16E7C84A41B191E53834420 /* index.html */, - DF44F2A79928272207C49C8947344C14 /* index.html */, - FF3509C089A290332E82126C02668FD6 /* index.html */, - 63960B55B5FBB6CE8E9D6C2838091565 /* index.html */, - 1F5CCEF51C0957D188616F1BA1DABC41 /* index.html */, - 854B818693F6600E95422E7107A1A890 /* index.html */, - 4EAE0D19F1351CFC10244FA6E33A06E1 /* index.html */, - C94DC51AE1F5A996D935D9E05CD1156C /* index.html */, - 37F5A155D64CF3AACA99CEB90E6965C3 /* index.html */, - BF5D565D58B343904D59ED87C406D04E /* index.html */, - 0F4D9E78FF9317337091D3238EAA9F27 /* index.html */, - 971CEE7C355BF6987C30E78AE126FCE2 /* index.html */, - 8BE644211B0D8B61B2383FFAA8F02A1A /* index.html */, - D5E9B2BCB2C7F5E3A175BEFFD08A27DA /* index.html */, - 3626010C5B6F095C91CCC7E6D22789AA /* index.html */, - B9E294517FBE01AF0B8FEB8480CCA80E /* index.html */, - 6307ECD8841E7535477321FD57391C0A /* index.html */, - AB81111973F44CA31518091D12B1F491 /* index.html */, - 663B06ED768D5513BD439E22E1E45791 /* index.html */, - 44C296ED11CB58179A798BE454B89D5D /* index.html */, - DB884A059D42BC8E0C1B56A34528D911 /* index.html */, - F3E2A069B76CA428382310A4ED5620CE /* index.html */, - D7302C48A415BF2447F4EE8FB8F2069D /* index.html */, - 81352D4F44F2FD72B744A58722BF2D72 /* index.html */, - 390BAE3244B0E2F0BE14F69C1E475C12 /* index.html */, - 3FE9366289CB43C05ACD9F980BF7F1BF /* index.html */, - FFF491F6C79940D6A4E4014110851F7B /* index.html */, - A0AEB0EBF4B63E4A945F5A132CFF7778 /* index.html */, - CAA435383530D6A381AB410CFCEDB1EC /* index.html */, - 43152F13B3564C267092014F95718EB4 /* index.html */, - A66117CCFA68F88DBC90ADAA5B7FF3D2 /* index.html */, - EB54C232778E2C56190330D80DF24F53 /* index.html */, - 16CEB0D2AA2C6B8D0EB5561B3E4ACFD2 /* index.html */, - 5C9E821E79BFA5117B1F1BC61EDC7325 /* index.html */, - 71C853320AB7DCE2509659C602F22652 /* index.html */, - 4774CE54B19C343A752ED074658588A1 /* index.html */, - 6164E9848A20B5F630DD76E7F0525429 /* index.html */, - FFA2A3C3D014123228C2DC16D7C0FA2A /* index.html */, - 45F09F20056BC3FEAC13A4F813CD49C9 /* index.html */, - 62B4BC95E3E110054F56112B6F1D6AA7 /* index.html */, - 2FD98C34AF293D167213E494E966E2BF /* index.html */, - ED99515419941E880B8ECFE9524BB8A6 /* index.html */, - CD1C2936BD8D59149DC35D14F4947F2B /* index.html */, - 1FC7C8724E09E114B001426ACCFFBD88 /* index.html */, - AF599C041AF3212B60056099CBF38700 /* index.html */, - 8C81D25AA01FE1F888E1FF6DDA13F88B /* index.html */, - 007C5239267626342FEE8D2C3BCE5A7F /* index.html */, - 94C0F718968C3E693058D627E61541CA /* index.html */, - 2207FAE2C03AAC6D38B738EB3CCC9247 /* index.html */, - 2082495A8BA6DAA0125C3CD596C05D2E /* index.html */, - BA8A39A2111DE6DDD616D0A0192059B3 /* index.html */, - A9105993351B518F2F709C055078C07E /* index.html */, - 6CAC8498ABA3BA133474A0CC33E80D90 /* index.html */, - DA75FC1D03B0B60B84010078BDB7792D /* index.html */, - 246004BDE0FECFDD59B74E08C234B429 /* index.html */, - 9C0ECE33691024DEAA081F6CF1F069FE /* index.html */, - 2ADF45FAA8B11747DDB2B9D1EB35C4DB /* index.html */, - 29E48A65294AD6C617566B675BB9BEDE /* index.html */, - 7143152F51DE487EC679F45E1F248022 /* index.html */, - DF9E1F8E2BF92E9CDA2B9A00C4542BA6 /* index.html */, - 7AB8146421AC2AE715350FEEF54E9DED /* index.html */, - 42D6EB5E429B57D86D6B48105CC646B9 /* index.html */, - BE6E27B44A125457E97151F227FAC554 /* index.html */, - FDCDFB88759B83C055534893B3F3C4B1 /* index.html */, - 8E6A01D7FA8F6CC51BEAB495A1E74385 /* index.html */, - 5B214AE3245BB91C1F684AFBBE181B56 /* index.html */, - 3D729C2E259C455E97114E1374D0D26B /* index.html */, - 53E085808B9FE061B3270A00CE52CF41 /* index.html */, - 9133A879A0AC2B82FB0A5901D95241FB /* index.html */, - D8B9CD350A288C5C6010CFB3B05EDFF5 /* index.html */, - 48C4EBAB970CA27A4A0B82A7A974E713 /* index.html */, - C5794F4F6E5DC6FDD8A77369C2C45A0B /* index.html */, - 6960818DBFC627A010041700D0684DC3 /* index.html */, - 14EC71CA06DBE53ABF53B327CE4E045B /* index.html */, - 93399B29937C7348ECA47578D54642CF /* index.html */, - 9CB9849D3EF95A7820CA07D4F0031BDD /* index.html */, - B395D1AB9E43565D34598F3D7B269B51 /* index.html */, - DC81CC75ECEDDE66BBC8FD1EC45E0D75 /* index.html */, - B65073C4345C5E9E0B1E3777F173631F /* index.html */, - C4434599730EEE7526E20BC23C7A7290 /* index.html */, - 1D128D1E9D6B8336A25E863B2C677BE4 /* index.html */, - BEB8D65A263ACCFDA1702DFD756DE644 /* index.html */, - C4709EE3779EA96265559627B2D21372 /* index.html */, - E230AE7F2DCF28BB747C95FABD8A22F9 /* index.html */, - 9428BB5ED553543E723D2E54B74DB2F7 /* index.html */, - 37FAFBEC023B0CA81C5288909AD31A10 /* index.html */, - D03004919FE26C9E7AFE94BDB0F3AD6A /* index.html */, - 13698D79FCA85308015B90EACAB951D5 /* index.html */, - ED45FD129D5A081F10116D7A0603929E /* index.html */, - 5AEEA577D6093D4430A103EA67455E57 /* index.html */, - F0317C3DF2AE867ABC5FE3A791C2D313 /* index.html */, - 146E6E11AEB2315ECDE767C10F21BF7C /* index.html */, - 9BC32FCA4A512F990163AF2C4A7120F7 /* index.html */, - 87DA794E346F40079A7F56A432939D8C /* index.html */, - 2F9E177A98B1700FDAE3DBA52F2A7CB9 /* index.html */, - 5DE83B85CD54B7A29CBCD31497117DEB /* index.html */, - 4B0FE8D2B09B1648CC4F1C8104AF0522 /* index.html */, - 0F27CD797365D4637719231685EF34F5 /* index.html */, - 4F693E5F13636C70CF99FE522E7C1360 /* index.html */, - 9A53F0FC55942B469745AFDE233634C9 /* index.html */, - 5BBCF4CCA5CA51D0C0EB9F6F49E21514 /* index.html */, - DEDAE0B70E860908651273B892553588 /* index.html */, - 27C51442F4833B9C3CBBE1E244CBA5D7 /* index.html */, - F06772B4A099F0AEBEB566BE41091701 /* index.html */, - 1B6197A3F82D122297F7CF9B43868DB8 /* index.html */, - F19A80D3F92B37B141E44B804FDF088C /* index.html */, - 9AA3F2C0DE0F80B7568B61D5415FF0A0 /* index.html */, - 163E18E41F4844C9D3FA22F710A78283 /* index.html */, - 67BCF6180F1E6FD48C18C414047BB52C /* index.html */, - 694890523085422027DAA817CB7E0D00 /* index.html */, - 33B14343B2B49E020235A8BB5175AF4F /* index.html */, - E3E6FE6A7699F1679747DED29F1D3FC5 /* index.html */, - 386C95B9DCC37C4D8C7F48BCBD3D8642 /* index.html */, - D3B6AB01B8D404EB6DE83DE4D270BDAE /* index.html */, - 50CBDE029FE92D23DFCAAE9BF3D85AAB /* index.html */, - 1BF6192FE9FB6D874868C954BB47697E /* index.html */, - EFD1BA95668611C0DFDEBDB61D3F10DF /* index.html */, - 73FDA0C4C034EBAE7434BCE4A09470D1 /* index.html */, - DF5BFD982C750FCEC28A1E11A8F87CBD /* index.html */, - 696C13655028E87ACC578AC32A7A71F6 /* index.html */, - D3FAB833162D59A7BF529651C7AE864D /* index.html */, - 6FE273F01578B4692D33FF8A43984875 /* index.html */, - B98A10B19216831A2C1110FBBD97DBB0 /* index.html */, - 6E98A4CE3C8B249C4046A2E5D2D475DD /* index.html */, - 5DEA4261311F9C25BBEC66E3452DCEE9 /* index.html */, - B2D5CA9BAD64BB87B6E272F7189FC917 /* index.html */, - 6773FE07689BB4AE9B02CE63797351BA /* index.html */, - F169B385B66B1C9D2A4CF007D1A9674E /* index.html */, - AD5694554C5A4AEB731F5872D67B94D3 /* index.html */, - FC482826AC8A28F29757E6D6A268A179 /* index.html */, - A373E8065B3CF733FDA0AAE7316CB90F /* index.html */, - 8DEA7476BFCCD58DF41F6CA1D10EDA8A /* index.html */, - 284E7F9DE2D4E2643921E346E9ACA153 /* index.html */, - C26913D21FF290F2526B7542B8ACD3F7 /* index.html */, - D19370EDA1C3DD079C541FB35DFDF295 /* index.html */, - 30D76BB0CDBD57547449C05581F6DC02 /* index.html */, - A27BD0F64D2FABC31A99A80D742843B9 /* index.html */, - CEB55ED28EE8746F73A324C0873B4E24 /* index.html */, - 801D5518F74DAFB68C63C10F0429C145 /* index.html */, - D7856F403D4004960F5F6E70559B3294 /* index.html */, - 19CD2388E7FFB1FC9E86E1D34FE443E6 /* index.html */, - 392E09C949486860A2EC1612335AB651 /* index.html */, - 1A4DEE7B9495400669C457B4051D1DE6 /* index.html */, - A1CAD71B0749C1D4361536B9280C4007 /* index.html */, - 14F7DF259A32506D8F45EA4E9EACEE38 /* index.html */, - 190202883FF8C67EE722976759F0FC9C /* index.html */, - C94B62F9283AF26641C6E8D7FC2941CE /* index.html */, - 1FD2173C4497DFDB3BEE9F33462F0AA1 /* index.html */, - F941539E978B95395BD86153F928249C /* index.html */, - 4DDA4120973A0DD86FB55F8C4AFF3B93 /* index.html */, - 3626F883157BA1B17F5EB0659B9477EE /* index.html */, - 71CC532F951A094255C4B8C9CA5AD633 /* index.html */, - B7643E0ED1BAC794CAD058BC81DFAFCB /* index.html */, - BF4543362822656B6CD682CB23A93A53 /* index.html */, - 9DC816B8592A400A7EB4CEACB904A7FF /* index.html */, - 48227498AA11C2C19252620F60303188 /* index.html */, - 82D83B3EA9397FD92122F63D954C5BCE /* index.html */, - A9F41B36F39282E0D2EA37809E94E3DD /* index.html */, - F0BABD7B63DE0112DE842D6D9417CA63 /* index.html */, - C5CD129A3295921E07FD8C35DDE58D76 /* index.html */, - EEC8DA27C926CB5D6A888C378A6CE337 /* index.html */, - 06FC49553932E0739D1FBD31EE065CED /* index.html */, - 31CAD4FD236DAC96D8AC2AAAAE317362 /* index.html */, - A3CD5CED787BD6841D15224D34B43CB0 /* index.html */, - 91EECF1FBB7D29B30752632097DB1512 /* index.html */, - 9D6275CEB5033FD5DF17050FC3338B3C /* index.html */, - 3599B96F6E4FF857C5D54EDDD4F707F8 /* index.html */, - 28C26FC426B24530543E79D73BA32879 /* index.html */, - 5665025FA37B257A77C1A0FDDA335EAD /* index.html */, - AABF9DA88065B03F1805FD6B803BDB1B /* index.html */, - 613559A30538E836220F43794E38125D /* index.html */, - F06ACB181B51C8E5FEFC3E38615FAE85 /* index.html */, - 9C6B7BF6CED0B4D869A5F5B8B8FB4937 /* index.html */, - F753F73FB0D5EAA5486016131A790E72 /* index.html */, - 3F9E935BC5290DC00D76B7A589FC8963 /* index.html */, - 42F81A72B6757FD9C564B2D3217DA117 /* index.html */, - 5CFC10E368B8B4C09D82E48BCF1872BF /* index.html */, - 19EEB1235D32422657D59B1F99BFF617 /* index.html */, - 713D12DADCC1016B0E07F3EEB5E0DEFA /* index.html */, - DFC74125D5DB43B298583C3C7A5776B8 /* index.html */, - 0E27869639D622CD27B490612D4E5677 /* index.html */, - 5E53FD0EE6C78BC8A24ACB0C763EDCF4 /* index.html */, - 40542B913CED07D9E63B1B468AD59D5C /* index.html */, - F0B5573A89AD6778AEF857F8F7696FDA /* index.html */, - 52CE9A84A349B07930F066A6C6E24148 /* index.html */, - 958FF745D6F07DE8B62138D238035C14 /* index.html */, - 9471EBED103A07F219E694BC7A6B25BF /* index.html */, - E5DBFDF2FDD818F544BF64141EE38CBC /* index.html */, - 2BA1EC946411E7BE15C95D5D4A8E84E0 /* index.html */, - 584A107CD9C04214251CCCDE7C4423D4 /* index.html */, - 3D76A84B6D75A1FB2947167EFA3774E8 /* index.html */, - 6DB5329FB72DD35C6F5924DBD6639EAF /* index.html */, - D1A60E32E1C9612A4528D6376804CEF4 /* index.html */, - AC6C489D85841DFF6AB6A2A41DC3805D /* index.html */, - B53937502C1E89A5E75C096480F205C0 /* index.html */, - BC8864B1E9F1D6FA4EC4C295E508CE11 /* index.html */, - 7CEFB337781A02E18A2DEB4D9A765EFB /* index.html */, - 6173B726D2A00FA10716B6748915A946 /* index.html */, - 069669AC78533B61E64F1D1191EA2B6F /* index.html */, - B70F29376E147600449B1B9BC9FBAABB /* index.html */, - DC9A5DB7C2B3CDAEAF3E4E659C96BAF9 /* index.html */, - 749344E8F528E654815705F5AAAD3F9F /* index.html */, - AB6C90DDFCBD716EC678A475D268E9C8 /* index.html */, - 9FC8D482E58D41DDC5843AF2AC3B8343 /* index.html */, - 1E749428BACEC4ED35CB79B90D353866 /* index.html */, - 3934F8591083D7150C7613D4935DB685 /* index.html */, - 44518F0D701490B917428E68C0ABAACC /* index.html */, - 9101CABDCB4BA5D128E395686E5C9281 /* index.html */, - 2017A512941D435EB2773DD3981C99B7 /* index.html */, - 8C77FB5E7455CC5CF4119B9761BDD54A /* index.html */, - C467A05E0A488D5DCB470FDE013E03CC /* index.html */, - 5CCDD7F9DAE3718A99BCB7992E9CC442 /* index.html */, - 7D6E9958851EF6DA2D52DAA9D2218D24 /* index.html */, - 44AD6FBF2C5ADDC5136D8587BAF7A02E /* index.json */, - C068777ADDD82838D1AC7ACD2EB66BB9 /* index.aa320932.js */, - B879DB6158A8CAD730C6077B02600D0D /* index.d5b499b0.css */, - D7C70EB8EFD62EB4336C0DF66987AAAF /* init().json */, - 036B9B748371E5AEC0FC0ACF86B1BEDC /* init().json */, - C5497D9858E71DBDA7D6FD46719E5DB0 /* init().json */, - 09066C56B6A274471EE3000C357DEC4B /* init(_:).json */, - 78D2403E5EC63AE7A34C4FF42D2128E0 /* init(_:state:).json */, - 409DAFDB94DE8691D251AD03486DE519 /* init(data:interval:delay:isadvertisingwhenconnected:).json */, - C31570F817113472CD0E86B4685E941F /* init(delegate:queue:).json */, - 4AE0F903927285383FB96C922983E6AE /* init(delegate:queue:).json */, - 442CD322BE28AAE668631F1680EEFC60 /* init(delegate:queue:options:).json */, - 6E994FFE220195E4162A31B2B8C5BC86 /* init(delegate:queue:options:).json */, - 4BFE0E16D6EC70DDF2FF24B05A8AE742 /* init(rawvalue:).json */, - 74759577484DB161757D189A126C6056 /* init(type:).json */, - 13D2264CD8FE9530AB32AE70BC80C2A1 /* init(type:primary:includedservice:characteristics:)-255jq.json */, - CCA7EBE4B3DA9FB0EF1D3E421C56E0C9 /* init(type:primary:includedservice:characteristics:)-2pj4o.json */, - 3ACCF4D8EE9FFD21323F6C4D126D3387 /* init(type:properties:descriptors:).json */, - E1AEDBC1D476EB90D8D0743DDBC7E9D3 /* instance(delegate:queue:forcemock:).json */, - 55991BEE557842949D848464E1A9A284 /* instance(delegate:queue:options:forcemock:).json */, - 65ABF2015C71F6BFB586D64FFEA69EF5 /* instance(forcemock:).json */, - 8E3CDF0DB7B62228023F6ECFFAC5BA60 /* interval.json */, - 7489387E4F685EC90D973C1547C3EDF8 /* isadvertisingwhenconnected.json */, - C9D61654336965D07D9FEE75A42A14B6 /* isadvertisingwhenconnected.json */, - 361B5AD88A1F8EFFE1B546A68D8E9C01 /* isconnected.json */, - 450D2D3366F69EF3836838FC32A6982A /* isequal(_:).json */, - 79986E928948510DAACDE16286C9DE14 /* isequal(_:).json */, - 5CE2377EAC8269DB8D92D3647AE16EC5 /* isequal(_:).json */, - CDCA5DF8CFBD472BE823B3D3189147E0 /* isknown.json */, - 7DC0EEEEBCD334D01FA1AF2027D4C4B1 /* isnotifying.json */, - 731AB44F3D1C52D583676F9D4BD9203E /* isprimary.json */, - 6145529826FD81256C963EA44FDDB810 /* isreadytosendwritewithoutresponse.json */, - F3CC5BDB4BED6F6B23BC3191F74A9C17 /* isscanning.json */, - F72B6F616B8798B58A98B263B5B125DC /* isscanning.json */, - D15EAB7616D2507FEC2AA3E98C9EA24F /* known-issues.json */, - 3629C9EB340F9FCEFE6FFCE4B513D2ED /* LICENSE */, - 5B6DE252D0A4896DC99E148A67B60011 /* maximumwritevaluelength(for:).json */, - 724EE9C63928792A61E008947F13940D /* maximumwritevaluelength(for:).json */, - FBE6CAC1889BA30C96ED42CAC5A072F7 /* maximumwritevaluelength(for:).json */, - B4DA0FB38342BFE3B48249B189D4795C /* maximumwritevaluelength(for:).json */, - 533DD98ADCE50F2C9639620D8597A318 /* metadata.json */, - 3CFC1B61F3C18565797DC74CD73264A5 /* migration-guide.json */, - 42C31A8EE4B1C4A9B6A85BFA96766FD0 /* mocking-peripherals.json */, - E346D31696F14D2E0F46ADB2E26E2640 /* modified-icon.f496e73d.svg */, - 969AF0B8E43DF347C8AB9D4FC553F874 /* mtu.json */, - ACDAB14B00636E02B0FE8C8AF92A6CFA /* name.json */, - 75F2D5CD80BDAF914BE1DA8E4320F0CD /* name.json */, - D8589784F45014AFE403380EC6700C80 /* name.json */, - CE301C725F1DF1ABA99DFECC14B33A57 /* name.json */, - 8D0B2E845014AC32B4502828E5D94356 /* name.json */, - 5B9DA7DC7448FCE8E8B072DD3DA79C00 /* near.json */, - 8C1A7ED61C704BA0C3544D05D4300D97 /* no-image@2x.df2a0a50.png */, - 44CB44C6C7E79904084980D446B3EC31 /* openl2capchannel(_:).json */, - F05B8DEF1D407C8A5F936CD9DA87490E /* openl2capchannel(_:).json */, - BF567803B6B4677CB9C8C7EFA136B186 /* outofrange.json */, - B08F9EA61FBD079FAD9888A36C9BA2F9 /* peripheral.json */, - 376DEC45D76E03C05C5BF6E4555CB085 /* peripheral.json */, - 7A06AB6F0E8D8CD97D77A2BE58C25D4F /* peripheral(_:diddisconnect:)-37v65.json */, - B3A994D228E943E4B2C6C4577A83E940 /* peripheral(_:diddisconnect:)-9slvl.json */, - B97CC0EF613383F0547E116AB2BDAD97 /* peripheral(_:diddiscovercharacteristicsfor:error:).json */, - 04FDF34E6E04D1F644E2AAD052270B98 /* peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc.json */, - 8CAD2AA6F6595F1D6B7EF1E4A7868366 /* peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk.json */, - F18CEFFAF6C57AB472C4C4E6E0A8194D /* peripheral(_:diddiscoverdescriptorsfor:error:).json */, - 1657FFEC8E30A4DF6E2D39E6A70528AD /* peripheral(_:diddiscoverdescriptorsfor:error:)-240qo.json */, - 2B2D331E128D51511C9910933B1E443C /* peripheral(_:diddiscoverdescriptorsfor:error:)-8554j.json */, - 82E8D10C48B017AA9CC0CBC3B535F902 /* peripheral(_:diddiscoverincludedservicesfor:error:).json */, - AC0775DF44BF845BE2E04C55DA69C9AA /* peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q.json */, - E94191D05800344DF0C60AD5CF78FED6 /* peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr.json */, - 293DF5895DB815F1CE654372AFCFFCC2 /* peripheral(_:diddiscoverservices:).json */, - 828989049FC907B5E2033936141E5037 /* peripheral(_:diddiscoverservices:)-6mi4k.json */, - 86BF6DA4D202E6B7241025CDF049EB37 /* peripheral(_:diddiscoverservices:)-7annk.json */, - 57CC529B9232C8D00C1C2453B9AB0FA2 /* peripheral(_:didmodifyservices:).json */, - 78A7D19C10FF56725CBCE7C59ED38738 /* peripheral(_:didmodifyservices:)-1pvuz.json */, - BEDEF3DB74EBAF1C81FF6E988167273F /* peripheral(_:didmodifyservices:)-9i6xy.json */, - 8A93C32B67C4DCD00ADE3EBD49E1981C /* peripheral(_:didopen:error:).json */, - 168073D762DF04C290AEA68267459BE9 /* peripheral(_:didopen:error:).json */, - 7747224C06BCE20A19B64ED367176E31 /* peripheral(_:didopen:error:)-8ac1d.json */, - 9E7AEAAC1F3B8A6D733BC1479A0EF5AB /* peripheral(_:didopen:error:)-tise.json */, - 855AEFB24AE4E79637821353BD12A8BF /* peripheral(_:didreadrssi:error:).json */, - D1918A2D5E1F6A8FA5102CA9C544F773 /* peripheral(_:didreadrssi:error:)-7xmo2.json */, - 04B2102F809937DB66B2DECA56512EC1 /* peripheral(_:didreadrssi:error:)-7zu2o.json */, - 9986B5A6ECFD950BA534CC5AB6A30ECB /* peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal.json */, - 64E08615368C4D4A7B7E5EBF93D445BF /* peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr.json */, - 12E836838CFE6AEFF203F7A7C7E66A33 /* peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9.json */, - 5340B074803DF0462EFD021D4974A95C /* peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5.json */, - A4597A0B3575F8777552E360E4AD1063 /* peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav.json */, - B7B1BD2A6E5481E0C2A29C85D7AF2740 /* peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of.json */, - 309538009BBBAB9B759A74C9E61ED941 /* peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13.json */, - FEC49C16C7CC930F924DE09AD3866CC6 /* peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l.json */, - F6F1FE2F1A731A332196F0F18C723228 /* peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5.json */, - 3777EB8F926A93F6CFAC6EEA5B7B8685 /* peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2.json */, - C888B8AF7DAFC96B2219B2AD37681D69 /* peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs.json */, - E233B9C480E5423B46EA375CC77D7E8F /* peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us.json */, - 8469162D0C85D0B34076B0331BC3331E /* peripheral(_:didreceivereadrequestfor:)-3sqgp.json */, - FB71910F2FCCA9DE1759336532667008 /* peripheral(_:didreceivereadrequestfor:)-47a2c.json */, - 39D418FAAFD0BFD455007C70BE1C27C9 /* peripheral(_:didreceivereadrequestfor:)-5c1ls.json */, - E5B2FE5425730916D65AFC416D3F2568 /* peripheral(_:didreceivereadrequestfor:)-6p4xw.json */, - F59FAEC1C3D41A2FD0E6264B2E75B927 /* peripheral(_:didreceivereadrequestfor:)-6tewg.json */, - 3F100C463EE7D9AB1558D23B88765BA4 /* peripheral(_:didreceivereadrequestfor:)-7sk6x.json */, - 5BB3230F2EACCA14D5201154FB6711CE /* peripheral(_:didreceivereadrequestfor:)-9aw73.json */, - 0E44E0236CF2FD90E11F1481D863031C /* peripheral(_:didreceivereadrequestfor:)-9ybod.json */, - 24B5F04A20FC3C8AD40CA08134D8481A /* peripheral(_:didreceiveservicediscoveryrequest:)-1p1el.json */, - 5838A4472D98AFD92093FD98F8C910C3 /* peripheral(_:didreceiveservicediscoveryrequest:)-pq5f.json */, - FC5528E1202E3D9DE2D3BF8CCF56C579 /* peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i.json */, - 37C92166B49EA4F6DD203D2CC5675B37 /* peripheral(_:didreceivesetnotifyrequest:for:)-8yagc.json */, - A59983F102678BB97C40F5B9785C3830 /* peripheral(_:didreceivesetnotifyrequest:for:)-9r03q.json */, - 5798DADAD3103E142E30DC1A0341DEC5 /* peripheral(_:didreceivesetnotifyrequest:for:)-jbut.json */, - 3A092389010EC99FD8415A02C1C70986 /* peripheral(_:didreceivewritecommandfor:data:)-14ln0.json */, - F1C46D97241B0A16048590ABCD5274A2 /* peripheral(_:didreceivewritecommandfor:data:)-2v5ht.json */, - DB4F706DD16752A07369E178C893C3E0 /* peripheral(_:didreceivewritecommandfor:data:)-58pcn.json */, - AA873732AE8F49F86FF1A74B04D86874 /* peripheral(_:didreceivewritecommandfor:data:)-65o4m.json */, - 8C93DD43E4E37B9CCF807E803E5F425D /* peripheral(_:didreceivewriterequestfor:data:)-23hwi.json */, - E8012C4F536800822A67473364C0E8EF /* peripheral(_:didreceivewriterequestfor:data:)-2hi9u.json */, - 9BEEBA6C8B108FBFDADE897E2BCF2B3A /* peripheral(_:didreceivewriterequestfor:data:)-3nc1b.json */, - D2E68CEE9EF4939784845BC767CC847F /* peripheral(_:didreceivewriterequestfor:data:)-6plt7.json */, - C40A22C79A95C71D178C849A8FD3ED13 /* peripheral(_:didreceivewriterequestfor:data:)-753gh.json */, - 1BBA1C8DD34EC69FF18A2629DBE014E1 /* peripheral(_:didreceivewriterequestfor:data:)-75hfw.json */, - BE55A9A060C56305D204B13563101E70 /* peripheral(_:didreceivewriterequestfor:data:)-81sdk.json */, - D878B35FB28627E5348BA1023B9FC968 /* peripheral(_:didreceivewriterequestfor:data:)-yspa.json */, - 6EA3D7585CCCDD3CE741155BD93A5778 /* peripheral(_:didupdatenotificationstatefor:error:).json */, - BF2876A851B14E79BB6F915AB7B450CA /* peripheral(_:didupdatenotificationstatefor:error:)-4aash.json */, - C379E672D84DC11D208B2E96420C4B94 /* peripheral(_:didupdatenotificationstatefor:error:)-5tl1y.json */, - 218C99DC3C65A6C706694032E2FFFBF8 /* peripheral(_:didupdatenotificationstatefor:error:)-9ryr0.json */, - 4E067B543C632948D2AD97B9A5589149 /* peripheral(_:didupdatenotificationstatefor:error:)-nipu.json */, - 3B1F8DFCE4318A30A38C2DD1B3D0CBA4 /* peripheral(_:didupdatevaluefor:error:)-2bu3j.json */, - 38943396449740F10302C9FF0950F6B7 /* peripheral(_:didupdatevaluefor:error:)-2xce0.json */, - 44DFE5AEC16DBE071E3CF1B9D3B5D9FC /* peripheral(_:didupdatevaluefor:error:)-62302.json */, - BA7E000A87B98B362DB1C90D3CF8CB35 /* peripheral(_:didupdatevaluefor:error:)-6bw1b.json */, - E9C087015B099555B064146A4CF18515 /* peripheral(_:didupdatevaluefor:error:)-73y6k.json */, - EB4F29A00075D48C7B1F854CA44561FF /* peripheral(_:didupdatevaluefor:error:)-7ocld.json */, - C9CB166F6C95B9F2AA652B287CB30083 /* peripheral(_:didupdatevaluefor:error:)-88um0.json */, - DB4C5F45719767DACF5F503002BE8668 /* peripheral(_:didupdatevaluefor:error:)-nw91.json */, - 1D4F78831A01F18FF2E1B137E95CE122 /* peripheral(_:didwritevaluefor:error:)-2aalw.json */, - 578F2A0D46D8180EA83EBC864AEF45FB /* peripheral(_:didwritevaluefor:error:)-2fdon.json */, - 5B0DFE6F51C45B6D2223EED39C072B8F /* peripheral(_:didwritevaluefor:error:)-2gkk4.json */, - FD87D8129455E816B9E5E44F645BBAE4 /* peripheral(_:didwritevaluefor:error:)-3ghoi.json */, - 4B6E505F4907EBDC3CCECCD497489757 /* peripheral(_:didwritevaluefor:error:)-86kdv.json */, - 7B2B06B25EDBDEAEF6E8971DF2832CBC /* peripheral(_:didwritevaluefor:error:)-90cp.json */, - A621BEA255C46D7C49D0BA8FE13EE990 /* peripheral(_:didwritevaluefor:error:)-9twsk.json */, - 78EACB6FE26B29F704F0DFC5494A232B /* peripheral(_:didwritevaluefor:error:)-eh78.json */, - 70BFC2B782DC0B0DAEC02ED851E51178 /* peripheraldidreceiveconnectionrequest(_:)-2bpww.json */, - 1E409006A29AB194F3667FF366E3DAE1 /* peripheraldidreceiveconnectionrequest(_:)-6eqgz.json */, - A7089E3FAAFFCE53AAE0552056BD4917 /* peripheraldidupdatename(_:).json */, - E411E47CBB24A7E3F8901B664B18B73B /* peripheraldidupdatename(_:)-4r9dx.json */, - 5580C9A2062642594DE4F0FB65FF5E44 /* peripheraldidupdatename(_:)-klf8.json */, - BB4A4BCC9FFAB1725AF152EB57E9879E /* peripheralisready(tosendwritewithoutresponse:).json */, - 8AF67DFAA371C4BD06F11EDDE402AACF /* peripheralisready(tosendwritewithoutresponse:)-1nvtl.json */, - 6444C8E61AC72DDF9D8C731AC3764C23 /* peripheralisready(tosendwritewithoutresponse:)-2cz0i.json */, - 4B98DBBECAC038CED4B5E82CF16A7C1E /* poweredoff.json */, - 6381652162719EB9A2160BDD81A4D07A /* poweredon.json */, - 23E4128E289ECD2FFF52F8F956EF04D4 /* properties.json */, - E2DE4C773B626D2594E810517A455DDC /* proximity.json */, - BB69112B39306C41316BD24687D42516 /* rawrepresentable-implementations.json */, - 1C599CDD18AB9B7675F6C04C60576A3B /* README.md */, - 54DF4119E24237300AF03D2D6D293325 /* readrssi().json */, - 1931C92E3F7349795CF778C64345B750 /* readrssi().json */, - 7564164C54F31D1CCB73084CE579C983 /* readrssi().json */, - 2E3C568B18A85011C43E4B169F971001 /* readrssi().json */, - 4076B85E6D1B2CDE35AFB4BA5197B216 /* readvalue(for:)-1hqxp.json */, - 6D5C3645F7031A72F39AF3AA0E2E324B /* readvalue(for:)-29us6.json */, - 5F854D618368300FE784676EAE9064F6 /* readvalue(for:)-3xyb1.json */, - 95342A36C3367080FD87F17F012641B3 /* readvalue(for:)-5cb2u.json */, - 95E1477256DA857016574B2462D81B30 /* readvalue(for:)-65lsz.json */, - 6D6211C2DED7670A984E3782819285B5 /* readvalue(for:)-9on43.json */, - 1249EBB867C36EC5C0BEF9C9FBD9A64E /* readvalue(for:)-b1qu.json */, - 27C0C0F9E216CE28875E9C441AA01AD1 /* readvalue(for:)-kuta.json */, - BF493603B36CEE738A93A1235892AD35 /* reset()-7utrg.json */, - 5EA8770327E28F1C756BE6A8B8B11D75 /* reset()-8n6fz.json */, - D5D0CB50AB7CAE10CD42A6ED3D988B62 /* resetting.json */, - 22E502451E458B1C4F93232ABB91A1BE /* retrieveconnectedperipherals(withservices:).json */, - 917947D9C4AE3C77CAB3B5CDB19C0971 /* retrieveconnectedperipherals(withservices:).json */, - 266EE853CAB93FA1D1C2FABB4738BC2A /* retrieveconnectedperipherals(withservices:).json */, - D2A4D733D662DC2F376396D35BD3C20D /* retrieveperipherals(withidentifiers:).json */, - 421198D3018A7F734688751779DE938C /* retrieveperipherals(withidentifiers:).json */, - A4317AF566E98C1D7A3643B4B088AEB4 /* retrieveperipherals(withidentifiers:).json */, - 896592EEC413CEE933BBDFA79B2B5574 /* scanforperipherals(withservices:options:).json */, - AF22DEB871FB574A6DA162A86928B3E6 /* scanforperipherals(withservices:options:).json */, - 2A1CB951A152FBC5F70E1A0E143CD281 /* scanforperipherals(withservices:options:).json */, - F4C86D2ABFF37148DC228727A324A8F1 /* service.json */, - 81C5F92BD30B3AD670B5D3A3B5B56434 /* services.json */, - 6BB2B965A8EFAC97B3F9DAC9ADD7AD57 /* services.json */, - A3EF58899864CE76F10528691C0B6D1E /* services.json */, - 4FF2808EF1AC00022368028F66BD5D92 /* services.json */, - D804E4A1A93DB84D38632DA8EECA9AB1 /* services.json */, - 04CCBFE68A8FB3E27FC77B1C2E16DFA1 /* setnotifyvalue(_:for:).json */, - C3DA9488D906BFDB3298E818225308C6 /* setnotifyvalue(_:for:).json */, - 23A19AEBE6F8481C1CB1C60A236F052F /* setnotifyvalue(_:for:).json */, - 9E6DAF04881939D1086D3860B8267C14 /* setnotifyvalue(_:for:).json */, - AB8FCA73934008D8C1B71A48956CD310 /* simulateadvertisementchange(_:).json */, - 79FE44E7CFCD4904AF1D3A227E01EE98 /* simulateauthorization(_:).json */, - ED149EF3896B9CD000AF50EDF6049CED /* simulatecaching().json */, - 8BA7B7565C232B5CAA87542E1214A34C /* simulateconnection().json */, - 3F1D1C98EFBAE4A5DDDDDFB4B7BA94C1 /* simulatedisconnection(witherror:).json */, - 37556A783F6A86976061603138C4BA5C /* simulateinitialstate(_:).json */, - 12EDB871AC5B69137E4DB84DF794CAD0 /* simulatemacchange(_:).json */, - 83D572086ADE6D0BC958ABAD0BA096F8 /* simulateperipheral(identifier:proximity:).json */, - 91C268C906CCF5E6BC763EFE39D356CF /* simulateperipherals(_:).json */, - 2E44ED99300CB2A779723C0EC2387FBA /* simulatepoweroff().json */, - 499BAEA3892C85F53ABC6BB37CE61CA7 /* simulatepoweron().json */, - 84AE4F6D434EC675A912C476DD84B47A /* simulateproximitychange(_:).json */, - 5457E83FEB5359558E7040192DAC9996 /* simulatereset().json */, - 56CDC7D1DE2A94889E4C2416C7A5E9EE /* simulateservicechange(newname:newservices:).json */, - 4BC559B74FD07B5ECFEBDAC57ACD9920 /* simulatestaterestoration.json */, - BEF54F5D0C7A1CE869180393A13141D4 /* simulatevalueupdate(_:for:).json */, - 308EE36497791FA7B38B7B41B3E8FE6F /* simulation.json */, - 6119E29AFEE7996BDE3AE1494D5CF762 /* state.json */, - BBEBAB43C2551DB65169927E80588F54 /* state.json */, - 299ACE0D05017FD66EFF3766FAE9D916 /* state.json */, - ECF898E494C235DDA0DBEB9BE1BD49AF /* state.json */, - 978E48ACB907AF65DDCC8D5A4B35A345 /* state.json */, - FE38D39D9F2D4B22A2BDE19C66931A05 /* state.json */, - 3AC26891F03F0DE5524E9A1EFB4EB35A /* state.json */, - 8ED157F0FFC65EC80A1F18039369D3C3 /* stopscan().json */, - 8953672DAD096275CAE7518AFB3BE4B6 /* stopscan().json */, - E9B6D16C6380348107EB722C4FE29C7A /* stopscan().json */, - 4411F7FA8408C8F685BA5198C28AD40E /* teardownsimulation().json */, - A00118B92BD11E0324B1879017174BB6 /* topic.726a35dc.css */, - 281C8022D5A275C9108E57A9958C2F09 /* topic.bb695832.js */, - 7308F1670B145CAA514BBF5308F4061F /* tutorials-overview.2a582c39.css */, - 10951710A62932BA836B813C3994D651 /* tutorials-overview.2cadc732.js */, - DC6F29890956067CEE16E484785969D8 /* unauthorized.json */, - 386161133E4C003011ED28D78ABFED6C /* unknown.json */, - 8E2AECB255AAD2AE69774A29D1074A4A /* unsupported.json */, - CA491DE5D27ACF5AA0C6F94E1F50E1FA /* uuid.json */, - AD07AA5D6821FBCC7F1F880F193B0B93 /* uuid.json */, - F255107079A2CC6EC1E542DE1EDBE40F /* uuid.json */, - 8923E90C2D9E5C85B68D36CFBCC68FDA /* value.json */, - 2021153E6F364AF1FCA3048074E6C42A /* value.json */, - C542C78FFF2E59546D7A27E265645F49 /* willrestorestate.json */, - 8E23A2ACD3474D32F359FECAF3E30ED3 /* writevalue(_:for:).json */, - 6950EF1634C0F91EA7FCEF62C392570C /* writevalue(_:for:).json */, - 9436A733C42F0F80F408C9AA97C0FE7F /* writevalue(_:for:).json */, - B0F81DF00A0618E82F9A895F486FB070 /* writevalue(_:for:).json */, - 58E433026B2CC167CCCEA394E60CBE2C /* writevalue(_:for:type:).json */, - 53282A412537332A8591BA09436A3533 /* writevalue(_:for:type:).json */, - 2808D57AA7C724ED7172F5509B596362 /* writevalue(_:for:type:).json */, - DEDF8FA3AA39FB643B7FCB725451FD1B /* writevalue(_:for:type:).json */, + 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, ); - name = Pod; + name = iOS; sourceTree = ""; }; - 78F1E97CBA31CFC06DE9857FBC265263 /* Products */ = { + 64B0F70FFDC0CDCC627167EA303D0628 /* Support Files */ = { isa = PBXGroup; children = ( - 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */, - B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */, - FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods-nRFBlinky-nRFBlinky_UITests */, - 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */, + EBB7873C3A9433A954AB79F157D860DF /* CoreBluetoothMock.modulemap */, + 5B1F8A700480DB04E376A96A5D16E728 /* CoreBluetoothMock-dummy.m */, + A14B4B0603B0B55E2BBC5C972A20DB72 /* CoreBluetoothMock-Info.plist */, + 30FA04113853DB205F4F940DC960DF07 /* CoreBluetoothMock-prefix.pch */, + 930F8FC27EC2A8FA2D3BB47D2F35C39D /* CoreBluetoothMock-umbrella.h */, + 85B1D09A64C3FA37D5C6AC2DBC147B10 /* CoreBluetoothMock.debug.xcconfig */, + 2C99E13C2E6B0E4B4E8A112D8998A43C /* CoreBluetoothMock.release.xcconfig */, + 542B4E8DC5D095BF492E2150101C8B3D /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */, ); - name = Products; + name = "Support Files"; + path = "Example/Pods/Target Support Files/CoreBluetoothMock"; sourceTree = ""; }; AEDF17C5AB34817EE4F87ADFB119F996 /* Pods-nRFBlinky-nRFBlinky_UITests */ = { @@ -1964,9 +306,9 @@ isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - E2A03D30817A86394041E2695AB26222 /* Development Pods */, + 3E19703E7C77FDA1AC9857C1714E06E8 /* Development Pods */, D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, - 78F1E97CBA31CFC06DE9857FBC265263 /* Products */, + 088E62683BA657E94911AE22A17008AB /* Products */, 3A45CAB5CC6B1759026B856C4F9A8654 /* Targets Support Files */, ); sourceTree = ""; @@ -1979,40 +321,6 @@ name = Frameworks; sourceTree = ""; }; - E2A03D30817A86394041E2695AB26222 /* Development Pods */ = { - isa = PBXGroup; - children = ( - F380B2DF6CDD5CB1DA6C0EF9B1EE0631 /* CoreBluetoothMock */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - F380B2DF6CDD5CB1DA6C0EF9B1EE0631 /* CoreBluetoothMock */ = { - isa = PBXGroup; - children = ( - 3522ECF198D574075D1DB9325F45888F /* CBMAttributes.swift */, - BF86F9927BF1569AC0977051B800CD6C /* CBMCentralManager.swift */, - C6BC272175EEAB868B3C836FE1E464A8 /* CBMCentralManagerDelegate.swift */, - 283565A9F9F63DD7F2077CC5415D80E3 /* CBMCentralManagerDelegateProxy.swift */, - B839746842E823D2048AFA14708C8592 /* CBMCentralManagerFactory.swift */, - A26C0B8A4A1964538387BF8EE66442EA /* CBMCentralManagerMock.swift */, - 1E5DD3F13FDDDA4E5C44F9E4619488E8 /* CBMCentralManagerNative.swift */, - 4060D508A0613FB1D622ABEBA8BF2FDF /* CBMManagerTypes.swift */, - 368D394EB1A2DB95A67913D13A597D73 /* CBMPeer.swift */, - 57F2DDEDF3EC5E277CABD8BB6429B2CD /* CBMPeripheral.swift */, - 9E4C084C61E67E48EFDABB1994D4F2F9 /* CBMPeripheralDelegate.swift */, - D8A9010FF8D44ACBAB03305712138ED7 /* CBMPeripheralDelegateProxy.swift */, - EB39A7FD52CD0D238094460E13988330 /* CBMPeripheralPreview.swift */, - 8810232EC80F2CECDEA4F384114B960A /* CBMPeripheralSpec.swift */, - D3375BF589F3DA63DE57DD0F5E6E3A01 /* CBMPeripheralSpecDelegate.swift */, - 3ACE06F6AFEC3C01B5C7306CF4644E71 /* Documentation.docc */, - 647DCEE57A5C790794E38F50659668B9 /* Pod */, - FF9C64D011F50F103672C94A1DD32529 /* Support Files */, - ); - name = CoreBluetoothMock; - path = ../..; - sourceTree = ""; - }; F63676E082B6EC6B5406B878027370CC /* Pods-nRFBlinky */ = { isa = PBXGroup; children = ( @@ -2030,53 +338,38 @@ path = "Target Support Files/Pods-nRFBlinky"; sourceTree = ""; }; - FF9C64D011F50F103672C94A1DD32529 /* Support Files */ = { - isa = PBXGroup; - children = ( - A80CDE966036F34AC33CEB663A92A5BC /* CoreBluetoothMock.modulemap */, - 7C2A6FFC9D0CD36A0F2077F88F9150BB /* CoreBluetoothMock-dummy.m */, - A288F2A0C20B3B967497ABD1E64378A3 /* CoreBluetoothMock-Info.plist */, - 3B6F88FC940B4EECEDB2430253C2476A /* CoreBluetoothMock-prefix.pch */, - D9B537A9C8B7A966031E6688585716D4 /* CoreBluetoothMock-umbrella.h */, - E6C02ADBCE2BEF0D1FBC28B419E3E303 /* CoreBluetoothMock.debug.xcconfig */, - C09609BE80BCC9F5A8E7C162F3F85205 /* CoreBluetoothMock.release.xcconfig */, - ); - name = "Support Files"; - path = "Example/Pods/Target Support Files/CoreBluetoothMock"; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 37595DE472A7D621170EE7A61294C2C3 /* Headers */ = { + 0F5BBB5E1C8D36227580FD5D4C056211 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - DB1D7F4C9BE1D6FDCF0A220A342702B5 /* Pods-nRFBlinky_Tests-umbrella.h in Headers */, + E1548D659124C3E56E05919DA3F1D662 /* CoreBluetoothMock-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5ADC3D9F8D972830A5544BF2D247D8FC /* Headers */ = { + 37595DE472A7D621170EE7A61294C2C3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C7BD3CB2879758D1502CBACD88395B1A /* Pods-nRFBlinky-umbrella.h in Headers */, + DB1D7F4C9BE1D6FDCF0A220A342702B5 /* Pods-nRFBlinky_Tests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 66A9B9E1823B88403ECFD0380D21D452 /* Headers */ = { + 5ADC3D9F8D972830A5544BF2D247D8FC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B558667EDB25B2544F7DBEAF79FE7E2D /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h in Headers */, + C7BD3CB2879758D1502CBACD88395B1A /* Pods-nRFBlinky-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 77516A28A4CC9340C59D94790B8876B8 /* Headers */ = { + 66A9B9E1823B88403ECFD0380D21D452 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 7D6038F446EF43672262960ADBF38F9D /* CoreBluetoothMock-umbrella.h in Headers */, + B558667EDB25B2544F7DBEAF79FE7E2D /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2085,20 +378,21 @@ /* Begin PBXNativeTarget section */ 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */ = { isa = PBXNativeTarget; - buildConfigurationList = EC57381206BCF65627E4E9926DA18978 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock" */; + buildConfigurationList = BDACFCD99AB7E8BECE9295C683075D8D /* Build configuration list for PBXNativeTarget "CoreBluetoothMock" */; buildPhases = ( - 77516A28A4CC9340C59D94790B8876B8 /* Headers */, - 98939D5E2E6E952115D4D61B9393DF70 /* Sources */, - 488FF9A5A4E81E05DF0FC25B54D85B64 /* Frameworks */, - DBE8A1D204006BDC340B06AB5B93E1E3 /* Resources */, + 0F5BBB5E1C8D36227580FD5D4C056211 /* Headers */, + 21EB30AD5AEF62EE82F861530AA8D5D0 /* Sources */, + 5578708761FD4A0A49F6E7F04C62A801 /* Frameworks */, + 5362D235293AE8E26A7245001FC885E3 /* Resources */, ); buildRules = ( ); dependencies = ( + 61584857F0A9E02DD2A6FAD4EE933023 /* PBXTargetDependency */, ); name = CoreBluetoothMock; productName = CoreBluetoothMock; - productReference = 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */; + productReference = 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */; productType = "com.apple.product-type.framework"; }; 7AC722D61390476FAC05FA5E388C0381 /* Pods-nRFBlinky_Tests */ = { @@ -2113,13 +407,30 @@ buildRules = ( ); dependencies = ( - 48615D159D6B3325CFA7FDB9FD74B959 /* PBXTargetDependency */, + B3EE45145958C95FC491F875B80383EC /* PBXTargetDependency */, ); name = "Pods-nRFBlinky_Tests"; productName = Pods_nRFBlinky_Tests; productReference = 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */; productType = "com.apple.product-type.framework"; }; + A9A5DBAF5BD0A85F5EAAC4F6C8CAE589 /* CoreBluetoothMock-PrivacyInfo */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6C913A5D7DE55D64F567BF253644DCF3 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */; + buildPhases = ( + DAA6A1199F54AA93F4A6D772D2159D7B /* Sources */, + 4ED429848847BD6E98E00AFC4E3F7B3E /* Frameworks */, + 4AE9E235FC08D853C8BE92FE5D4B857F /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "CoreBluetoothMock-PrivacyInfo"; + productName = PrivacyInfo; + productReference = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */; + productType = "com.apple.product-type.bundle"; + }; CD3FFBF5C2F9F871EAF22AF6B1B85B05 /* Pods-nRFBlinky-nRFBlinky_UITests */ = { isa = PBXNativeTarget; buildConfigurationList = 57E1A644F2B99A8C9AC4B78EF3D4BFF5 /* Build configuration list for PBXNativeTarget "Pods-nRFBlinky-nRFBlinky_UITests" */; @@ -2132,7 +443,7 @@ buildRules = ( ); dependencies = ( - 3751DDAC2D9D82F2B0514E876A4C2018 /* PBXTargetDependency */, + 9D84E0272A46153BC850099359727015 /* PBXTargetDependency */, ); name = "Pods-nRFBlinky-nRFBlinky_UITests"; productName = Pods_nRFBlinky_nRFBlinky_UITests; @@ -2151,11 +462,11 @@ buildRules = ( ); dependencies = ( - C89203A5706C11C38FD7CFBCCD521BC3 /* PBXTargetDependency */, + 5AA5A3F03E35E2C7FDE1C3E70273E2E9 /* PBXTargetDependency */, ); name = "Pods-nRFBlinky"; productName = Pods_nRFBlinky; - productReference = B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */; + productReference = B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -2164,11 +475,11 @@ BFDFE7DC352907FC980B868725387E98 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 1300; - LastUpgradeCheck = 1300; + LastSwiftUpdateCheck = 1500; + LastUpgradeCheck = 1500; }; buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; - compatibilityVersion = "Xcode 11.4"; + compatibilityVersion = "Xcode 12.0"; developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( @@ -2176,11 +487,12 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 78F1E97CBA31CFC06DE9857FBC265263 /* Products */; + productRefGroup = 088E62683BA657E94911AE22A17008AB /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */, + A9A5DBAF5BD0A85F5EAAC4F6C8CAE589 /* CoreBluetoothMock-PrivacyInfo */, D8DA31B307E5478D785EED0F0F084E24 /* Pods-nRFBlinky */, CD3FFBF5C2F9F871EAF22AF6B1B85B05 /* Pods-nRFBlinky-nRFBlinky_UITests */, 7AC722D61390476FAC05FA5E388C0381 /* Pods-nRFBlinky_Tests */, @@ -2203,14 +515,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 76DB5A76F9ECAA2C1372FE455326F3F2 /* Resources */ = { + 4AE9E235FC08D853C8BE92FE5D4B857F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + CEEAC1098EBEA2A58E65D3CF0F7D7B7E /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DBE8A1D204006BDC340B06AB5B93E1E3 /* Resources */ = { + 5362D235293AE8E26A7245001FC885E3 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4FE2CE7C5AC276736977ABE18AA630CF /* PrivacyInfo.bundle in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 76DB5A76F9ECAA2C1372FE455326F3F2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2220,6 +541,31 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 21EB30AD5AEF62EE82F861530AA8D5D0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 163044326A3EDA5D3CFD4C67154204A7 /* CBMAttributes.swift in Sources */, + AC7F97116A9B417EFA3DA6A1589556B3 /* CBMCentralManager.swift in Sources */, + EE9BB1ABC315577B96D4F535BFB19552 /* CBMCentralManagerDelegate.swift in Sources */, + EC00EF49529334EF8801024F0500469B /* CBMCentralManagerDelegateProxy.swift in Sources */, + 89EAD28320FE453DAA049315A836DFE3 /* CBMCentralManagerFactory.swift in Sources */, + 903B670C1FDCA43AFDD59431DA0C0706 /* CBMCentralManagerMock.swift in Sources */, + CCEAF594871356C68C751F681BBF2377 /* CBMCentralManagerNative.swift in Sources */, + E5BDB07ADCB53D7633DC9AF7DF07A99E /* CBMManagerTypes.swift in Sources */, + 2AEC49A0D253410668378C32E38E6C68 /* CBMPeer.swift in Sources */, + 13A434DDEC88BA10891CB7EC2FB0AD1C /* CBMPeripheral.swift in Sources */, + 65D33B6FB56496291472C532ACDA22A2 /* CBMPeripheralDelegate.swift in Sources */, + E64E49E3B753055603C49D31E3B44F60 /* CBMPeripheralDelegateProxy.swift in Sources */, + D8270C0417CAF3E19CE4CD6237B277FF /* CBMPeripheralPreview.swift in Sources */, + 2ACD11A4FC1126801772B90F4F9D7F3A /* CBMPeripheralSpec.swift in Sources */, + E6B7C37CC1408E99C4F002FD184A1D96 /* CBMPeripheralSpecDelegate.swift in Sources */, + 1E71700009466AC4FC9D61EBDF16251F /* CoreBluetoothMock-dummy.m in Sources */, + 89221008937895C3257BBE4832A8FD64 /* Documentation.docc in Sources */, + 6AB39C94A2CC9D1FA57855543D32FCF8 /* PrivacyInfo.xcprivacy in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 469F3C2BC2456F353AE8D1529BD9BB0E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -2244,94 +590,63 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 98939D5E2E6E952115D4D61B9393DF70 /* Sources */ = { + DAA6A1199F54AA93F4A6D772D2159D7B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B6F664576A40B6987196665C12B8562F /* CBMAttributes.swift in Sources */, - B16D2BB46A12F462EE0E05011CF266A7 /* CBMCentralManager.swift in Sources */, - 25CD1E200A7A9F02F2A8D3566189E7D1 /* CBMCentralManagerDelegate.swift in Sources */, - F15220D9F26C38D19459FA170960A9E9 /* CBMCentralManagerDelegateProxy.swift in Sources */, - D9F06BDF62AC0F794949403313361486 /* CBMCentralManagerFactory.swift in Sources */, - 50E1BD044B1C721A6BAC687DD6EED702 /* CBMCentralManagerMock.swift in Sources */, - E1D2256ACCC839979767C707A2A698E5 /* CBMCentralManagerNative.swift in Sources */, - BD646F17F0438A3058C3554613FF8F63 /* CBMManagerTypes.swift in Sources */, - 9A7EB4976C780779121169B46E095E73 /* CBMPeer.swift in Sources */, - 2AE6DC76750D2BCE7426CF9E3A359B25 /* CBMPeripheral.swift in Sources */, - 7F6FC449D63D6080845F7491270CD1F7 /* CBMPeripheralDelegate.swift in Sources */, - 25402DAD262AA65C25D290D26BEA5F72 /* CBMPeripheralDelegateProxy.swift in Sources */, - 79B1D3D20D343CEA254B65C41CE2C84D /* CBMPeripheralPreview.swift in Sources */, - 13B9D09A242999FFCF24479D7F6A6EA7 /* CBMPeripheralSpec.swift in Sources */, - 8CD37884F9F154505E75C1246AB0306C /* CBMPeripheralSpecDelegate.swift in Sources */, - 0E3A9E9943DDE846140819D3C9F6E1AE /* CoreBluetoothMock-dummy.m in Sources */, - 31912A4803D961135328E736D9561CF5 /* Documentation.docc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 3751DDAC2D9D82F2B0514E876A4C2018 /* PBXTargetDependency */ = { + 5AA5A3F03E35E2C7FDE1C3E70273E2E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CoreBluetoothMock; target = 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */; - targetProxy = E515C70E72898D7360C50AAE26EF3DEB /* PBXContainerItemProxy */; + targetProxy = 7ACEB9113DE9EE191C645BDD80AAB5FB /* PBXContainerItemProxy */; }; - 48615D159D6B3325CFA7FDB9FD74B959 /* PBXTargetDependency */ = { + 61584857F0A9E02DD2A6FAD4EE933023 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Pods-nRFBlinky"; - target = D8DA31B307E5478D785EED0F0F084E24 /* Pods-nRFBlinky */; - targetProxy = FF2795F3F3A0D4C2EC46306FF8F35524 /* PBXContainerItemProxy */; + name = "CoreBluetoothMock-PrivacyInfo"; + target = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589 /* CoreBluetoothMock-PrivacyInfo */; + targetProxy = 0419CC7CA65C3A7779A20D6DFF74B5DC /* PBXContainerItemProxy */; }; - C89203A5706C11C38FD7CFBCCD521BC3 /* PBXTargetDependency */ = { + 9D84E0272A46153BC850099359727015 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CoreBluetoothMock; target = 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */; - targetProxy = 0B35C4E9CA503C94FD9E8B9D5F9F5E06 /* PBXContainerItemProxy */; + targetProxy = FE9350EF4CCC6E8D75BDCDB384FC1432 /* PBXContainerItemProxy */; + }; + B3EE45145958C95FC491F875B80383EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-nRFBlinky"; + target = D8DA31B307E5478D785EED0F0F084E24 /* Pods-nRFBlinky */; + targetProxy = F8B424CD3A3394627BB8D128D025AC25 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 2E537B0E1269E127EC0DFC5DAAB81A7C /* Debug */ = { + 010100CB2F81959DF4B2A0221409B27D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 58D566B721898E1D43CFE4A9BFB4EA88 /* Pods-nRFBlinky.debug.xcconfig */; + baseConfigurationReference = 85B1D09A64C3FA37D5C6AC2DBC147B10 /* CoreBluetoothMock.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CoreBluetoothMock"; + IBSC_MODULE = CoreBluetoothMock; + INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = PrivacyInfo; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 47D584238596EE026D708BE789305D54 /* Debug */ = { + 08DA54DE3CC67AB69363A01A26083306 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6C02ADBCE2BEF0D1FBC28B419E3E303 /* CoreBluetoothMock.debug.xcconfig */; + baseConfigurationReference = 2C99E13C2E6B0E4B4E8A112D8998A43C /* CoreBluetoothMock.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -2345,7 +660,7 @@ GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -2357,18 +672,18 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.6; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 75D31F61E7215E22A2B652CCAF1F1066 /* Release */ = { + 245CF5C7817050E542488225BCCB841E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9C5103A94668BA93B8DCDBD27491209F /* Pods-nRFBlinky.release.xcconfig */; + baseConfigurationReference = 85B1D09A64C3FA37D5C6AC2DBC147B10 /* CoreBluetoothMock.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -2378,33 +693,31 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock.modulemap"; + PRODUCT_MODULE_NAME = CoreBluetoothMock; + PRODUCT_NAME = CoreBluetoothMock; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 84C7ACA65DEEB6FC7E42B266D740E5FA /* Release */ = { + 28CBB621F752C36F455F588CA954CEC6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73F49D0D11CA3BC68F1FFF1BB879E869 /* Pods-nRFBlinky_Tests.release.xcconfig */; + baseConfigurationReference = 9C5103A94668BA93B8DCDBD27491209F /* Pods-nRFBlinky.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -2416,16 +729,16 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -2440,9 +753,9 @@ }; name = Release; }; - 867AA92D553EBEB94E8EF5276ABB69B1 /* Debug */ = { + 2B78B54DF49059BB5F095BBB4FF3DF4B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C348C9192BF2799624BD1BAAF5DFED0C /* Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig */; + baseConfigurationReference = C366D985CC68EF9A7B5BBB3186F44D2D /* Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -2456,7 +769,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -2472,12 +785,13 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 903A0004D3E6651EFD5D2E16214D101B /* Release */ = { + 2B9E26EAE2CD392AD762421F663075A1 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -2512,13 +826,16 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; + DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", "$(inherited)", ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -2527,19 +844,58 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_INSTALLED_PRODUCT = NO; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; SYMROOT = "${SRCROOT}/../build"; }; + name = Debug; + }; + 5694F873F21AA88457890013B29DF923 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 73F49D0D11CA3BC68F1FFF1BB879E869 /* Pods-nRFBlinky_Tests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; name = Release; }; - B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */ = { + 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -2574,16 +930,13 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_DEBUG=1", - "DEBUG=1", + "POD_CONFIGURATION_RELEASE=1", "$(inherited)", ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -2592,23 +945,23 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_INSTALLED_PRODUCT = NO; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 5.0; SYMROOT = "${SRCROOT}/../build"; }; - name = Debug; + name = Release; }; - BE913373DE8BB0FF7104349909720C3C /* Release */ = { + 6A3CE96FDABBBC9744D0EB614457C748 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C09609BE80BCC9F5A8E7C162F3F85205 /* CoreBluetoothMock.release.xcconfig */; + baseConfigurationReference = 58D566B721898E1D43CFE4A9BFB4EA88 /* Pods-nRFBlinky.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -2618,32 +971,49 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock.modulemap"; - PRODUCT_MODULE_NAME = CoreBluetoothMock; - PRODUCT_NAME = CoreBluetoothMock; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.6; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; + name = Debug; + }; + 791B9DA62030105C99999476B72BA369 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2C99E13C2E6B0E4B4E8A112D8998A43C /* CoreBluetoothMock.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CoreBluetoothMock"; + IBSC_MODULE = CoreBluetoothMock; + INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = PrivacyInfo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; name = Release; }; - FD80C50FEF410FDB98CA339F144A1F7C /* Release */ = { + CD60B9732E551D51A077B7142F4DE277 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C366D985CC68EF9A7B5BBB3186F44D2D /* Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig */; + baseConfigurationReference = 72D8941B2D1FDDEABD4AE7C02FED240C /* Pods-nRFBlinky_Tests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -2655,16 +1025,16 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -2673,15 +1043,14 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - FD9341ED6F839F846726AA9C1F19CA43 /* Debug */ = { + D18F6376D6EDC866A021189170686FB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 72D8941B2D1FDDEABD4AE7C02FED240C /* Pods-nRFBlinky_Tests.debug.xcconfig */; + baseConfigurationReference = C348C9192BF2799624BD1BAAF5DFED0C /* Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -2693,16 +1062,16 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -2722,8 +1091,8 @@ 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */, - 903A0004D3E6651EFD5D2E16214D101B /* Release */, + 2B9E26EAE2CD392AD762421F663075A1 /* Debug */, + 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -2731,8 +1100,17 @@ 57E1A644F2B99A8C9AC4B78EF3D4BFF5 /* Build configuration list for PBXNativeTarget "Pods-nRFBlinky-nRFBlinky_UITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 867AA92D553EBEB94E8EF5276ABB69B1 /* Debug */, - FD80C50FEF410FDB98CA339F144A1F7C /* Release */, + D18F6376D6EDC866A021189170686FB0 /* Debug */, + 2B78B54DF49059BB5F095BBB4FF3DF4B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6C913A5D7DE55D64F567BF253644DCF3 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 010100CB2F81959DF4B2A0221409B27D /* Debug */, + 791B9DA62030105C99999476B72BA369 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -2740,8 +1118,8 @@ 7C4ECF60CAC6EF8192FD895C01CAAF60 /* Build configuration list for PBXNativeTarget "Pods-nRFBlinky" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2E537B0E1269E127EC0DFC5DAAB81A7C /* Debug */, - 75D31F61E7215E22A2B652CCAF1F1066 /* Release */, + 6A3CE96FDABBBC9744D0EB614457C748 /* Debug */, + 28CBB621F752C36F455F588CA954CEC6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -2749,17 +1127,17 @@ A84FDE584C6C2FDA833006067E22421C /* Build configuration list for PBXNativeTarget "Pods-nRFBlinky_Tests" */ = { isa = XCConfigurationList; buildConfigurations = ( - FD9341ED6F839F846726AA9C1F19CA43 /* Debug */, - 84C7ACA65DEEB6FC7E42B266D740E5FA /* Release */, + CD60B9732E551D51A077B7142F4DE277 /* Debug */, + 5694F873F21AA88457890013B29DF923 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EC57381206BCF65627E4E9926DA18978 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock" */ = { + BDACFCD99AB7E8BECE9295C683075D8D /* Build configuration list for PBXNativeTarget "CoreBluetoothMock" */ = { isa = XCConfigurationList; buildConfigurations = ( - 47D584238596EE026D708BE789305D54 /* Debug */, - BE913373DE8BB0FF7104349909720C3C /* Release */, + 245CF5C7817050E542488225BCCB841E /* Debug */, + 08DA54DE3CC67AB69363A01A26083306 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist b/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist index d712e34..fa833f5 100644 --- a/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist +++ b/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.17.0 + 0.18.0 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock.debug.xcconfig b/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock.debug.xcconfig index cc09f3b..b269e23 100644 --- a/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock.debug.xcconfig +++ b/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock.debug.xcconfig @@ -1,7 +1,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CoreBluetoothMock GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock.release.xcconfig b/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock.release.xcconfig index cc09f3b..b269e23 100644 --- a/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock.release.xcconfig +++ b/Example/Pods/Target Support Files/CoreBluetoothMock/CoreBluetoothMock.release.xcconfig @@ -1,7 +1,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CoreBluetoothMock GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh b/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh index 435188d..c7ab7a5 100755 --- a/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh +++ b/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh @@ -18,7 +18,7 @@ echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" -SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +SWIFT_STDLIB_PATH="${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" BCSYMBOLMAP_DIR="BCSymbolMaps" diff --git a/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig index c08045b..d28c00e 100644 --- a/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig @@ -4,7 +4,7 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CoreBluet GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CoreBluetoothMock/CoreBluetoothMock.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift "$(PLATFORM_DIR)/Developer/Library/Frameworks" '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "CoreBluetoothMock" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig b/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig index c08045b..d28c00e 100644 --- a/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig @@ -4,7 +4,7 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CoreBluet GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CoreBluetoothMock/CoreBluetoothMock.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift "$(PLATFORM_DIR)/Developer/Library/Frameworks" '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "CoreBluetoothMock" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-frameworks.sh b/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-frameworks.sh index 435188d..c7ab7a5 100755 --- a/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-frameworks.sh +++ b/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-frameworks.sh @@ -18,7 +18,7 @@ echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" -SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +SWIFT_STDLIB_PATH="${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" BCSYMBOLMAP_DIR="BCSymbolMaps" diff --git a/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.debug.xcconfig b/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.debug.xcconfig index a6c8726..7a1a13e 100644 --- a/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.debug.xcconfig @@ -4,7 +4,7 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CoreBluet GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CoreBluetoothMock/CoreBluetoothMock.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "CoreBluetoothMock" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.release.xcconfig b/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.release.xcconfig index a6c8726..7a1a13e 100644 --- a/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.release.xcconfig @@ -4,7 +4,7 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CoreBluet GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CoreBluetoothMock/CoreBluetoothMock.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "CoreBluetoothMock" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/Example/nRFBlinky.xcodeproj/project.pbxproj b/Example/nRFBlinky.xcodeproj/project.pbxproj index 9e151bc..b8a48fc 100644 --- a/Example/nRFBlinky.xcodeproj/project.pbxproj +++ b/Example/nRFBlinky.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 53; + objectVersion = 54; objects = { /* Begin PBXBuildFile section */ From 0bd89d6e20a480a15ee0e503a1b0578eb970bda0 Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 14:24:43 +0100 Subject: [PATCH 04/14] Version set to 0.18.0 --- CoreBluetoothMock.podspec | 2 +- Example/Podfile.lock | 2 +- Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json | 4 ++-- Example/Pods/Manifest.lock | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CoreBluetoothMock.podspec b/CoreBluetoothMock.podspec index ad9cb2a..b989823 100644 --- a/CoreBluetoothMock.podspec +++ b/CoreBluetoothMock.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'CoreBluetoothMock' - s.version = '0.17.0' + s.version = '0.18.0' s.summary = 'Mocking library for CoreBluetooth.' s.description = <<-DESC diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 8c4a9da..43d6a12 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - CoreBluetoothMock (0.17.0) + - CoreBluetoothMock (0.18.0) DEPENDENCIES: - CoreBluetoothMock (from `../`) diff --git a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json index ddfee6c..8fc19d0 100644 --- a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json +++ b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json @@ -1,6 +1,6 @@ { "name": "CoreBluetoothMock", - "version": "0.17.0", + "version": "0.18.0", "summary": "Mocking library for CoreBluetooth.", "description": "This is a mocking library for CoreBluetooth framework. Allows to mock a Bluetooth Low Energy\ndevice and test the app on simulator.", "homepage": "https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock", @@ -13,7 +13,7 @@ }, "source": { "git": "https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock.git", - "tag": "0.17.0" + "tag": "0.18.0" }, "social_media_url": "https://twitter.com/nordictweets", "swift_versions": [ diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 8c4a9da..43d6a12 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,5 +1,5 @@ PODS: - - CoreBluetoothMock (0.17.0) + - CoreBluetoothMock (0.18.0) DEPENDENCIES: - CoreBluetoothMock (from `../`) From a452da92a85efd11044ce710d618c4bc312057bb Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 14:58:58 +0100 Subject: [PATCH 05/14] Typos fixed --- CoreBluetoothMock/CBMAttributes.swift | 4 ++-- CoreBluetoothMock/CBMCentralManager.swift | 8 ++++---- CoreBluetoothMock/CBMCentralManagerMock.swift | 14 +++++++------- CoreBluetoothMock/CBMCentralManagerNative.swift | 2 +- CoreBluetoothMock/CBMPeripheralSpec.swift | 16 ++++++++-------- .../CBMPeripheralSpecDelegate.swift | 2 +- 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/CoreBluetoothMock/CBMAttributes.swift b/CoreBluetoothMock/CBMAttributes.swift index cbf498b..bc78436 100644 --- a/CoreBluetoothMock/CBMAttributes.swift +++ b/CoreBluetoothMock/CBMAttributes.swift @@ -163,7 +163,7 @@ open class CBMServiceMock: CBMService { /// - uuid: The Bluetooth UUID of the service. /// - isPrimary: The type of the service (primary or secondary). /// - includedServices: Optional array of included services. - /// - characteristics: Optional aray of characteristics. + /// - characteristics: Optional array of characteristics. public init(type uuid: CBMUUID, primary isPrimary: Bool, includedService: [CBMServiceMock]? = nil, characteristics: [CBMCharacteristicMock]? = nil) { @@ -312,7 +312,7 @@ open class CBMCharacteristicMock: CBMCharacteristic { /// An object that provides further information about a remote peripheral’s characteristic. /// -/// `CBMDescriptor` represents a descriptor of a peripheral’s characteristic. In partcular, `CBMDescriptor` objects +/// `CBMDescriptor` represents a descriptor of a peripheral’s characteristic. In particular, `CBMDescriptor` objects /// represent the descriptors of a remote peripheral’s characteristic. Descriptors provide further information about a /// characteristic’s value. For example, they may describe the value in human-readable form and describe how to format /// the value for presentation purposes. Characteristic descriptors also indicate whether a characteristic’s value indicates diff --git a/CoreBluetoothMock/CBMCentralManager.swift b/CoreBluetoothMock/CBMCentralManager.swift index e6f4669..aef9a77 100644 --- a/CoreBluetoothMock/CBMCentralManager.swift +++ b/CoreBluetoothMock/CBMCentralManager.swift @@ -105,8 +105,8 @@ open class CBMCentralManager: NSObject { @available(watchOS, introduced: 6.0, deprecated: 6.1) open var authorization: CBMManagerAuthorization { if let rawValue = CBMCentralManagerMock.bluetoothAuthorization, - let authotization = CBMManagerAuthorization(rawValue: rawValue) { - return authotization + let authorization = CBMManagerAuthorization(rawValue: rawValue) { + return authorization } else { return CBCentralManager().authorization } @@ -128,8 +128,8 @@ open class CBMCentralManager: NSObject { @available(iOS 13.1, macOS 10.15, tvOS 13.1, watchOS 6.1, *) open class var authorization: CBMManagerAuthorization { if let rawValue = CBMCentralManagerMock.bluetoothAuthorization, - let authotization = CBMManagerAuthorization(rawValue: rawValue) { - return authotization + let authorization = CBMManagerAuthorization(rawValue: rawValue) { + return authorization } else { return CBCentralManager.authorization } diff --git a/CoreBluetoothMock/CBMCentralManagerMock.swift b/CoreBluetoothMock/CBMCentralManagerMock.swift index c3759be..7880e42 100644 --- a/CoreBluetoothMock/CBMCentralManagerMock.swift +++ b/CoreBluetoothMock/CBMCentralManagerMock.swift @@ -207,7 +207,7 @@ open class CBMCentralManagerMock: CBMCentralManager { guard mock.proximity != .outOfRange else { return } - // If the device is connected and does not advetise in that state, skip. + // If the device is connected and does not advertise in that state, skip. guard !mock.isConnected || config.isAdvertisingWhenConnected else { return } @@ -235,7 +235,7 @@ open class CBMCentralManagerMock: CBMCentralManager { let peripheral = manager.peripherals[mock.identifier]! // If the Allow Duplicates flag was not set and the device was already reported, - // don't report it for th second time + // don't report it for the second time let allowDuplicates = manager.scanOptions?[CBMCentralManagerScanOptionAllowDuplicatesKey] as? NSNumber ?? false as NSNumber if !peripheral.wasScanned || allowDuplicates.boolValue { // Remember the scanned name from the last advertising packet. @@ -348,7 +348,7 @@ open class CBMCentralManagerMock: CBMCentralManager { // MARK: - Central manager simulation methods - /// This method may be used to register a list ot ``CBMPeripheralPreview`` should they be used in Swift UI Previews. + /// This method may be used to register a list of ``CBMPeripheralPreview`` should they be used in Swift UI Previews. /// /// Registered peripherals can be connected, retrieved, and respond to basic requests /// - Parameter peripherals: The list of peripherals intended for Swift UI purposes. @@ -363,7 +363,7 @@ open class CBMCentralManagerMock: CBMCentralManager { /// All manager delegates will receive a ``CBMManagerState/unknown`` state update. public static func tearDownSimulation() { stopAdvertising() - // Set the state of all currently existing cenral manager instances to + // Set the state of all currently existing central manager instances to // .unknown, which will make them invalid. managerState = .unknown // Remove all central manager instances. @@ -656,8 +656,8 @@ open class CBMCentralManagerMock: CBMCentralManager { @available(watchOS, introduced: 6.0, deprecated: 6.1) open override var authorization: CBMManagerAuthorization { if let rawValue = CBMCentralManagerMock.bluetoothAuthorization, - let authotization = CBMManagerAuthorization(rawValue: rawValue) { - return authotization + let authorization = CBMManagerAuthorization(rawValue: rawValue) { + return authorization } else { // If `simulateAuthorization(:)` was not called, .allowedAlways is assumed. return .allowedAlways @@ -952,7 +952,7 @@ open class CBMCentralManagerMock: CBMCentralManager { return } // If the device is already connected (using a different central manager), - // report success immediatly. The device already has the connection with central + // report success immediately. The device already has the connection with central // and will not be notified about another virtual client connection. if isAlreadyConnected { queue.async { [weak self] in diff --git a/CoreBluetoothMock/CBMCentralManagerNative.swift b/CoreBluetoothMock/CBMCentralManagerNative.swift index 83af43c..0ea8bce 100644 --- a/CoreBluetoothMock/CBMCentralManagerNative.swift +++ b/CoreBluetoothMock/CBMCentralManagerNative.swift @@ -418,7 +418,7 @@ public class CBMPeripheralNative: CBMPeer, CBMPeripheral { impl.delegate?.peripheral(impl, didOpen: channel, error: error) } - /// Updates the local list of serivces with received ones. + /// Updates the local list of services with received ones. /// - Parameter services: New list of services. private func smartCopy(_ services: [CBService]?) { guard let services = services else { diff --git a/CoreBluetoothMock/CBMPeripheralSpec.swift b/CoreBluetoothMock/CBMPeripheralSpec.swift index 085678d..63fe1b6 100644 --- a/CoreBluetoothMock/CBMPeripheralSpec.swift +++ b/CoreBluetoothMock/CBMPeripheralSpec.swift @@ -54,7 +54,7 @@ public enum CBMProximity { /// Advertisement configuration. /// /// This config includes the advertisement data, interval, initial delay and a flag -/// indicating thether the advertisement is also broadcasted when the device is in +/// indicating whether the advertisement is also broadcasted when the device is in /// connected state. /// /// The advertisement config is set in ``CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)`` @@ -68,7 +68,7 @@ public struct CBMAdvertisementConfig { public let data: [String : Any] /// The advertising interval. /// - /// If the intetval is 0, the advertisement will be fired only once. In that case use the `delay` + /// If the interval is 0, the advertisement will be fired only once. In that case use the `delay` /// parameter to specify when the advertisement is to be sent. public let interval: TimeInterval /// The delay of the first advertising packet of that type. @@ -87,7 +87,7 @@ public struct CBMAdvertisementConfig { /// Creates an advertising configuration. /// - Parameters: /// - data: The data that will be advertised. Only the iOS-supported keys are available. - /// - interval: The advertising ingterval in seconds. + /// - interval: The advertising interval in seconds. /// - delay: The delay to the first packet, in seconds. /// - isAdvertisingWhenConnected: Whether the device advertises also when in /// connected state. @@ -166,7 +166,7 @@ public class CBMPeripheralSpec { /// Min value is 23, max 517. /// /// The maximum value length for Write Without Response is MTU - 3 bytes, as 3 bytes - /// are reserved for the Hndle number and Op Code on the GATT layer. + /// are reserved for the Handle number and Op Code on the GATT layer. public let mtu: Int? /// The delegate that will handle connection requests. public let connectionDelegate: CBMPeripheralSpecDelegate? @@ -319,7 +319,7 @@ public class CBMPeripheralSpec { /// Simulates a change in the advertising packet. /// /// The delays in the config will be applied from the time this method is called. - /// - Parameter advertisement: The new advertrising configuration. + /// - Parameter advertisement: The new advertising configuration. /// - Since: 0.15.0 public func simulateAdvertisementChange(_ advertisement: [CBMAdvertisementConfig]?) { CBMCentralManagerMock.peripheral(self, didChangeAdvertisement: advertisement) @@ -379,7 +379,7 @@ public class CBMPeripheralSpec { private var services: [CBMServiceMock]? = nil /// The connection interval, in seconds. private var connectionInterval: TimeInterval? = nil - /// The MTU (Maximul Transfer Unit). Min value is 23, max 517. + /// The MTU (Maximum Transfer Unit). Min value is 23, max 517. /// The maximum value length for Write Without Response is /// MTU - 3 bytes. private var mtu: Int? = nil @@ -404,7 +404,7 @@ public class CBMPeripheralSpec { /// `false`. /// - Returns: The builder. /// - Note: Starting from version 0.15.0 this method may be called multiple times - /// if the device advertises with muiltiple different packets. + /// if the device advertises with multiple different packets. public func advertising(advertisementData: [String : Any], withInterval interval: TimeInterval = 0.100, delay: TimeInterval = 0.0, @@ -484,7 +484,7 @@ public class CBMPeripheralSpec { /// without scanning. /// /// That means, that the manager has perviously scanned and cached the - /// peripheral and can obtain it by the identfier. + /// peripheral and can obtain it by the identifier. public func allowForRetrieval() -> Builder { self.isKnown = true return self diff --git a/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift b/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift index 05202e7..b1e0f49 100644 --- a/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift +++ b/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift @@ -30,7 +30,7 @@ import CoreBluetooth -/// This delegate should implement the behavior of a real Bluetooth LE device duting a connection. +/// This delegate should implement the behavior of a real Bluetooth LE device during a connection. public protocol CBMPeripheralSpecDelegate { /// This method is called when the mock peripheral has been reset. From 690d3ae2804b9401289e3aedfb62ef0882fe4d1c Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 14:59:48 +0100 Subject: [PATCH 06/14] PrivacyInfo file removed from sources --- CoreBluetoothMock.podspec | 1 + Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CoreBluetoothMock.podspec b/CoreBluetoothMock.podspec index b989823..b9d5020 100644 --- a/CoreBluetoothMock.podspec +++ b/CoreBluetoothMock.podspec @@ -21,6 +21,7 @@ device and test the app on simulator. s.watchos.deployment_target = '4.0' s.source_files = 'CoreBluetoothMock/**/*' + s.exclude_files = [ 'CoreBluetoothMock/PrivacyInfo.xcprivacy' ] s.resource_bundles = { 'PrivacyInfo' => ['CoreBluetoothMock/PrivacyInfo.xcprivacy'] } diff --git a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json index 8fc19d0..592dfba 100644 --- a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json +++ b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json @@ -36,6 +36,9 @@ "watchos": "4.0" }, "source_files": "CoreBluetoothMock/**/*", + "exclude_files": [ + "CoreBluetoothMock/PrivacyInfo.xcprivacy" + ], "resource_bundles": { "PrivacyInfo": [ "CoreBluetoothMock/PrivacyInfo.xcprivacy" From a3c81275fe2208ce5ed6568fb4a48311667889d9 Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 15:01:33 +0100 Subject: [PATCH 07/14] Migration to Xcode 15.2 --- Example/Pods/Pods.xcodeproj/project.pbxproj | 570 +++++++++--------- Example/nRFBlinky.xcodeproj/project.pbxproj | 12 +- .../xcshareddata/xcschemes/nRFBlinky.xcscheme | 2 +- .../xcschemes/nRFBlinky_Tests.xcscheme | 11 +- .../xcschemes/nRFBlinky_UITests.xcscheme | 2 +- 5 files changed, 303 insertions(+), 294 deletions(-) diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index ad5f8bf..c9587b5 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -9,145 +9,142 @@ /* Begin PBXBuildFile section */ 0A32CB89E41E0E0D13A3550DF7B41CB5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 0AE9EC811537AF361F3CB7C782473473 /* Pods-nRFBlinky_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 258D14F03E5A6413193BAC7C1007AF66 /* Pods-nRFBlinky_Tests-dummy.m */; }; - 13A434DDEC88BA10891CB7EC2FB0AD1C /* CBMPeripheral.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91005B1F2B37ACFFF064F0203DC59A89 /* CBMPeripheral.swift */; }; - 163044326A3EDA5D3CFD4C67154204A7 /* CBMAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 302B6C1B197F88C0C758F15AC93AE02F /* CBMAttributes.swift */; }; + 0F83C34F8007A2C0491B834BC1683BAF /* CBMPeripheralDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 497DF3AD9669BF1549CED977CA2D20E1 /* CBMPeripheralDelegate.swift */; }; + 164F0570F03B92E344CB080009697F42 /* CBMPeer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DB8905E80B68966A6DA835964160C5C /* CBMPeer.swift */; }; + 1A4878A38EC2838E2CF72A428EAD75C8 /* CoreBluetoothMock-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05408ECF6BA08BD901BC5C7A186412BF /* CoreBluetoothMock-dummy.m */; }; 1D0C61DB8642B5DFF28353C4E32831DA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; - 1E71700009466AC4FC9D61EBDF16251F /* CoreBluetoothMock-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1F8A700480DB04E376A96A5D16E728 /* CoreBluetoothMock-dummy.m */; }; - 2ACD11A4FC1126801772B90F4F9D7F3A /* CBMPeripheralSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4BBF203940242312F9F502D40C174E4 /* CBMPeripheralSpec.swift */; }; - 2AEC49A0D253410668378C32E38E6C68 /* CBMPeer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FBDFB4478025E4B86C606AD00164AD5 /* CBMPeer.swift */; }; - 4FE2CE7C5AC276736977ABE18AA630CF /* PrivacyInfo.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */; }; + 37DC2723452C022949DCFAE6C1A2123F /* CBMPeripheralPreview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FAACC70E95BA885EB8F23C856AC2F03 /* CBMPeripheralPreview.swift */; }; + 389E191EB10C2588918B28FE6B80F53E /* CBMCentralManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5732EE2493F5254DC73FAF4AEFB4355F /* CBMCentralManagerDelegate.swift */; }; + 43FA03536E1A7D57B751480D0C380DA6 /* CBMPeripheralSpecDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEC16A2E868E9BC166B87037D65E8120 /* CBMPeripheralSpecDelegate.swift */; }; + 464E5DBC8E72E10CB1FFF49CF8DF1DB6 /* CBMCentralManagerMock.swift in Sources */ = {isa = PBXBuildFile; fileRef = C53EE2B1C373C6D868B5708A78D94375 /* CBMCentralManagerMock.swift */; }; + 48E12CE03EFDE5EE32325AD1A726786C /* CoreBluetoothMock-PrivacyInfo in Resources */ = {isa = PBXBuildFile; fileRef = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* CoreBluetoothMock-PrivacyInfo */; }; 58442FE5272883F9A5AD75D7F454B587 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; - 65D33B6FB56496291472C532ACDA22A2 /* CBMPeripheralDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D4A29D3ACD91817A2A6F5EBE160B279 /* CBMPeripheralDelegate.swift */; }; - 6AB39C94A2CC9D1FA57855543D32FCF8 /* PrivacyInfo.xcprivacy in Sources */ = {isa = PBXBuildFile; fileRef = 1B6C389415E0D9A43B237246A7B310FB /* PrivacyInfo.xcprivacy */; }; - 89221008937895C3257BBE4832A8FD64 /* Documentation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 15A440E77315ABFAFE892B30FFDF6E09 /* Documentation.docc */; }; - 89EAD28320FE453DAA049315A836DFE3 /* CBMCentralManagerFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = C21D8CAF91CB43D0BE216F9EEA09CDEA /* CBMCentralManagerFactory.swift */; }; - 903B670C1FDCA43AFDD59431DA0C0706 /* CBMCentralManagerMock.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0730100E45F2B5903D4110E9E6F85B0 /* CBMCentralManagerMock.swift */; }; + 7705DA0457D1282EA86F07AA6A370B41 /* CBMPeripheral.swift in Sources */ = {isa = PBXBuildFile; fileRef = 184F4CE9B2340161CE21318FB75FC431 /* CBMPeripheral.swift */; }; + 83C9D70917968828934D5285C036350F /* CBMCentralManagerFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03923AB8A466287408CFDD8E586EAAD1 /* CBMCentralManagerFactory.swift */; }; + 87A1A40A1E0C43A9C4E66B434C9B8F86 /* CBMAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F652B68A215DC05E41E421B437AA58F /* CBMAttributes.swift */; }; A5424F98A4506A84409281CF9DCB5E50 /* Pods-nRFBlinky-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E184D822F902304BAA7F65D6A90587B /* Pods-nRFBlinky-dummy.m */; }; - AC7F97116A9B417EFA3DA6A1589556B3 /* CBMCentralManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85BF8C70A395140BDE1877927469A6D0 /* CBMCentralManager.swift */; }; + A6980110A0540347283B5EA504CA6E56 /* CBMManagerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12DA96F64B212590545643E03EB75E6D /* CBMManagerTypes.swift */; }; B558667EDB25B2544F7DBEAF79FE7E2D /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 136AD593F202ACE109B877B06A30F9B3 /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF4A6369A028D1BF22AD4FEFCC6BB2C8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + BCDF8FBE308885D4504E63C4F8870FD2 /* CBMPeripheralSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3537DE15F30A5E5E68346B456C032F1C /* CBMPeripheralSpec.swift */; }; + C2CBD808636E7B5517CE192B426CFB78 /* CBMCentralManagerNative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB5EA764F851D6A9FB5A6F76FE1713B /* CBMCentralManagerNative.swift */; }; C7BD3CB2879758D1502CBACD88395B1A /* Pods-nRFBlinky-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C5B2698EFAB36B4C94DDBD6245C469 /* Pods-nRFBlinky-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CCEAF594871356C68C751F681BBF2377 /* CBMCentralManagerNative.swift in Sources */ = {isa = PBXBuildFile; fileRef = A96A3F401E65A42A36904EBD5252985C /* CBMCentralManagerNative.swift */; }; - CEEAC1098EBEA2A58E65D3CF0F7D7B7E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1B6C389415E0D9A43B237246A7B310FB /* PrivacyInfo.xcprivacy */; }; - D8270C0417CAF3E19CE4CD6237B277FF /* CBMPeripheralPreview.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB408E8AFF1F660E3B5C87186C06C67F /* CBMPeripheralPreview.swift */; }; + CC79345874A5D851719587482FD53039 /* Documentation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 8AA965671A4B327091BBFEE5BB792FA7 /* Documentation.docc */; }; + D38C80C6B9801478ACBE49C9EEA36EBB /* CoreBluetoothMock-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E61F49B07A003DEE8BFB8CD31B4A471A /* CoreBluetoothMock-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; DB1D7F4C9BE1D6FDCF0A220A342702B5 /* Pods-nRFBlinky_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A61BDF33ED282A7D748B4FC5DAE523 /* Pods-nRFBlinky_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E1548D659124C3E56E05919DA3F1D662 /* CoreBluetoothMock-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 930F8FC27EC2A8FA2D3BB47D2F35C39D /* CoreBluetoothMock-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E5BDB07ADCB53D7633DC9AF7DF07A99E /* CBMManagerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE197D9FB847BA7E58D8975A38AD969 /* CBMManagerTypes.swift */; }; - E64E49E3B753055603C49D31E3B44F60 /* CBMPeripheralDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1C55A5F5FDBA7352275FD9F3273D43F /* CBMPeripheralDelegateProxy.swift */; }; - E6B7C37CC1408E99C4F002FD184A1D96 /* CBMPeripheralSpecDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C857B915479E7FFBCF4BCFF83B8CFE84 /* CBMPeripheralSpecDelegate.swift */; }; - EC00EF49529334EF8801024F0500469B /* CBMCentralManagerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9407630EBD5BC7FC8F1AD9092CF263F9 /* CBMCentralManagerDelegateProxy.swift */; }; EDFF1483173947D4DF125CBA02BFF9EA /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05A53FE949257853F7E3939C9F803937 /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m */; }; - EE9BB1ABC315577B96D4F535BFB19552 /* CBMCentralManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC94BDBE2EC82D5D122A0729CF74BC4 /* CBMCentralManagerDelegate.swift */; }; + F47928F5B82D2134B9A82C308779EB00 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + F681F449BB935B07971654FCE06E106C /* CBMCentralManagerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B51C7BF996DE72681B2080563911F45 /* CBMCentralManagerDelegateProxy.swift */; }; + F80CC7A453546E5C2295024F41EECA4D /* CBMPeripheralDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20240FE702F5810BB0281322EB659697 /* CBMPeripheralDelegateProxy.swift */; }; + F84A3E5690BB9CAFD7EB1961397E9B91 /* CBMCentralManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E13B2D971184F621D9E21667DA6FA1D4 /* CBMCentralManager.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0419CC7CA65C3A7779A20D6DFF74B5DC /* PBXContainerItemProxy */ = { + 1CF75A301DD37C73A59CD58F7A633D76 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589; - remoteInfo = "CoreBluetoothMock-PrivacyInfo"; + remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; + remoteInfo = CoreBluetoothMock; }; - 7ACEB9113DE9EE191C645BDD80AAB5FB /* PBXContainerItemProxy */ = { + 5BAC23A6401ED7FD6A908144BC52289D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; remoteInfo = CoreBluetoothMock; }; - F8B424CD3A3394627BB8D128D025AC25 /* PBXContainerItemProxy */ = { + 67E4B48132FC1F42996283728E109E49 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D8DA31B307E5478D785EED0F0F084E24; remoteInfo = "Pods-nRFBlinky"; }; - FE9350EF4CCC6E8D75BDCDB384FC1432 /* PBXContainerItemProxy */ = { + BE75C12FBB0956B1942D41A58A6580E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; - remoteInfo = CoreBluetoothMock; + remoteGlobalIDString = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589; + remoteInfo = "CoreBluetoothMock-PrivacyInfo"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PrivacyInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 03923AB8A466287408CFDD8E586EAAD1 /* CBMCentralManagerFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerFactory.swift; path = CoreBluetoothMock/CBMCentralManagerFactory.swift; sourceTree = ""; }; + 04D9EA8C73EABB8E0BF81D113DF79EE5 /* CoreBluetoothMock-PrivacyInfo */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "CoreBluetoothMock-PrivacyInfo"; path = PrivacyInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 05408ECF6BA08BD901BC5C7A186412BF /* CoreBluetoothMock-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CoreBluetoothMock-dummy.m"; sourceTree = ""; }; 05A53FE949257853F7E3939C9F803937 /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky-nRFBlinky_UITests-dummy.m"; sourceTree = ""; }; - 06938B51C0B921FD24F65A621833E63C /* CoreBluetoothMock.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = CoreBluetoothMock.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0B8F33B0490E8B2934B94E30C462FB2C /* CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CoreBluetoothMock-Info.plist"; sourceTree = ""; }; + 0FB5EA764F851D6A9FB5A6F76FE1713B /* CBMCentralManagerNative.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerNative.swift; path = CoreBluetoothMock/CBMCentralManagerNative.swift; sourceTree = ""; }; + 12DA96F64B212590545643E03EB75E6D /* CBMManagerTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMManagerTypes.swift; path = CoreBluetoothMock/CBMManagerTypes.swift; sourceTree = ""; }; 136AD593F202ACE109B877B06A30F9B3 /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h"; sourceTree = ""; }; - 15A440E77315ABFAFE892B30FFDF6E09 /* Documentation.docc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.documentationcatalog; name = Documentation.docc; path = CoreBluetoothMock/Documentation.docc; sourceTree = ""; }; + 184F4CE9B2340161CE21318FB75FC431 /* CBMPeripheral.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheral.swift; path = CoreBluetoothMock/CBMPeripheral.swift; sourceTree = ""; }; 186005ABF43807617B23120BFEDA9F21 /* Pods-nRFBlinky-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-nRFBlinky-frameworks.sh"; sourceTree = ""; }; - 1B6C389415E0D9A43B237246A7B310FB /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = CoreBluetoothMock/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 1B51C7BF996DE72681B2080563911F45 /* CBMCentralManagerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegateProxy.swift; path = CoreBluetoothMock/CBMCentralManagerDelegateProxy.swift; sourceTree = ""; }; + 1DFCEBC6EC2184F171BCAF734E8340DB /* CoreBluetoothMock.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.debug.xcconfig; sourceTree = ""; }; 1F92E40BA4B115F4A8FF31133C71E5C9 /* Pods-nRFBlinky-nRFBlinky_UITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky-nRFBlinky_UITests.modulemap"; sourceTree = ""; }; + 20240FE702F5810BB0281322EB659697 /* CBMPeripheralDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegateProxy.swift; path = CoreBluetoothMock/CBMPeripheralDelegateProxy.swift; sourceTree = ""; }; 23DDBE0DFE085AC6F53CE75068F0E893 /* Pods-nRFBlinky.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky.modulemap"; sourceTree = ""; }; 258D14F03E5A6413193BAC7C1007AF66 /* Pods-nRFBlinky_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky_Tests-dummy.m"; sourceTree = ""; }; - 2C99E13C2E6B0E4B4E8A112D8998A43C /* CoreBluetoothMock.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.release.xcconfig; sourceTree = ""; }; - 2D135B24F42296C5FFF236829EC814A7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - 302B6C1B197F88C0C758F15AC93AE02F /* CBMAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMAttributes.swift; path = CoreBluetoothMock/CBMAttributes.swift; sourceTree = ""; }; - 30FA04113853DB205F4F940DC960DF07 /* CoreBluetoothMock-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-prefix.pch"; sourceTree = ""; }; + 265C6A36C39714F7F14D77D413A95779 /* CoreBluetoothMock-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-prefix.pch"; sourceTree = ""; }; + 2CDE2AD4B2D29899C20C92B124CF41DC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 2DB8905E80B68966A6DA835964160C5C /* CBMPeer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeer.swift; path = CoreBluetoothMock/CBMPeer.swift; sourceTree = ""; }; + 3537DE15F30A5E5E68346B456C032F1C /* CBMPeripheralSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpec.swift; path = CoreBluetoothMock/CBMPeripheralSpec.swift; sourceTree = ""; }; + 3F652B68A215DC05E41E421B437AA58F /* CBMAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMAttributes.swift; path = CoreBluetoothMock/CBMAttributes.swift; sourceTree = ""; }; + 497DF3AD9669BF1549CED977CA2D20E1 /* CBMPeripheralDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegate.swift; path = CoreBluetoothMock/CBMPeripheralDelegate.swift; sourceTree = ""; }; 49C5B2698EFAB36B4C94DDBD6245C469 /* Pods-nRFBlinky-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky-umbrella.h"; sourceTree = ""; }; 4E184D822F902304BAA7F65D6A90587B /* Pods-nRFBlinky-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky-dummy.m"; sourceTree = ""; }; - 542B4E8DC5D095BF492E2150101C8B3D /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; sourceTree = ""; }; + 5732EE2493F5254DC73FAF4AEFB4355F /* CBMCentralManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegate.swift; path = CoreBluetoothMock/CBMCentralManagerDelegate.swift; sourceTree = ""; }; 574235F7BEB93EAB469098C7D5C07A8C /* Pods-nRFBlinky_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky_Tests-acknowledgements.markdown"; sourceTree = ""; }; 58D566B721898E1D43CFE4A9BFB4EA88 /* Pods-nRFBlinky.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky.debug.xcconfig"; sourceTree = ""; }; - 5B1F8A700480DB04E376A96A5D16E728 /* CoreBluetoothMock-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CoreBluetoothMock-dummy.m"; sourceTree = ""; }; + 5A0CE30D3AC9BD23A8A74D32AED42170 /* CoreBluetoothMock.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CoreBluetoothMock.modulemap; sourceTree = ""; }; + 5F8BCEACA87669F54C01A8A8171F9436 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 601EB604CAC3ECACFB55BDBEDB2B2FF8 /* Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh"; sourceTree = ""; }; 60EDDADB5A72F73CE358CC9DD73E6E4D /* Pods-nRFBlinky-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-Info.plist"; sourceTree = ""; }; 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky_Tests"; path = Pods_nRFBlinky_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6FBDFB4478025E4B86C606AD00164AD5 /* CBMPeer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeer.swift; path = CoreBluetoothMock/CBMPeer.swift; sourceTree = ""; }; 72D8941B2D1FDDEABD4AE7C02FED240C /* Pods-nRFBlinky_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky_Tests.debug.xcconfig"; sourceTree = ""; }; 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 73F49D0D11CA3BC68F1FFF1BB879E869 /* Pods-nRFBlinky_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky_Tests.release.xcconfig"; sourceTree = ""; }; 75DD36E0C1A14D8060C2AF6DFF30D574 /* Pods-nRFBlinky-nRFBlinky_UITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-nRFBlinky_UITests-Info.plist"; sourceTree = ""; }; - 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CoreBluetoothMock.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CoreBluetoothMock; path = CoreBluetoothMock.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 77A61BDF33ED282A7D748B4FC5DAE523 /* Pods-nRFBlinky_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky_Tests-umbrella.h"; sourceTree = ""; }; 841F4A2347EB60F32CD0D3903EA8A854 /* Pods-nRFBlinky-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-acknowledgements.plist"; sourceTree = ""; }; - 85B1D09A64C3FA37D5C6AC2DBC147B10 /* CoreBluetoothMock.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.debug.xcconfig; sourceTree = ""; }; - 85BF8C70A395140BDE1877927469A6D0 /* CBMCentralManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManager.swift; path = CoreBluetoothMock/CBMCentralManager.swift; sourceTree = ""; }; 88D27FB2652F32CA77F55A6A7C490761 /* Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.markdown"; sourceTree = ""; }; - 8D4A29D3ACD91817A2A6F5EBE160B279 /* CBMPeripheralDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegate.swift; path = CoreBluetoothMock/CBMPeripheralDelegate.swift; sourceTree = ""; }; + 8AA965671A4B327091BBFEE5BB792FA7 /* Documentation.docc */ = {isa = PBXFileReference; includeInIndex = 1; name = Documentation.docc; path = CoreBluetoothMock/Documentation.docc; sourceTree = ""; }; 8E090B58AD04F7215131769994A091A3 /* Pods-nRFBlinky-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky-acknowledgements.markdown"; sourceTree = ""; }; 8E161584725FCAD8B1A028E8DEB9486A /* Pods-nRFBlinky_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky_Tests-Info.plist"; sourceTree = ""; }; - 91005B1F2B37ACFFF064F0203DC59A89 /* CBMPeripheral.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheral.swift; path = CoreBluetoothMock/CBMPeripheral.swift; sourceTree = ""; }; - 930F8FC27EC2A8FA2D3BB47D2F35C39D /* CoreBluetoothMock-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-umbrella.h"; sourceTree = ""; }; - 9407630EBD5BC7FC8F1AD9092CF263F9 /* CBMCentralManagerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegateProxy.swift; path = CoreBluetoothMock/CBMCentralManagerDelegateProxy.swift; sourceTree = ""; }; - 9A9CAA178E4930BB951503A38E7048C4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 9C5103A94668BA93B8DCDBD27491209F /* Pods-nRFBlinky.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky.release.xcconfig"; sourceTree = ""; }; - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9E47724F38F58189A2FC36C853941E76 /* Pods-nRFBlinky_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky_Tests-acknowledgements.plist"; sourceTree = ""; }; - A14B4B0603B0B55E2BBC5C972A20DB72 /* CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CoreBluetoothMock-Info.plist"; sourceTree = ""; }; - A96A3F401E65A42A36904EBD5252985C /* CBMCentralManagerNative.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerNative.swift; path = CoreBluetoothMock/CBMCentralManagerNative.swift; sourceTree = ""; }; - B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_nRFBlinky.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C21D8CAF91CB43D0BE216F9EEA09CDEA /* CBMCentralManagerFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerFactory.swift; path = CoreBluetoothMock/CBMCentralManagerFactory.swift; sourceTree = ""; }; + 9FAACC70E95BA885EB8F23C856AC2F03 /* CBMPeripheralPreview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralPreview.swift; path = CoreBluetoothMock/CBMPeripheralPreview.swift; sourceTree = ""; }; + B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky"; path = Pods_nRFBlinky.framework; sourceTree = BUILT_PRODUCTS_DIR; }; C348C9192BF2799624BD1BAAF5DFED0C /* Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig"; sourceTree = ""; }; C366D985CC68EF9A7B5BBB3186F44D2D /* Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig"; sourceTree = ""; }; + C53EE2B1C373C6D868B5708A78D94375 /* CBMCentralManagerMock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerMock.swift; path = CoreBluetoothMock/CBMCentralManagerMock.swift; sourceTree = ""; }; C6B191FE01870F950E66F66A65810125 /* Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.plist"; sourceTree = ""; }; - C857B915479E7FFBCF4BCFF83B8CFE84 /* CBMPeripheralSpecDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpecDelegate.swift; path = CoreBluetoothMock/CBMPeripheralSpecDelegate.swift; sourceTree = ""; }; - CB408E8AFF1F660E3B5C87186C06C67F /* CBMPeripheralPreview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralPreview.swift; path = CoreBluetoothMock/CBMPeripheralPreview.swift; sourceTree = ""; }; - CCE197D9FB847BA7E58D8975A38AD969 /* CBMManagerTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMManagerTypes.swift; path = CoreBluetoothMock/CBMManagerTypes.swift; sourceTree = ""; }; - CFC94BDBE2EC82D5D122A0729CF74BC4 /* CBMCentralManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegate.swift; path = CoreBluetoothMock/CBMCentralManagerDelegate.swift; sourceTree = ""; }; - D1C55A5F5FDBA7352275FD9F3273D43F /* CBMPeripheralDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegateProxy.swift; path = CoreBluetoothMock/CBMPeripheralDelegateProxy.swift; sourceTree = ""; }; - E0730100E45F2B5903D4110E9E6F85B0 /* CBMCentralManagerMock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerMock.swift; path = CoreBluetoothMock/CBMCentralManagerMock.swift; sourceTree = ""; }; + CDBD69D471972AD7E7D575A6DBD62E8A /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; sourceTree = ""; }; + E13B2D971184F621D9E21667DA6FA1D4 /* CBMCentralManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManager.swift; path = CoreBluetoothMock/CBMCentralManager.swift; sourceTree = ""; }; E51C3B2EBE3D334E3BD361653A43734F /* Pods-nRFBlinky_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky_Tests.modulemap"; sourceTree = ""; }; - EBB7873C3A9433A954AB79F157D860DF /* CoreBluetoothMock.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CoreBluetoothMock.modulemap; sourceTree = ""; }; - F4BBF203940242312F9F502D40C174E4 /* CBMPeripheralSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpec.swift; path = CoreBluetoothMock/CBMPeripheralSpec.swift; sourceTree = ""; }; + E61F49B07A003DEE8BFB8CD31B4A471A /* CoreBluetoothMock-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-umbrella.h"; sourceTree = ""; }; + EEC16A2E868E9BC166B87037D65E8120 /* CBMPeripheralSpecDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpecDelegate.swift; path = CoreBluetoothMock/CBMPeripheralSpecDelegate.swift; sourceTree = ""; }; + F3119999274AEE51571CCA4BF17A7D5F /* CoreBluetoothMock.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CoreBluetoothMock.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods-nRFBlinky-nRFBlinky_UITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky-nRFBlinky_UITests"; path = Pods_nRFBlinky_nRFBlinky_UITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FE1D04C54765744955007ABBF063D0A6 /* CoreBluetoothMock.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.release.xcconfig; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 4ED429848847BD6E98E00AFC4E3F7B3E /* Frameworks */ = { + 30C6A085E2B969E98C36A861AE777176 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5578708761FD4A0A49F6E7F04C62A801 /* Frameworks */ = { + 8EC3BE5F6EC24E3B524051F12B4DE3F1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BF4A6369A028D1BF22AD4FEFCC6BB2C8 /* Foundation.framework in Frameworks */, + F47928F5B82D2134B9A82C308779EB00 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -181,9 +178,9 @@ 088E62683BA657E94911AE22A17008AB /* Products */ = { isa = PBXGroup; children = ( - 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */, - 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */, - B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */, + 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */, + 04D9EA8C73EABB8E0BF81D113DF79EE5 /* CoreBluetoothMock-PrivacyInfo */, + B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */, FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods-nRFBlinky-nRFBlinky_UITests */, 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */, ); @@ -206,43 +203,6 @@ path = "Target Support Files/Pods-nRFBlinky_Tests"; sourceTree = ""; }; - 2043E321F8F303951A1078C86A001A34 /* CoreBluetoothMock */ = { - isa = PBXGroup; - children = ( - 302B6C1B197F88C0C758F15AC93AE02F /* CBMAttributes.swift */, - 85BF8C70A395140BDE1877927469A6D0 /* CBMCentralManager.swift */, - CFC94BDBE2EC82D5D122A0729CF74BC4 /* CBMCentralManagerDelegate.swift */, - 9407630EBD5BC7FC8F1AD9092CF263F9 /* CBMCentralManagerDelegateProxy.swift */, - C21D8CAF91CB43D0BE216F9EEA09CDEA /* CBMCentralManagerFactory.swift */, - E0730100E45F2B5903D4110E9E6F85B0 /* CBMCentralManagerMock.swift */, - A96A3F401E65A42A36904EBD5252985C /* CBMCentralManagerNative.swift */, - CCE197D9FB847BA7E58D8975A38AD969 /* CBMManagerTypes.swift */, - 6FBDFB4478025E4B86C606AD00164AD5 /* CBMPeer.swift */, - 91005B1F2B37ACFFF064F0203DC59A89 /* CBMPeripheral.swift */, - 8D4A29D3ACD91817A2A6F5EBE160B279 /* CBMPeripheralDelegate.swift */, - D1C55A5F5FDBA7352275FD9F3273D43F /* CBMPeripheralDelegateProxy.swift */, - CB408E8AFF1F660E3B5C87186C06C67F /* CBMPeripheralPreview.swift */, - F4BBF203940242312F9F502D40C174E4 /* CBMPeripheralSpec.swift */, - C857B915479E7FFBCF4BCFF83B8CFE84 /* CBMPeripheralSpecDelegate.swift */, - 15A440E77315ABFAFE892B30FFDF6E09 /* Documentation.docc */, - 1B6C389415E0D9A43B237246A7B310FB /* PrivacyInfo.xcprivacy */, - 2CA75ED9661D2276973D3906BACDF10F /* Pod */, - 64B0F70FFDC0CDCC627167EA303D0628 /* Support Files */, - ); - name = CoreBluetoothMock; - path = ../..; - sourceTree = ""; - }; - 2CA75ED9661D2276973D3906BACDF10F /* Pod */ = { - isa = PBXGroup; - children = ( - 06938B51C0B921FD24F65A621833E63C /* CoreBluetoothMock.podspec */, - 9A9CAA178E4930BB951503A38E7048C4 /* LICENSE */, - 2D135B24F42296C5FFF236829EC814A7 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; 3A45CAB5CC6B1759026B856C4F9A8654 /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -253,12 +213,30 @@ name = "Targets Support Files"; sourceTree = ""; }; - 3E19703E7C77FDA1AC9857C1714E06E8 /* Development Pods */ = { + 3B0204A897C299BFDCC217D0DE5D142C /* CoreBluetoothMock */ = { isa = PBXGroup; children = ( - 2043E321F8F303951A1078C86A001A34 /* CoreBluetoothMock */, + 3F652B68A215DC05E41E421B437AA58F /* CBMAttributes.swift */, + E13B2D971184F621D9E21667DA6FA1D4 /* CBMCentralManager.swift */, + 5732EE2493F5254DC73FAF4AEFB4355F /* CBMCentralManagerDelegate.swift */, + 1B51C7BF996DE72681B2080563911F45 /* CBMCentralManagerDelegateProxy.swift */, + 03923AB8A466287408CFDD8E586EAAD1 /* CBMCentralManagerFactory.swift */, + C53EE2B1C373C6D868B5708A78D94375 /* CBMCentralManagerMock.swift */, + 0FB5EA764F851D6A9FB5A6F76FE1713B /* CBMCentralManagerNative.swift */, + 12DA96F64B212590545643E03EB75E6D /* CBMManagerTypes.swift */, + 2DB8905E80B68966A6DA835964160C5C /* CBMPeer.swift */, + 184F4CE9B2340161CE21318FB75FC431 /* CBMPeripheral.swift */, + 497DF3AD9669BF1549CED977CA2D20E1 /* CBMPeripheralDelegate.swift */, + 20240FE702F5810BB0281322EB659697 /* CBMPeripheralDelegateProxy.swift */, + 9FAACC70E95BA885EB8F23C856AC2F03 /* CBMPeripheralPreview.swift */, + 3537DE15F30A5E5E68346B456C032F1C /* CBMPeripheralSpec.swift */, + EEC16A2E868E9BC166B87037D65E8120 /* CBMPeripheralSpecDelegate.swift */, + 8AA965671A4B327091BBFEE5BB792FA7 /* Documentation.docc */, + E598FFDCCD4F2DAA0917532355D635E5 /* Pod */, + E73480A85C9A4BEDF95120F01A83FD16 /* Support Files */, ); - name = "Development Pods"; + name = CoreBluetoothMock; + path = ../..; sourceTree = ""; }; 578452D2E740E91742655AC8F1636D1F /* iOS */ = { @@ -269,22 +247,6 @@ name = iOS; sourceTree = ""; }; - 64B0F70FFDC0CDCC627167EA303D0628 /* Support Files */ = { - isa = PBXGroup; - children = ( - EBB7873C3A9433A954AB79F157D860DF /* CoreBluetoothMock.modulemap */, - 5B1F8A700480DB04E376A96A5D16E728 /* CoreBluetoothMock-dummy.m */, - A14B4B0603B0B55E2BBC5C972A20DB72 /* CoreBluetoothMock-Info.plist */, - 30FA04113853DB205F4F940DC960DF07 /* CoreBluetoothMock-prefix.pch */, - 930F8FC27EC2A8FA2D3BB47D2F35C39D /* CoreBluetoothMock-umbrella.h */, - 85B1D09A64C3FA37D5C6AC2DBC147B10 /* CoreBluetoothMock.debug.xcconfig */, - 2C99E13C2E6B0E4B4E8A112D8998A43C /* CoreBluetoothMock.release.xcconfig */, - 542B4E8DC5D095BF492E2150101C8B3D /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */, - ); - name = "Support Files"; - path = "Example/Pods/Target Support Files/CoreBluetoothMock"; - sourceTree = ""; - }; AEDF17C5AB34817EE4F87ADFB119F996 /* Pods-nRFBlinky-nRFBlinky_UITests */ = { isa = PBXGroup; children = ( @@ -306,7 +268,7 @@ isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 3E19703E7C77FDA1AC9857C1714E06E8 /* Development Pods */, + E2A03D30817A86394041E2695AB26222 /* Development Pods */, D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 088E62683BA657E94911AE22A17008AB /* Products */, 3A45CAB5CC6B1759026B856C4F9A8654 /* Targets Support Files */, @@ -321,6 +283,40 @@ name = Frameworks; sourceTree = ""; }; + E2A03D30817A86394041E2695AB26222 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 3B0204A897C299BFDCC217D0DE5D142C /* CoreBluetoothMock */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + E598FFDCCD4F2DAA0917532355D635E5 /* Pod */ = { + isa = PBXGroup; + children = ( + F3119999274AEE51571CCA4BF17A7D5F /* CoreBluetoothMock.podspec */, + 2CDE2AD4B2D29899C20C92B124CF41DC /* LICENSE */, + 5F8BCEACA87669F54C01A8A8171F9436 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + E73480A85C9A4BEDF95120F01A83FD16 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5A0CE30D3AC9BD23A8A74D32AED42170 /* CoreBluetoothMock.modulemap */, + 05408ECF6BA08BD901BC5C7A186412BF /* CoreBluetoothMock-dummy.m */, + 0B8F33B0490E8B2934B94E30C462FB2C /* CoreBluetoothMock-Info.plist */, + 265C6A36C39714F7F14D77D413A95779 /* CoreBluetoothMock-prefix.pch */, + E61F49B07A003DEE8BFB8CD31B4A471A /* CoreBluetoothMock-umbrella.h */, + 1DFCEBC6EC2184F171BCAF734E8340DB /* CoreBluetoothMock.debug.xcconfig */, + FE1D04C54765744955007ABBF063D0A6 /* CoreBluetoothMock.release.xcconfig */, + CDBD69D471972AD7E7D575A6DBD62E8A /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/CoreBluetoothMock"; + sourceTree = ""; + }; F63676E082B6EC6B5406B878027370CC /* Pods-nRFBlinky */ = { isa = PBXGroup; children = ( @@ -341,14 +337,6 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 0F5BBB5E1C8D36227580FD5D4C056211 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - E1548D659124C3E56E05919DA3F1D662 /* CoreBluetoothMock-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 37595DE472A7D621170EE7A61294C2C3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -373,26 +361,34 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AC8AE62E65AE613FD4DC2414B9B8F22A /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D38C80C6B9801478ACBE49C9EEA36EBB /* CoreBluetoothMock-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */ = { isa = PBXNativeTarget; - buildConfigurationList = BDACFCD99AB7E8BECE9295C683075D8D /* Build configuration list for PBXNativeTarget "CoreBluetoothMock" */; + buildConfigurationList = 74159874C89F5CD24A84AFDC75F0A59F /* Build configuration list for PBXNativeTarget "CoreBluetoothMock" */; buildPhases = ( - 0F5BBB5E1C8D36227580FD5D4C056211 /* Headers */, - 21EB30AD5AEF62EE82F861530AA8D5D0 /* Sources */, - 5578708761FD4A0A49F6E7F04C62A801 /* Frameworks */, - 5362D235293AE8E26A7245001FC885E3 /* Resources */, + AC8AE62E65AE613FD4DC2414B9B8F22A /* Headers */, + F298D8940C09A2FECD7DEABB49A891BC /* Sources */, + 8EC3BE5F6EC24E3B524051F12B4DE3F1 /* Frameworks */, + CD7B18F33C5B9EB5C9AA6ABCA6134C62 /* Resources */, ); buildRules = ( ); dependencies = ( - 61584857F0A9E02DD2A6FAD4EE933023 /* PBXTargetDependency */, + 65E8E4856ACF72404679D66A8B91741D /* PBXTargetDependency */, ); name = CoreBluetoothMock; productName = CoreBluetoothMock; - productReference = 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */; + productReference = 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */; productType = "com.apple.product-type.framework"; }; 7AC722D61390476FAC05FA5E388C0381 /* Pods-nRFBlinky_Tests */ = { @@ -407,7 +403,7 @@ buildRules = ( ); dependencies = ( - B3EE45145958C95FC491F875B80383EC /* PBXTargetDependency */, + 980D16D16C8AC372F1EA5F17B005F34C /* PBXTargetDependency */, ); name = "Pods-nRFBlinky_Tests"; productName = Pods_nRFBlinky_Tests; @@ -416,11 +412,11 @@ }; A9A5DBAF5BD0A85F5EAAC4F6C8CAE589 /* CoreBluetoothMock-PrivacyInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 6C913A5D7DE55D64F567BF253644DCF3 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */; + buildConfigurationList = D5E525E2DFE7EE98800D3CECC12556D7 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */; buildPhases = ( - DAA6A1199F54AA93F4A6D772D2159D7B /* Sources */, - 4ED429848847BD6E98E00AFC4E3F7B3E /* Frameworks */, - 4AE9E235FC08D853C8BE92FE5D4B857F /* Resources */, + FF442FAD91F4F7C50E10EC2304B47C62 /* Sources */, + 30C6A085E2B969E98C36A861AE777176 /* Frameworks */, + 76CB1E443ED1DC1147E883629F5A282A /* Resources */, ); buildRules = ( ); @@ -428,7 +424,7 @@ ); name = "CoreBluetoothMock-PrivacyInfo"; productName = PrivacyInfo; - productReference = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */; + productReference = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* CoreBluetoothMock-PrivacyInfo */; productType = "com.apple.product-type.bundle"; }; CD3FFBF5C2F9F871EAF22AF6B1B85B05 /* Pods-nRFBlinky-nRFBlinky_UITests */ = { @@ -443,7 +439,7 @@ buildRules = ( ); dependencies = ( - 9D84E0272A46153BC850099359727015 /* PBXTargetDependency */, + 648B37818036CCEB33F6483656845F90 /* PBXTargetDependency */, ); name = "Pods-nRFBlinky-nRFBlinky_UITests"; productName = Pods_nRFBlinky_nRFBlinky_UITests; @@ -462,11 +458,11 @@ buildRules = ( ); dependencies = ( - 5AA5A3F03E35E2C7FDE1C3E70273E2E9 /* PBXTargetDependency */, + 42002777112D44E6D1C3A8DDDACB5C0E /* PBXTargetDependency */, ); name = "Pods-nRFBlinky"; productName = Pods_nRFBlinky; - productReference = B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */; + productReference = B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -515,57 +511,31 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4AE9E235FC08D853C8BE92FE5D4B857F /* Resources */ = { + 76CB1E443ED1DC1147E883629F5A282A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - CEEAC1098EBEA2A58E65D3CF0F7D7B7E /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5362D235293AE8E26A7245001FC885E3 /* Resources */ = { + 76DB5A76F9ECAA2C1372FE455326F3F2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4FE2CE7C5AC276736977ABE18AA630CF /* PrivacyInfo.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 76DB5A76F9ECAA2C1372FE455326F3F2 /* Resources */ = { + CD7B18F33C5B9EB5C9AA6ABCA6134C62 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 48E12CE03EFDE5EE32325AD1A726786C /* CoreBluetoothMock-PrivacyInfo in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 21EB30AD5AEF62EE82F861530AA8D5D0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 163044326A3EDA5D3CFD4C67154204A7 /* CBMAttributes.swift in Sources */, - AC7F97116A9B417EFA3DA6A1589556B3 /* CBMCentralManager.swift in Sources */, - EE9BB1ABC315577B96D4F535BFB19552 /* CBMCentralManagerDelegate.swift in Sources */, - EC00EF49529334EF8801024F0500469B /* CBMCentralManagerDelegateProxy.swift in Sources */, - 89EAD28320FE453DAA049315A836DFE3 /* CBMCentralManagerFactory.swift in Sources */, - 903B670C1FDCA43AFDD59431DA0C0706 /* CBMCentralManagerMock.swift in Sources */, - CCEAF594871356C68C751F681BBF2377 /* CBMCentralManagerNative.swift in Sources */, - E5BDB07ADCB53D7633DC9AF7DF07A99E /* CBMManagerTypes.swift in Sources */, - 2AEC49A0D253410668378C32E38E6C68 /* CBMPeer.swift in Sources */, - 13A434DDEC88BA10891CB7EC2FB0AD1C /* CBMPeripheral.swift in Sources */, - 65D33B6FB56496291472C532ACDA22A2 /* CBMPeripheralDelegate.swift in Sources */, - E64E49E3B753055603C49D31E3B44F60 /* CBMPeripheralDelegateProxy.swift in Sources */, - D8270C0417CAF3E19CE4CD6237B277FF /* CBMPeripheralPreview.swift in Sources */, - 2ACD11A4FC1126801772B90F4F9D7F3A /* CBMPeripheralSpec.swift in Sources */, - E6B7C37CC1408E99C4F002FD184A1D96 /* CBMPeripheralSpecDelegate.swift in Sources */, - 1E71700009466AC4FC9D61EBDF16251F /* CoreBluetoothMock-dummy.m in Sources */, - 89221008937895C3257BBE4832A8FD64 /* Documentation.docc in Sources */, - 6AB39C94A2CC9D1FA57855543D32FCF8 /* PrivacyInfo.xcprivacy in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 469F3C2BC2456F353AE8D1529BD9BB0E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -590,7 +560,31 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DAA6A1199F54AA93F4A6D772D2159D7B /* Sources */ = { + F298D8940C09A2FECD7DEABB49A891BC /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 87A1A40A1E0C43A9C4E66B434C9B8F86 /* CBMAttributes.swift in Sources */, + F84A3E5690BB9CAFD7EB1961397E9B91 /* CBMCentralManager.swift in Sources */, + 389E191EB10C2588918B28FE6B80F53E /* CBMCentralManagerDelegate.swift in Sources */, + F681F449BB935B07971654FCE06E106C /* CBMCentralManagerDelegateProxy.swift in Sources */, + 83C9D70917968828934D5285C036350F /* CBMCentralManagerFactory.swift in Sources */, + 464E5DBC8E72E10CB1FFF49CF8DF1DB6 /* CBMCentralManagerMock.swift in Sources */, + C2CBD808636E7B5517CE192B426CFB78 /* CBMCentralManagerNative.swift in Sources */, + A6980110A0540347283B5EA504CA6E56 /* CBMManagerTypes.swift in Sources */, + 164F0570F03B92E344CB080009697F42 /* CBMPeer.swift in Sources */, + 7705DA0457D1282EA86F07AA6A370B41 /* CBMPeripheral.swift in Sources */, + 0F83C34F8007A2C0491B834BC1683BAF /* CBMPeripheralDelegate.swift in Sources */, + F80CC7A453546E5C2295024F41EECA4D /* CBMPeripheralDelegateProxy.swift in Sources */, + 37DC2723452C022949DCFAE6C1A2123F /* CBMPeripheralPreview.swift in Sources */, + BCDF8FBE308885D4504E63C4F8870FD2 /* CBMPeripheralSpec.swift in Sources */, + 43FA03536E1A7D57B751480D0C380DA6 /* CBMPeripheralSpecDelegate.swift in Sources */, + 1A4878A38EC2838E2CF72A428EAD75C8 /* CoreBluetoothMock-dummy.m in Sources */, + CC79345874A5D851719587482FD53039 /* Documentation.docc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FF442FAD91F4F7C50E10EC2304B47C62 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -600,121 +594,33 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 5AA5A3F03E35E2C7FDE1C3E70273E2E9 /* PBXTargetDependency */ = { + 42002777112D44E6D1C3A8DDDACB5C0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CoreBluetoothMock; target = 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */; - targetProxy = 7ACEB9113DE9EE191C645BDD80AAB5FB /* PBXContainerItemProxy */; + targetProxy = 5BAC23A6401ED7FD6A908144BC52289D /* PBXContainerItemProxy */; }; - 61584857F0A9E02DD2A6FAD4EE933023 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "CoreBluetoothMock-PrivacyInfo"; - target = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589 /* CoreBluetoothMock-PrivacyInfo */; - targetProxy = 0419CC7CA65C3A7779A20D6DFF74B5DC /* PBXContainerItemProxy */; - }; - 9D84E0272A46153BC850099359727015 /* PBXTargetDependency */ = { + 648B37818036CCEB33F6483656845F90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CoreBluetoothMock; target = 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */; - targetProxy = FE9350EF4CCC6E8D75BDCDB384FC1432 /* PBXContainerItemProxy */; + targetProxy = 1CF75A301DD37C73A59CD58F7A633D76 /* PBXContainerItemProxy */; + }; + 65E8E4856ACF72404679D66A8B91741D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "CoreBluetoothMock-PrivacyInfo"; + target = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589 /* CoreBluetoothMock-PrivacyInfo */; + targetProxy = BE75C12FBB0956B1942D41A58A6580E6 /* PBXContainerItemProxy */; }; - B3EE45145958C95FC491F875B80383EC /* PBXTargetDependency */ = { + 980D16D16C8AC372F1EA5F17B005F34C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Pods-nRFBlinky"; target = D8DA31B307E5478D785EED0F0F084E24 /* Pods-nRFBlinky */; - targetProxy = F8B424CD3A3394627BB8D128D025AC25 /* PBXContainerItemProxy */; + targetProxy = 67E4B48132FC1F42996283728E109E49 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 010100CB2F81959DF4B2A0221409B27D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 85B1D09A64C3FA37D5C6AC2DBC147B10 /* CoreBluetoothMock.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CoreBluetoothMock"; - IBSC_MODULE = CoreBluetoothMock; - INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = PrivacyInfo; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 08DA54DE3CC67AB69363A01A26083306 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2C99E13C2E6B0E4B4E8A112D8998A43C /* CoreBluetoothMock.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock.modulemap"; - PRODUCT_MODULE_NAME = CoreBluetoothMock; - PRODUCT_NAME = CoreBluetoothMock; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 245CF5C7817050E542488225BCCB841E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 85B1D09A64C3FA37D5C6AC2DBC147B10 /* CoreBluetoothMock.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock.modulemap"; - PRODUCT_MODULE_NAME = CoreBluetoothMock; - PRODUCT_NAME = CoreBluetoothMock; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 28CBB621F752C36F455F588CA954CEC6 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 9C5103A94668BA93B8DCDBD27491209F /* Pods-nRFBlinky.release.xcconfig */; @@ -857,6 +763,42 @@ }; name = Debug; }; + 54314D8EBB50D0FC917541C7D8126BEA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE1D04C54765744955007ABBF063D0A6 /* CoreBluetoothMock.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock.modulemap"; + PRODUCT_MODULE_NAME = CoreBluetoothMock; + PRODUCT_NAME = CoreBluetoothMock; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 5694F873F21AA88457890013B29DF923 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 73F49D0D11CA3BC68F1FFF1BB879E869 /* Pods-nRFBlinky_Tests.release.xcconfig */; @@ -895,6 +837,41 @@ }; name = Release; }; + 58D7002EDCE537470D44D0E6C1599012 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1DFCEBC6EC2184F171BCAF734E8340DB /* CoreBluetoothMock.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock.modulemap"; + PRODUCT_MODULE_NAME = CoreBluetoothMock; + PRODUCT_NAME = CoreBluetoothMock; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -994,9 +971,9 @@ }; name = Debug; }; - 791B9DA62030105C99999476B72BA369 /* Release */ = { + 763E125DBB71B90FDEBF11399AA69072 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2C99E13C2E6B0E4B4E8A112D8998A43C /* CoreBluetoothMock.release.xcconfig */; + baseConfigurationReference = FE1D04C54765744955007ABBF063D0A6 /* CoreBluetoothMock.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CoreBluetoothMock"; @@ -1085,6 +1062,23 @@ }; name = Debug; }; + DB0731AD9A8296D014878ED72BCD170C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1DFCEBC6EC2184F171BCAF734E8340DB /* CoreBluetoothMock.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CoreBluetoothMock"; + IBSC_MODULE = CoreBluetoothMock; + INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = PrivacyInfo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -1106,11 +1100,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6C913A5D7DE55D64F567BF253644DCF3 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */ = { + 74159874C89F5CD24A84AFDC75F0A59F /* Build configuration list for PBXNativeTarget "CoreBluetoothMock" */ = { isa = XCConfigurationList; buildConfigurations = ( - 010100CB2F81959DF4B2A0221409B27D /* Debug */, - 791B9DA62030105C99999476B72BA369 /* Release */, + 58D7002EDCE537470D44D0E6C1599012 /* Debug */, + 54314D8EBB50D0FC917541C7D8126BEA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -1133,11 +1127,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BDACFCD99AB7E8BECE9295C683075D8D /* Build configuration list for PBXNativeTarget "CoreBluetoothMock" */ = { + D5E525E2DFE7EE98800D3CECC12556D7 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */ = { isa = XCConfigurationList; buildConfigurations = ( - 245CF5C7817050E542488225BCCB841E /* Debug */, - 08DA54DE3CC67AB69363A01A26083306 /* Release */, + DB0731AD9A8296D014878ED72BCD170C /* Debug */, + 763E125DBB71B90FDEBF11399AA69072 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Example/nRFBlinky.xcodeproj/project.pbxproj b/Example/nRFBlinky.xcodeproj/project.pbxproj index b8a48fc..2d51ab1 100644 --- a/Example/nRFBlinky.xcodeproj/project.pbxproj +++ b/Example/nRFBlinky.xcodeproj/project.pbxproj @@ -412,7 +412,7 @@ attributes = { BuildIndependentTargetsInParallel = YES; LastSwiftUpdateCheck = 1130; - LastUpgradeCheck = 1430; + LastUpgradeCheck = 1520; ORGANIZATIONNAME = CocoaPods; TargetAttributes = { 526EA539240D2F8100BF70B2 = { @@ -744,7 +744,7 @@ DEVELOPMENT_TEAM = P3R8YQEV4L; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = "UI Tests/Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -779,7 +779,7 @@ DEVELOPMENT_TEAM = P3R8YQEV4L; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = nRFBlinky_UITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -863,6 +863,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; @@ -893,6 +894,7 @@ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; @@ -922,6 +924,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; @@ -952,6 +955,7 @@ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -978,6 +982,7 @@ CODE_SIGN_ENTITLEMENTS = nRFBlinky/nRFBlinky.entitlements; CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = P3R8YQEV4L; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)"; INFOPLIST_FILE = nRFBlinky/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "nRF Blinky"; @@ -1009,6 +1014,7 @@ CODE_SIGN_ENTITLEMENTS = nRFBlinky/nRFBlinky.entitlements; CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = P3R8YQEV4L; + ENABLE_USER_SCRIPT_SANDBOXING = NO; INFOPLIST_FILE = nRFBlinky/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "nRF Blinky"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; diff --git a/Example/nRFBlinky.xcodeproj/xcshareddata/xcschemes/nRFBlinky.xcscheme b/Example/nRFBlinky.xcodeproj/xcshareddata/xcschemes/nRFBlinky.xcscheme index ab04c4c..d4e9d5b 100644 --- a/Example/nRFBlinky.xcodeproj/xcshareddata/xcschemes/nRFBlinky.xcscheme +++ b/Example/nRFBlinky.xcodeproj/xcshareddata/xcschemes/nRFBlinky.xcscheme @@ -1,6 +1,6 @@ + + + + diff --git a/Example/nRFBlinky.xcodeproj/xcshareddata/xcschemes/nRFBlinky_UITests.xcscheme b/Example/nRFBlinky.xcodeproj/xcshareddata/xcschemes/nRFBlinky_UITests.xcscheme index ca4797b..f01b163 100644 --- a/Example/nRFBlinky.xcodeproj/xcshareddata/xcschemes/nRFBlinky_UITests.xcscheme +++ b/Example/nRFBlinky.xcodeproj/xcshareddata/xcschemes/nRFBlinky_UITests.xcscheme @@ -1,6 +1,6 @@ Date: Mon, 19 Feb 2024 15:01:58 +0100 Subject: [PATCH 08/14] Setting deployment target for nRF Blinky to iOS 12 --- Example/nRFBlinky.xcodeproj/project.pbxproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Example/nRFBlinky.xcodeproj/project.pbxproj b/Example/nRFBlinky.xcodeproj/project.pbxproj index 2d51ab1..45b5b64 100644 --- a/Example/nRFBlinky.xcodeproj/project.pbxproj +++ b/Example/nRFBlinky.xcodeproj/project.pbxproj @@ -812,7 +812,7 @@ DEVELOPMENT_TEAM = P3R8YQEV4L; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -844,7 +844,7 @@ DEVELOPMENT_TEAM = P3R8YQEV4L; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = nRFBlinky_Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -910,7 +910,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_SWIFT_FLAGS = "-D DEBUG"; @@ -964,7 +964,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; MTL_ENABLE_DEBUG_INFO = NO; RUN_DOCUMENTATION_COMPILER = YES; SDKROOT = iphoneos; @@ -987,7 +987,7 @@ INFOPLIST_FILE = nRFBlinky/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "nRF Blinky"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1018,7 +1018,7 @@ INFOPLIST_FILE = nRFBlinky/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "nRF Blinky"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", From de77c5c7c5b19bbfce3badb42e8570edac686cb5 Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 15:02:14 +0100 Subject: [PATCH 09/14] Pod update --- Example/Podfile.lock | 2 +- Example/Pods/Manifest.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 43d6a12..746b13f 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - CoreBluetoothMock: f0d0a2abe6e22a875e8fd7f09da15f6f8d54e2c3 + CoreBluetoothMock: 75689dc1f4e77eacc2aa1444cf2fe73ba8485e77 PODFILE CHECKSUM: 0b65d3eb5c3b8364e0e8c102ccc0cee2258c07fb diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 43d6a12..746b13f 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - CoreBluetoothMock: f0d0a2abe6e22a875e8fd7f09da15f6f8d54e2c3 + CoreBluetoothMock: 75689dc1f4e77eacc2aa1444cf2fe73ba8485e77 PODFILE CHECKSUM: 0b65d3eb5c3b8364e0e8c102ccc0cee2258c07fb From 301d56428daea286e8da7eed345bd88fcb90e3da Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 15:15:08 +0100 Subject: [PATCH 10/14] Setting ENABLE_USER_SCRIPT_SANDBOXING to NO --- Example/nRFBlinky.xcodeproj/project.pbxproj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Example/nRFBlinky.xcodeproj/project.pbxproj b/Example/nRFBlinky.xcodeproj/project.pbxproj index 45b5b64..faf00f0 100644 --- a/Example/nRFBlinky.xcodeproj/project.pbxproj +++ b/Example/nRFBlinky.xcodeproj/project.pbxproj @@ -742,6 +742,7 @@ CODE_SIGN_STYLE = Automatic; DEBUG_INFORMATION_FORMAT = dwarf; DEVELOPMENT_TEAM = P3R8YQEV4L; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = "UI Tests/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -777,6 +778,7 @@ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = P3R8YQEV4L; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = nRFBlinky_UITests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -810,6 +812,7 @@ CODE_SIGN_STYLE = Automatic; DEBUG_INFORMATION_FORMAT = dwarf; DEVELOPMENT_TEAM = P3R8YQEV4L; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = Tests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -842,6 +845,7 @@ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = P3R8YQEV4L; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = nRFBlinky_Tests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; From 0d534b79b0c2a5448d50486f0568aeb191a4e82f Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 15:23:13 +0100 Subject: [PATCH 11/14] Documentation regenerated --- docs/css/chunk-384ef189.7ede1ea3.css | 9 ------- docs/css/chunk-c0335d80.10a2f091.css | 9 +++++++ docs/css/documentation-topic.1d1eec04.css | 9 +++++++ docs/css/documentation-topic.29351f99.css | 9 ------- .../documentation-topic~topic.b6287bcf.css | 9 +++++++ .../documentation-topic~topic.fccbd76c.css | 9 ------- ...opic~topic~tutorials-overview.1099452b.css | 9 ------- ...opic~topic~tutorials-overview.d6f5411c.css | 9 +++++++ docs/css/index.038e887c.css | 9 +++++++ docs/css/index.d5b499b0.css | 9 ------- docs/css/topic.726a35dc.css | 9 ------- docs/css/topic.d8c126f3.css | 9 +++++++ docs/css/tutorials-overview.2a582c39.css | 9 ------- docs/css/tutorials-overview.c249c765.css | 9 +++++++ .../data/documentation/corebluetoothmock.json | 2 +- .../cbmadvertisementconfig.json | 2 +- .../cbmadvertisementconfig/!=(_:_:).json | 2 +- .../cbmadvertisementconfig/==(_:_:).json | 2 +- .../cbmadvertisementconfig/data.json | 2 +- .../cbmadvertisementconfig/delay.json | 2 +- .../equatable-implementations.json | 2 +- .../cbmadvertisementconfig/hash(into:).json | 2 +- .../hashable-implementations.json | 2 +- ...al:delay:isadvertisingwhenconnected:).json | 2 +- .../cbmadvertisementconfig/interval.json | 2 +- .../isadvertisingwhenconnected.json | 2 +- .../cbmadvertisementdataisconnectable.json | 2 +- .../cbmadvertisementdatalocalnamekey.json | 2 +- ...madvertisementdatamanufacturerdatakey.json | 2 +- ...ertisementdataoverflowserviceuuidskey.json | 2 +- .../cbmadvertisementdataservicedatakey.json | 2 +- .../cbmadvertisementdataserviceuuidskey.json | 2 +- ...rtisementdatasolicitedserviceuuidskey.json | 2 +- .../cbmadvertisementdatatxpowerlevelkey.json | 2 +- .../corebluetoothmock/cbmatterror.json | 2 +- .../corebluetoothmock/cbmattribute.json | 2 +- .../cbmcccdescriptormock.json | 2 +- .../corebluetoothmock/cbmcentralmanager.json | 2 +- .../authorization-swift.property.json | 2 +- .../authorization-swift.type.property.json | 2 +- .../cancelperipheralconnection(_:).json | 2 +- .../connect(_:options:).json | 2 +- .../cbmcentralmanager/delegate.json | 2 +- .../cbmcentralmanager/init(_:).json | 2 +- .../cbmcentralmanager/isscanning.json | 2 +- ...veconnectedperipherals(withservices:).json | 2 +- ...retrieveperipherals(withidentifiers:).json | 2 +- ...forperipherals(withservices:options:).json | 2 +- .../cbmcentralmanager/state.json | 2 +- .../cbmcentralmanager/stopscan().json | 2 +- .../cbmcentralmanagerdelegate.json | 2 +- ..._:connectioneventdidoccur:for:)-1ay8d.json | 2 +- ..._:connectioneventdidoccur:for:)-3pqer.json | 2 +- .../centralmanager(_:didconnect:)-6tlfh.json | 2 +- .../centralmanager(_:didconnect:)-p052.json | 2 +- ...diddisconnectperipheral:error:)-1j8c2.json | 2 +- ...diddisconnectperipheral:error:)-1lv48.json | 2 +- ...scover:advertisementdata:rssi:)-9oxtp.json | 2 +- ...iscover:advertisementdata:rssi:)-oz3n.json | 2 +- ...ager(_:didfailtoconnect:error:)-2h1bb.json | 2 +- ...ager(_:didfailtoconnect:error:)-9sppj.json | 2 +- ...didupdateancsauthorizationfor:)-6msdh.json | 2 +- ...didupdateancsauthorizationfor:)-8t3sl.json | 2 +- ...ralmanager(_:willrestorestate:)-4zyhg.json | 2 +- ...ralmanager(_:willrestorestate:)-9qavl.json | 2 +- .../centralmanagerdidupdatestate(_:).json | 2 +- .../cbmcentralmanagerdelegateproxy.json | 2 +- ...nager(_:connectioneventdidoccur:for:).json | 2 +- .../centralmanager(_:didconnect:).json | 2 +- ...ger(_:diddisconnectperipheral:error:).json | 2 +- ...:diddiscover:advertisementdata:rssi:).json | 2 +- ...ralmanager(_:didfailtoconnect:error:).json | 2 +- ...ger(_:didupdateancsauthorizationfor:).json | 2 +- .../centralmanager(_:willrestorestate:).json | 2 +- .../centralmanagerdidupdatestate(_:).json | 2 +- .../connectioneventdidoccur.json | 2 +- .../didconnect.json | 2 +- .../diddisconnect.json | 2 +- .../diddiscoverperipheral.json | 2 +- .../didfailtoconnect.json | 2 +- .../didupdateancsauthorization.json | 2 +- .../didupdatestate.json | 2 +- .../willrestorestate.json | 2 +- .../cbmcentralmanagerfactory.json | 2 +- .../instance(delegate:queue:forcemock:).json | 2 +- ...ce(delegate:queue:options:forcemock:).json | 2 +- .../instance(forcemock:).json | 2 +- .../cbmcentralmanagermock.json | 2 +- .../authorization-swift.property.json | 2 +- .../authorization-swift.type.property.json | 2 +- .../cancelperipheralconnection(_:).json | 2 +- .../connect(_:options:).json | 2 +- .../cbmcentralmanagermock/init().json | 2 +- .../init(delegate:queue:).json | 2 +- .../init(delegate:queue:options:).json | 2 +- ...veconnectedperipherals(withservices:).json | 2 +- ...retrieveperipherals(withidentifiers:).json | 2 +- ...forperipherals(withservices:options:).json | 2 +- .../simulateauthorization(_:).json | 2 +- .../simulateinitialstate(_:).json | 2 +- .../simulateperipherals(_:).json | 2 +- .../simulatepoweroff().json | 2 +- .../simulatepoweron().json | 2 +- .../simulatestaterestoration.json | 2 +- .../cbmcentralmanagermock/state.json | 2 +- .../cbmcentralmanagermock/stopscan().json | 2 +- .../teardownsimulation().json | 2 +- .../cbmcentralmanagernative.json | 2 +- .../authorization-swift.property.json | 2 +- .../authorization-swift.type.property.json | 2 +- .../cancelperipheralconnection(_:).json | 2 +- .../connect(_:options:).json | 2 +- .../cbmcentralmanagernative/init().json | 2 +- .../init(delegate:queue:).json | 2 +- .../init(delegate:queue:options:).json | 2 +- .../cbmcentralmanagernative/isscanning.json | 2 +- ...veconnectedperipherals(withservices:).json | 2 +- ...retrieveperipherals(withidentifiers:).json | 2 +- ...forperipherals(withservices:options:).json | 2 +- .../cbmcentralmanagernative/state.json | 2 +- .../cbmcentralmanagernative/stopscan().json | 2 +- ...tralmanageroptionrestoreidentifierkey.json | 2 +- ...centralmanageroptionshowpoweralertkey.json | 2 +- ...ralmanagerrestoredstateperipheralskey.json | 2 +- ...ralmanagerrestoredstatescanoptionskey.json | 2 +- ...almanagerrestoredstatescanserviceskey.json | 2 +- ...almanagerscanoptionallowduplicateskey.json | 2 +- ...gerscanoptionsolicitedserviceuuidskey.json | 2 +- .../corebluetoothmock/cbmcharacteristic.json | 2 +- .../cbmcharacteristic/descriptors.json | 2 +- .../cbmcharacteristic/isnotifying.json | 2 +- .../cbmcharacteristic/properties.json | 2 +- .../cbmcharacteristic/service.json | 2 +- .../cbmcharacteristic/uuid.json | 2 +- .../cbmcharacteristic/value.json | 2 +- .../cbmcharacteristicmock.json | 2 +- .../cbmcharacteristicmock/descriptors.json | 2 +- .../init(type:properties:descriptors:).json | 2 +- .../cbmcharacteristicmock/isequal(_:).json | 2 +- .../cbmcharacteristicproperties.json | 2 +- .../cbmcharacteristicwritetype.json | 2 +- ...acteristicconfigurationdescriptormock.json | 2 +- .../init().json | 2 +- .../corebluetoothmock/cbmconnectionevent.json | 2 +- .../cbmconnectioneventmatchingoption.json | 2 +- ...peripheraloptionnotifyonconnectionkey.json | 2 +- ...ipheraloptionnotifyondisconnectionkey.json | 2 +- ...ripheraloptionnotifyonnotificationkey.json | 2 +- ...mconnectperipheraloptionstartdelaykey.json | 2 +- .../corebluetoothmock/cbmdescriptor.json | 2 +- .../cbmdescriptor/characteristic.json | 2 +- .../corebluetoothmock/cbmdescriptor/uuid.json | 2 +- .../cbmdescriptor/value.json | 2 +- .../corebluetoothmock/cbmdescriptormock.json | 2 +- .../cbmdescriptormock/init(type:).json | 2 +- .../cbmdescriptormock/isequal(_:).json | 2 +- .../corebluetoothmock/cbmerror.json | 2 +- .../corebluetoothmock/cbml2capchannel.json | 2 +- .../corebluetoothmock/cbml2cappsm.json | 2 +- .../cbmmanagerauthorization.json | 2 +- .../corebluetoothmock/cbmmanagerstate.json | 2 +- .../cbmmanagerstate/!=(_:_:).json | 2 +- .../equatable-implementations.json | 2 +- .../cbmmanagerstate/hash(into:).json | 2 +- .../cbmmanagerstate/hashvalue.json | 2 +- .../cbmmanagerstate/init(rawvalue:).json | 2 +- .../cbmmanagerstate/poweredoff.json | 2 +- .../cbmmanagerstate/poweredon.json | 2 +- .../rawrepresentable-implementations.json | 2 +- .../cbmmanagerstate/resetting.json | 2 +- .../cbmmanagerstate/unauthorized.json | 2 +- .../cbmmanagerstate/unknown.json | 2 +- .../cbmmanagerstate/unsupported.json | 2 +- .../corebluetoothmock/cbmpeer.json | 2 +- .../corebluetoothmock/cbmperipheral.json | 2 +- .../cansendwritewithoutresponse.json | 2 +- .../cbmperipheral/delegate.json | 2 +- .../discovercharacteristics(_:for:).json | 2 +- .../discoverdescriptors(for:).json | 2 +- .../discoverincludedservices(_:for:).json | 2 +- .../cbmperipheral/discoverservices(_:).json | 2 +- .../cbmperipheral/identifier.json | 2 +- .../maximumwritevaluelength(for:).json | 2 +- .../corebluetoothmock/cbmperipheral/name.json | 2 +- .../cbmperipheral/readrssi().json | 2 +- .../cbmperipheral/readvalue(for:)-1hqxp.json | 2 +- .../cbmperipheral/readvalue(for:)-3xyb1.json | 2 +- .../cbmperipheral/services.json | 2 +- .../cbmperipheral/setnotifyvalue(_:for:).json | 2 +- .../cbmperipheral/state.json | 2 +- .../cbmperipheral/writevalue(_:for:).json | 2 +- .../writevalue(_:for:type:).json | 2 +- .../cbmperipheraldelegate.json | 2 +- ...covercharacteristicsfor:error:)-1kooc.json | 2 +- ...covercharacteristicsfor:error:)-2pyjk.json | 2 +- ...ddiscoverdescriptorsfor:error:)-240qo.json | 2 +- ...ddiscoverdescriptorsfor:error:)-8554j.json | 2 +- ...overincludedservicesfor:error:)-6b62q.json | 2 +- ...coverincludedservicesfor:error:)-g4lr.json | 2 +- ...ipheral(_:diddiscoverservices:)-6mi4k.json | 2 +- ...ipheral(_:diddiscoverservices:)-7annk.json | 2 +- ...eripheral(_:didmodifyservices:)-1pvuz.json | 2 +- ...eripheral(_:didmodifyservices:)-9i6xy.json | 2 +- .../peripheral(_:didopen:error:)-8ac1d.json | 2 +- .../peripheral(_:didopen:error:)-tise.json | 2 +- ...eripheral(_:didreadrssi:error:)-7xmo2.json | 2 +- ...eripheral(_:didreadrssi:error:)-7zu2o.json | 2 +- ...atenotificationstatefor:error:)-5tl1y.json | 2 +- ...atenotificationstatefor:error:)-9ryr0.json | 2 +- ...ral(_:didupdatevaluefor:error:)-2bu3j.json | 2 +- ...ral(_:didupdatevaluefor:error:)-2xce0.json | 2 +- ...ral(_:didupdatevaluefor:error:)-62302.json | 2 +- ...ral(_:didupdatevaluefor:error:)-73y6k.json | 2 +- ...eral(_:didwritevaluefor:error:)-2aalw.json | 2 +- ...eral(_:didwritevaluefor:error:)-3ghoi.json | 2 +- ...eral(_:didwritevaluefor:error:)-86kdv.json | 2 +- ...heral(_:didwritevaluefor:error:)-90cp.json | 2 +- .../peripheraldidupdatename(_:)-4r9dx.json | 2 +- .../peripheraldidupdatename(_:)-klf8.json | 2 +- ...dy(tosendwritewithoutresponse:)-1nvtl.json | 2 +- ...dy(tosendwritewithoutresponse:)-2cz0i.json | 2 +- .../cbmperipheraldelegateproxy.json | 2 +- ...cbmperipheraldelegate-implementations.json | 2 +- .../diddiscovercharacteristics.json | 2 +- .../diddiscoverdescriptors.json | 2 +- .../diddiscoverincludedservices.json | 2 +- .../diddiscoverservices.json | 2 +- .../didmodifyservices.json | 2 +- .../didreadrssi.json | 2 +- .../didupdatecharacteristicvalue.json | 2 +- .../didupdatedescriptorvalue.json | 2 +- .../didupdatename.json | 2 +- .../didupdatenotificationstate.json | 2 +- .../didwritecharacteristicvalue.json | 2 +- .../didwritedescriptorvalue.json | 2 +- .../isreadytosendwritewithoutresponse.json | 2 +- ...diddiscovercharacteristicsfor:error:).json | 2 +- ...l(_:diddiscoverdescriptorsfor:error:).json | 2 +- ...iddiscoverincludedservicesfor:error:).json | 2 +- .../peripheral(_:diddiscoverservices:).json | 2 +- .../peripheral(_:didmodifyservices:).json | 2 +- .../peripheral(_:didopen:error:).json | 2 +- .../peripheral(_:didreadrssi:error:).json | 2 +- ...didupdatenotificationstatefor:error:).json | 2 +- ...ral(_:didupdatevaluefor:error:)-6bw1b.json | 2 +- ...ral(_:didupdatevaluefor:error:)-7ocld.json | 2 +- ...ral(_:didupdatevaluefor:error:)-88um0.json | 2 +- ...eral(_:didupdatevaluefor:error:)-nw91.json | 2 +- ...eral(_:didwritevaluefor:error:)-2fdon.json | 2 +- ...eral(_:didwritevaluefor:error:)-2gkk4.json | 2 +- ...eral(_:didwritevaluefor:error:)-9twsk.json | 2 +- ...heral(_:didwritevaluefor:error:)-eh78.json | 2 +- .../peripheraldidupdatename(_:).json | 2 +- ...lisready(tosendwritewithoutresponse:).json | 2 +- ...ripheraldelegateproxywithl2capchannel.json | 2 +- .../didopenchannel.json | 2 +- .../peripheral(_:didopen:error:).json | 2 +- .../corebluetoothmock/cbmperipheralmock.json | 2 +- .../cbmperipheralmock/ancsauthorized.json | 2 +- .../cansendwritewithoutresponse.json | 2 +- .../cbmperipheralmock/delegate.json | 2 +- .../discovercharacteristics(_:for:).json | 2 +- .../discoverdescriptors(for:).json | 2 +- .../discoverincludedservices(_:for:).json | 2 +- .../discoverservices(_:).json | 2 +- .../cbmperipheralmock/hash.json | 2 +- .../cbmperipheralmock/identifier.json | 2 +- .../maximumwritevaluelength(for:).json | 2 +- .../cbmperipheralmock/name.json | 2 +- .../openl2capchannel(_:).json | 2 +- .../cbmperipheralmock/readrssi().json | 2 +- .../readvalue(for:)-29us6.json | 2 +- .../readvalue(for:)-9on43.json | 2 +- .../cbmperipheralmock/services.json | 2 +- .../setnotifyvalue(_:for:).json | 2 +- .../cbmperipheralmock/state.json | 2 +- .../cbmperipheralmock/writevalue(_:for:).json | 2 +- .../writevalue(_:for:type:).json | 2 +- .../cbmperipheralnative.json | 2 +- .../cansendwritewithoutresponse.json | 2 +- .../cbmperipheralnative/delegate.json | 2 +- .../discovercharacteristics(_:for:).json | 2 +- .../discoverdescriptors(for:).json | 2 +- .../discoverincludedservices(_:for:).json | 2 +- .../discoverservices(_:).json | 2 +- .../cbmperipheralnative/hash.json | 2 +- .../cbmperipheralnative/identifier.json | 2 +- .../maximumwritevaluelength(for:).json | 2 +- .../cbmperipheralnative/name.json | 2 +- .../cbmperipheralnative/peripheral.json | 2 +- .../cbmperipheralnative/readrssi().json | 2 +- .../readvalue(for:)-65lsz.json | 2 +- .../readvalue(for:)-b1qu.json | 2 +- .../cbmperipheralnative/services.json | 2 +- .../setnotifyvalue(_:for:).json | 2 +- .../cbmperipheralnative/state.json | 2 +- .../writevalue(_:for:).json | 2 +- .../writevalue(_:for:type:).json | 2 +- .../cbmperipheralpreview.json | 2 +- .../cbmperipheralpreview/ancsauthorized.json | 2 +- .../cansendwritewithoutresponse.json | 2 +- .../cbmperipheralpreview/delegate.json | 2 +- .../discovercharacteristics(_:for:).json | 2 +- .../discoverdescriptors(for:).json | 2 +- .../discoverincludedservices(_:for:).json | 2 +- .../discoverservices(_:).json | 2 +- .../cbmperipheralpreview/identifier.json | 2 +- .../cbmperipheralpreview/init(_:state:).json | 2 +- .../maximumwritevaluelength(for:).json | 2 +- .../cbmperipheralpreview/name.json | 2 +- .../openl2capchannel(_:).json | 2 +- .../cbmperipheralpreview/readrssi().json | 2 +- .../readvalue(for:)-5cb2u.json | 2 +- .../readvalue(for:)-kuta.json | 2 +- .../cbmperipheralpreview/services.json | 2 +- .../setnotifyvalue(_:for:).json | 2 +- .../cbmperipheralpreview/state.json | 2 +- .../writevalue(_:for:).json | 2 +- .../writevalue(_:for:type:).json | 2 +- .../corebluetoothmock/cbmperipheralspec.json | 2 +- .../cbmperipheralspec/!=(_:_:).json | 2 +- .../cbmperipheralspec/==(_:_:).json | 2 +- .../cbmperipheralspec/advertisement.json | 2 +- .../cbmperipheralspec/advertisementdata.json | 2 +- .../advertisinginterval.json | 2 +- .../cbmperipheralspec/builder.json | 2 +- ...ithinterval:delay:alsowhenconnected:).json | 2 +- .../builder/allowforretrieval().json | 2 +- .../cbmperipheralspec/builder/build().json | 2 +- ...ces:delegate:connectioninterval:mtu:).json | 2 +- ...ces:delegate:connectioninterval:mtu:).json | 2 +- .../cbmperipheralspec/connectiondelegate.json | 2 +- .../cbmperipheralspec/connectioninterval.json | 2 +- .../equatable-implementations.json | 2 +- .../cbmperipheralspec/identifier.json | 2 +- .../isadvertisingwhenconnected.json | 2 +- .../cbmperipheralspec/isconnected.json | 2 +- .../cbmperipheralspec/isknown.json | 2 +- .../cbmperipheralspec/mtu.json | 2 +- .../cbmperipheralspec/name.json | 2 +- .../cbmperipheralspec/proximity.json | 2 +- .../cbmperipheralspec/services.json | 2 +- .../simulateadvertisementchange(_:).json | 2 +- .../cbmperipheralspec/simulatecaching().json | 2 +- .../simulateconnection().json | 2 +- .../simulatedisconnection(witherror:).json | 2 +- .../simulatemacchange(_:).json | 2 +- ...lateperipheral(identifier:proximity:).json | 2 +- .../simulateproximitychange(_:).json | 2 +- .../cbmperipheralspec/simulatereset().json | 2 +- ...teservicechange(newname:newservices:).json | 2 +- .../simulatevalueupdate(_:for:).json | 2 +- .../cbmperipheralspecdelegate.json | 2 +- .../peripheral(_:diddisconnect:)-37v65.json | 2 +- .../peripheral(_:diddisconnect:)-9slvl.json | 2 +- ...teristicsdiscoveryrequest:for:)-2doal.json | 2 +- ...teristicsdiscoveryrequest:for:)-7lbyr.json | 2 +- ...teristicsdiscoveryrequest:for:)-88ij9.json | 2 +- ...teristicsdiscoveryrequest:for:)-995x5.json | 2 +- ...escriptorsdiscoveryrequestfor:)-2baav.json | 2 +- ...escriptorsdiscoveryrequestfor:)-3y8of.json | 2 +- ...escriptorsdiscoveryrequestfor:)-6rk13.json | 2 +- ...escriptorsdiscoveryrequestfor:)-9ao7l.json | 2 +- ...edservicediscoveryrequest:for:)-4g4y5.json | 2 +- ...edservicediscoveryrequest:for:)-4mqk2.json | 2 +- ...edservicediscoveryrequest:for:)-7iofs.json | 2 +- ...edservicediscoveryrequest:for:)-9y6us.json | 2 +- ...al(_:didreceivereadrequestfor:)-3sqgp.json | 2 +- ...al(_:didreceivereadrequestfor:)-47a2c.json | 2 +- ...al(_:didreceivereadrequestfor:)-5c1ls.json | 2 +- ...al(_:didreceivereadrequestfor:)-6p4xw.json | 2 +- ...al(_:didreceivereadrequestfor:)-6tewg.json | 2 +- ...al(_:didreceivereadrequestfor:)-7sk6x.json | 2 +- ...al(_:didreceivereadrequestfor:)-9aw73.json | 2 +- ...al(_:didreceivereadrequestfor:)-9ybod.json | 2 +- ...eceiveservicediscoveryrequest:)-1p1el.json | 2 +- ...receiveservicediscoveryrequest:)-pq5f.json | 2 +- ...idreceivesetnotifyrequest:for:)-6yb1i.json | 2 +- ...idreceivesetnotifyrequest:for:)-8yagc.json | 2 +- ...idreceivesetnotifyrequest:for:)-9r03q.json | 2 +- ...didreceivesetnotifyrequest:for:)-jbut.json | 2 +- ...idreceivewritecommandfor:data:)-14ln0.json | 2 +- ...idreceivewritecommandfor:data:)-2v5ht.json | 2 +- ...idreceivewritecommandfor:data:)-58pcn.json | 2 +- ...idreceivewritecommandfor:data:)-65o4m.json | 2 +- ...idreceivewriterequestfor:data:)-23hwi.json | 2 +- ...idreceivewriterequestfor:data:)-2hi9u.json | 2 +- ...idreceivewriterequestfor:data:)-3nc1b.json | 2 +- ...idreceivewriterequestfor:data:)-6plt7.json | 2 +- ...idreceivewriterequestfor:data:)-753gh.json | 2 +- ...idreceivewriterequestfor:data:)-75hfw.json | 2 +- ...idreceivewriterequestfor:data:)-81sdk.json | 2 +- ...didreceivewriterequestfor:data:)-yspa.json | 2 +- ...atenotificationstatefor:error:)-4aash.json | 2 +- ...datenotificationstatefor:error:)-nipu.json | 2 +- ...didreceiveconnectionrequest(_:)-2bpww.json | 2 +- ...didreceiveconnectionrequest(_:)-6eqgz.json | 2 +- .../reset()-7utrg.json | 2 +- .../reset()-8n6fz.json | 2 +- .../corebluetoothmock/cbmperipheralstate.json | 2 +- .../corebluetoothmock/cbmproximity.json | 2 +- .../cbmproximity/!=(_:_:).json | 2 +- .../equatable-implementations.json | 2 +- .../corebluetoothmock/cbmproximity/far.json | 2 +- .../cbmproximity/immediate.json | 2 +- .../corebluetoothmock/cbmproximity/near.json | 2 +- .../cbmproximity/outofrange.json | 2 +- .../corebluetoothmock/cbmservice.json | 2 +- .../cbmservice/characteristics.json | 2 +- .../cbmservice/includedservices.json | 2 +- .../cbmservice/isprimary.json | 2 +- .../cbmservice/peripheral.json | 2 +- .../corebluetoothmock/cbmservice/uuid.json | 2 +- .../corebluetoothmock/cbmservicemock.json | 2 +- ...cludedservice:characteristics:)-255jq.json | 2 +- ...cludedservice:characteristics:)-2pj4o.json | 2 +- .../cbmservicemock/isequal(_:).json | 2 +- .../corebluetoothmock/cbmuuid.json | 2 +- .../corebluetoothmock/known-issues.json | 2 +- .../corebluetoothmock/migration-guide.json | 2 +- .../mocking-peripherals.json | 2 +- .../corebluetoothmock/simulation.json | 2 +- .../!=(_:_:)/index.html | 2 +- .../==(_:_:)/index.html | 2 +- .../cbmadvertisementconfig/data/index.html | 2 +- .../cbmadvertisementconfig/delay/index.html | 2 +- .../equatable-implementations/index.html | 2 +- .../hash(into:)/index.html | 2 +- .../hashable-implementations/index.html | 2 +- .../cbmadvertisementconfig/index.html | 2 +- .../index.html | 2 +- .../interval/index.html | 2 +- .../isadvertisingwhenconnected/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../corebluetoothmock/cbmatterror/index.html | 2 +- .../corebluetoothmock/cbmattribute/index.html | 2 +- .../cbmcccdescriptormock/index.html | 2 +- .../authorization-swift.property/index.html | 2 +- .../index.html | 2 +- .../cancelperipheralconnection(_:)/index.html | 2 +- .../connect(_:options:)/index.html | 2 +- .../cbmcentralmanager/delegate/index.html | 2 +- .../cbmcentralmanager/index.html | 2 +- .../cbmcentralmanager/init(_:)/index.html | 2 +- .../cbmcentralmanager/isscanning/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../cbmcentralmanager/state/index.html | 2 +- .../cbmcentralmanager/stopscan()/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../cbmcentralmanagerdelegate/index.html | 2 +- .../index.html | 2 +- .../centralmanager(_:didconnect:)/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../connectioneventdidoccur/index.html | 2 +- .../didconnect/index.html | 2 +- .../diddisconnect/index.html | 2 +- .../diddiscoverperipheral/index.html | 2 +- .../didfailtoconnect/index.html | 2 +- .../didupdateancsauthorization/index.html | 2 +- .../didupdatestate/index.html | 2 +- .../cbmcentralmanagerdelegateproxy/index.html | 2 +- .../willrestorestate/index.html | 2 +- .../cbmcentralmanagerfactory/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../instance(forcemock:)/index.html | 2 +- .../authorization-swift.property/index.html | 2 +- .../index.html | 2 +- .../cancelperipheralconnection(_:)/index.html | 2 +- .../connect(_:options:)/index.html | 2 +- .../cbmcentralmanagermock/index.html | 2 +- .../cbmcentralmanagermock/init()/index.html | 2 +- .../init(delegate:queue:)/index.html | 2 +- .../init(delegate:queue:options:)/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../simulateauthorization(_:)/index.html | 2 +- .../simulateinitialstate(_:)/index.html | 2 +- .../simulateperipherals(_:)/index.html | 2 +- .../simulatepoweroff()/index.html | 2 +- .../simulatepoweron()/index.html | 2 +- .../simulatestaterestoration/index.html | 2 +- .../cbmcentralmanagermock/state/index.html | 2 +- .../stopscan()/index.html | 2 +- .../teardownsimulation()/index.html | 2 +- .../authorization-swift.property/index.html | 2 +- .../index.html | 2 +- .../cancelperipheralconnection(_:)/index.html | 2 +- .../connect(_:options:)/index.html | 2 +- .../cbmcentralmanagernative/index.html | 2 +- .../cbmcentralmanagernative/init()/index.html | 2 +- .../init(delegate:queue:)/index.html | 2 +- .../init(delegate:queue:options:)/index.html | 2 +- .../isscanning/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../cbmcentralmanagernative/state/index.html | 2 +- .../stopscan()/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../cbmcharacteristic/descriptors/index.html | 2 +- .../cbmcharacteristic/index.html | 2 +- .../cbmcharacteristic/isnotifying/index.html | 2 +- .../cbmcharacteristic/properties/index.html | 2 +- .../cbmcharacteristic/service/index.html | 2 +- .../cbmcharacteristic/uuid/index.html | 2 +- .../cbmcharacteristic/value/index.html | 2 +- .../descriptors/index.html | 2 +- .../cbmcharacteristicmock/index.html | 2 +- .../index.html | 2 +- .../isequal(_:)/index.html | 2 +- .../cbmcharacteristicproperties/index.html | 2 +- .../cbmcharacteristicwritetype/index.html | 2 +- .../index.html | 2 +- .../init()/index.html | 2 +- .../cbmconnectionevent/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../cbmdescriptor/characteristic/index.html | 2 +- .../cbmdescriptor/index.html | 2 +- .../cbmdescriptor/uuid/index.html | 2 +- .../cbmdescriptor/value/index.html | 2 +- .../cbmdescriptormock/index.html | 2 +- .../cbmdescriptormock/init(type:)/index.html | 2 +- .../cbmdescriptormock/isequal(_:)/index.html | 2 +- .../corebluetoothmock/cbmerror/index.html | 2 +- .../cbml2capchannel/index.html | 2 +- .../corebluetoothmock/cbml2cappsm/index.html | 2 +- .../cbmmanagerauthorization/index.html | 2 +- .../cbmmanagerstate/!=(_:_:)/index.html | 2 +- .../equatable-implementations/index.html | 2 +- .../cbmmanagerstate/hash(into:)/index.html | 2 +- .../cbmmanagerstate/hashvalue/index.html | 2 +- .../cbmmanagerstate/index.html | 2 +- .../init(rawvalue:)/index.html | 2 +- .../cbmmanagerstate/poweredoff/index.html | 2 +- .../cbmmanagerstate/poweredon/index.html | 2 +- .../index.html | 2 +- .../cbmmanagerstate/resetting/index.html | 2 +- .../cbmmanagerstate/unauthorized/index.html | 2 +- .../cbmmanagerstate/unknown/index.html | 2 +- .../cbmmanagerstate/unsupported/index.html | 2 +- .../corebluetoothmock/cbmpeer/index.html | 2 +- .../cansendwritewithoutresponse/index.html | 2 +- .../cbmperipheral/delegate/index.html | 2 +- .../index.html | 2 +- .../discoverdescriptors(for:)/index.html | 2 +- .../index.html | 2 +- .../discoverservices(_:)/index.html | 2 +- .../cbmperipheral/identifier/index.html | 2 +- .../cbmperipheral/index.html | 2 +- .../maximumwritevaluelength(for:)/index.html | 2 +- .../cbmperipheral/name/index.html | 2 +- .../cbmperipheral/readrssi()/index.html | 2 +- .../readvalue(for:)-1hqxp/index.html | 2 +- .../readvalue(for:)-3xyb1/index.html | 2 +- .../cbmperipheral/services/index.html | 2 +- .../setnotifyvalue(_:for:)/index.html | 2 +- .../cbmperipheral/state/index.html | 2 +- .../writevalue(_:for:)/index.html | 2 +- .../writevalue(_:for:type:)/index.html | 2 +- .../cbmperipheraldelegate/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../diddiscovercharacteristics/index.html | 2 +- .../diddiscoverdescriptors/index.html | 2 +- .../diddiscoverincludedservices/index.html | 2 +- .../diddiscoverservices/index.html | 2 +- .../didmodifyservices/index.html | 2 +- .../didreadrssi/index.html | 2 +- .../didupdatecharacteristicvalue/index.html | 2 +- .../didupdatedescriptorvalue/index.html | 2 +- .../didupdatename/index.html | 2 +- .../didupdatenotificationstate/index.html | 2 +- .../didwritecharacteristicvalue/index.html | 2 +- .../didwritedescriptorvalue/index.html | 2 +- .../cbmperipheraldelegateproxy/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../peripheral(_:didopen:error:)/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../peripheraldidupdatename(_:)/index.html | 2 +- .../index.html | 2 +- .../didopenchannel/index.html | 2 +- .../index.html | 2 +- .../peripheral(_:didopen:error:)/index.html | 2 +- .../ancsauthorized/index.html | 2 +- .../cansendwritewithoutresponse/index.html | 2 +- .../cbmperipheralmock/delegate/index.html | 2 +- .../index.html | 2 +- .../discoverdescriptors(for:)/index.html | 2 +- .../index.html | 2 +- .../discoverservices(_:)/index.html | 2 +- .../cbmperipheralmock/hash/index.html | 2 +- .../cbmperipheralmock/identifier/index.html | 2 +- .../cbmperipheralmock/index.html | 2 +- .../maximumwritevaluelength(for:)/index.html | 2 +- .../cbmperipheralmock/name/index.html | 2 +- .../openl2capchannel(_:)/index.html | 2 +- .../cbmperipheralmock/readrssi()/index.html | 2 +- .../readvalue(for:)-29us6/index.html | 2 +- .../readvalue(for:)-9on43/index.html | 2 +- .../cbmperipheralmock/services/index.html | 2 +- .../setnotifyvalue(_:for:)/index.html | 2 +- .../cbmperipheralmock/state/index.html | 2 +- .../writevalue(_:for:)/index.html | 2 +- .../writevalue(_:for:type:)/index.html | 2 +- .../cansendwritewithoutresponse/index.html | 2 +- .../cbmperipheralnative/delegate/index.html | 2 +- .../index.html | 2 +- .../discoverdescriptors(for:)/index.html | 2 +- .../index.html | 2 +- .../discoverservices(_:)/index.html | 2 +- .../cbmperipheralnative/hash/index.html | 2 +- .../cbmperipheralnative/identifier/index.html | 2 +- .../cbmperipheralnative/index.html | 2 +- .../maximumwritevaluelength(for:)/index.html | 2 +- .../cbmperipheralnative/name/index.html | 2 +- .../cbmperipheralnative/peripheral/index.html | 2 +- .../cbmperipheralnative/readrssi()/index.html | 2 +- .../readvalue(for:)-65lsz/index.html | 2 +- .../readvalue(for:)-b1qu/index.html | 2 +- .../cbmperipheralnative/services/index.html | 2 +- .../setnotifyvalue(_:for:)/index.html | 2 +- .../cbmperipheralnative/state/index.html | 2 +- .../writevalue(_:for:)/index.html | 2 +- .../writevalue(_:for:type:)/index.html | 2 +- .../ancsauthorized/index.html | 2 +- .../cansendwritewithoutresponse/index.html | 2 +- .../cbmperipheralpreview/delegate/index.html | 2 +- .../index.html | 2 +- .../discoverdescriptors(for:)/index.html | 2 +- .../index.html | 2 +- .../discoverservices(_:)/index.html | 2 +- .../identifier/index.html | 2 +- .../cbmperipheralpreview/index.html | 2 +- .../init(_:state:)/index.html | 2 +- .../maximumwritevaluelength(for:)/index.html | 2 +- .../cbmperipheralpreview/name/index.html | 2 +- .../openl2capchannel(_:)/index.html | 2 +- .../readrssi()/index.html | 2 +- .../readvalue(for:)-5cb2u/index.html | 2 +- .../readvalue(for:)-kuta/index.html | 2 +- .../cbmperipheralpreview/services/index.html | 2 +- .../setnotifyvalue(_:for:)/index.html | 2 +- .../cbmperipheralpreview/state/index.html | 2 +- .../writevalue(_:for:)/index.html | 2 +- .../writevalue(_:for:type:)/index.html | 2 +- .../cbmperipheralspec/!=(_:_:)/index.html | 2 +- .../cbmperipheralspec/==(_:_:)/index.html | 2 +- .../advertisement/index.html | 2 +- .../advertisementdata/index.html | 2 +- .../advertisinginterval/index.html | 2 +- .../index.html | 2 +- .../builder/allowforretrieval()/index.html | 2 +- .../builder/build()/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../cbmperipheralspec/builder/index.html | 2 +- .../connectiondelegate/index.html | 2 +- .../connectioninterval/index.html | 2 +- .../equatable-implementations/index.html | 2 +- .../cbmperipheralspec/identifier/index.html | 2 +- .../cbmperipheralspec/index.html | 2 +- .../isadvertisingwhenconnected/index.html | 2 +- .../cbmperipheralspec/isconnected/index.html | 2 +- .../cbmperipheralspec/isknown/index.html | 2 +- .../cbmperipheralspec/mtu/index.html | 2 +- .../cbmperipheralspec/name/index.html | 2 +- .../cbmperipheralspec/proximity/index.html | 2 +- .../cbmperipheralspec/services/index.html | 2 +- .../index.html | 2 +- .../simulatecaching()/index.html | 2 +- .../simulateconnection()/index.html | 2 +- .../index.html | 2 +- .../simulatemacchange(_:)/index.html | 2 +- .../index.html | 2 +- .../simulateproximitychange(_:)/index.html | 2 +- .../simulatereset()/index.html | 2 +- .../index.html | 2 +- .../simulatevalueupdate(_:for:)/index.html | 2 +- .../cbmperipheralspecdelegate/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../reset()-7utrg/index.html | 2 +- .../reset()-8n6fz/index.html | 2 +- .../cbmperipheralstate/index.html | 2 +- .../cbmproximity/!=(_:_:)/index.html | 2 +- .../equatable-implementations/index.html | 2 +- .../cbmproximity/far/index.html | 2 +- .../cbmproximity/immediate/index.html | 2 +- .../corebluetoothmock/cbmproximity/index.html | 2 +- .../cbmproximity/near/index.html | 2 +- .../cbmproximity/outofrange/index.html | 2 +- .../cbmservice/characteristics/index.html | 2 +- .../cbmservice/includedservices/index.html | 2 +- .../corebluetoothmock/cbmservice/index.html | 2 +- .../cbmservice/isprimary/index.html | 2 +- .../cbmservice/peripheral/index.html | 2 +- .../cbmservice/uuid/index.html | 2 +- .../cbmservicemock/index.html | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../cbmservicemock/isequal(_:)/index.html | 2 +- .../corebluetoothmock/cbmuuid/index.html | 2 +- .../corebluetoothmock/index.html | 2 +- .../corebluetoothmock/known-issues/index.html | 2 +- .../migration-guide/index.html | 2 +- .../mocking-peripherals/index.html | 2 +- .../corebluetoothmock/simulation/index.html | 2 +- docs/index.html | 2 +- docs/index/index.json | 2 +- docs/js/chunk-384ef189.bb1ed903.js | 10 ------- docs/js/chunk-c0335d80.76a68cc5.js | 10 +++++++ docs/js/chunk-vendors.b24b7aaa.js | 21 --------------- docs/js/chunk-vendors.ba2dd0cb.js | 26 +++++++++++++++++++ docs/js/documentation-topic.2ed269e3.js | 10 ------- docs/js/documentation-topic.57e91f8a.js | 10 +++++++ docs/js/documentation-topic~topic.1679ec90.js | 20 ++++++++++++++ docs/js/documentation-topic~topic.900fc80c.js | 20 -------------- ...topic~topic~tutorials-overview.5b27b87b.js | 10 ------- ...topic~topic~tutorials-overview.90c61522.js | 10 +++++++ docs/js/index.aa320932.js | 9 ------- docs/js/index.e8a5d294.js | 9 +++++++ docs/js/topic.8cd0c0c4.js | 10 +++++++ docs/js/topic.bb695832.js | 10 ------- docs/js/tutorials-overview.2a32cd6f.js | 10 +++++++ docs/js/tutorials-overview.2cadc732.js | 10 ------- docs/metadata.json | 2 +- 849 files changed, 987 insertions(+), 982 deletions(-) delete mode 100644 docs/css/chunk-384ef189.7ede1ea3.css create mode 100644 docs/css/chunk-c0335d80.10a2f091.css create mode 100644 docs/css/documentation-topic.1d1eec04.css delete mode 100644 docs/css/documentation-topic.29351f99.css create mode 100644 docs/css/documentation-topic~topic.b6287bcf.css delete mode 100644 docs/css/documentation-topic~topic.fccbd76c.css delete mode 100644 docs/css/documentation-topic~topic~tutorials-overview.1099452b.css create mode 100644 docs/css/documentation-topic~topic~tutorials-overview.d6f5411c.css create mode 100644 docs/css/index.038e887c.css delete mode 100644 docs/css/index.d5b499b0.css delete mode 100644 docs/css/topic.726a35dc.css create mode 100644 docs/css/topic.d8c126f3.css delete mode 100644 docs/css/tutorials-overview.2a582c39.css create mode 100644 docs/css/tutorials-overview.c249c765.css delete mode 100644 docs/js/chunk-384ef189.bb1ed903.js create mode 100644 docs/js/chunk-c0335d80.76a68cc5.js delete mode 100644 docs/js/chunk-vendors.b24b7aaa.js create mode 100644 docs/js/chunk-vendors.ba2dd0cb.js delete mode 100644 docs/js/documentation-topic.2ed269e3.js create mode 100644 docs/js/documentation-topic.57e91f8a.js create mode 100644 docs/js/documentation-topic~topic.1679ec90.js delete mode 100644 docs/js/documentation-topic~topic.900fc80c.js delete mode 100644 docs/js/documentation-topic~topic~tutorials-overview.5b27b87b.js create mode 100644 docs/js/documentation-topic~topic~tutorials-overview.90c61522.js delete mode 100644 docs/js/index.aa320932.js create mode 100644 docs/js/index.e8a5d294.js create mode 100644 docs/js/topic.8cd0c0c4.js delete mode 100644 docs/js/topic.bb695832.js create mode 100644 docs/js/tutorials-overview.2a32cd6f.js delete mode 100644 docs/js/tutorials-overview.2cadc732.js diff --git a/docs/css/chunk-384ef189.7ede1ea3.css b/docs/css/chunk-384ef189.7ede1ea3.css deleted file mode 100644 index f489ad7..0000000 --- a/docs/css/chunk-384ef189.7ede1ea3.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.badge[data-v-b3052e12]{--badge-color:var(--color-badge-default);--badge-dark-color:var(--color-badge-dark-default);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:inline-block;padding:2px 10px;white-space:nowrap;background:none;border-radius:var(--badge-border-radius,calc(var(--border-radius, 4px) - 1px));border-style:var(--badge-border-style,solid);border-width:var(--badge-border-width,1px);margin-left:10px;color:var(--badge-color)}.theme-dark .badge[data-v-b3052e12]{--badge-color:var(--badge-dark-color)}.badge-deprecated[data-v-b3052e12]{--badge-color:var(--color-badge-deprecated);--badge-dark-color:var(--color-badge-dark-deprecated)}.badge-beta[data-v-b3052e12]{--badge-color:var(--color-badge-beta);--badge-dark-color:var(--color-badge-dark-beta)}[data-v-7f03310b] .code-listing{background:var(--background,var(--color-code-background));color:var(--text,var(--color-code-plain));border-color:var(--colors-grid,var(--color-grid));border-width:var(--code-border-width,1px);border-style:var(--code-border-style,solid)}[data-v-7f03310b] .code-listing pre{padding:8px 14px;padding-right:0}[data-v-7f03310b] .code-listing pre>code{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}[data-v-7f03310b] *+.code-listing,[data-v-7f03310b] *+.endpoint-example,[data-v-7f03310b] *+.inline-image-container,[data-v-7f03310b] *+aside,[data-v-7f03310b] *+figure,[data-v-7f03310b] .code-listing+*,[data-v-7f03310b] .endpoint-example+*,[data-v-7f03310b] .inline-image-container+*,[data-v-7f03310b] aside+*,[data-v-7f03310b] figure+*{margin-top:1.6em}[data-v-7f03310b] *+dl,[data-v-7f03310b] dl+*{margin-top:.8em}[data-v-7f03310b] img{display:block;margin:auto;max-width:100%}[data-v-7f03310b] ol,[data-v-7f03310b] ol li:not(:first-child),[data-v-7f03310b] ul,[data-v-7f03310b] ul li:not(:first-child){margin-top:.8em}@media only screen and (max-width:735px){[data-v-7f03310b] ol,[data-v-7f03310b] ul{margin-left:1.25rem}}[data-v-7f03310b] dt:not(:first-child){margin-top:.8em}[data-v-7f03310b] dd{margin-left:2em}.topic-icon-wrapper[data-v-384630c1]{display:flex;align-items:center;justify-content:center;height:1.47059rem;flex:0 0 1.294rem;width:1.294rem;margin-right:1rem}.topic-icon[data-v-384630c1]{height:.88235rem;transform:scale(1);-webkit-transform:scale(1);overflow:visible}.topic-icon[data-v-384630c1] img{margin:0;display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.topic-icon.curly-brackets-icon[data-v-384630c1]{height:1rem}.token-method[data-v-5caf1b5b]{font-weight:700}.token-keyword[data-v-5caf1b5b]{color:var(--syntax-keyword,var(--color-syntax-keywords))}.token-number[data-v-5caf1b5b]{color:var(--syntax-number,var(--color-syntax-numbers))}.token-string[data-v-5caf1b5b]{color:var(--syntax-string,var(--color-syntax-strings))}.token-attribute[data-v-5caf1b5b]{color:var(--syntax-attribute,var(--color-syntax-keywords))}.token-internalParam[data-v-5caf1b5b]{color:var(--color-syntax-param-internal-name)}.type-identifier-link[data-v-5caf1b5b]{color:var(--syntax-type,var(--color-syntax-other-type-names))}.token-removed[data-v-5caf1b5b]{background-color:var(--color-highlight-red)}.token-added[data-v-5caf1b5b]{background-color:var(--color-highlight-green)}.decorator[data-v-06ec7395],.label[data-v-06ec7395]{color:var(--colors-secondary-label,var(--color-secondary-label))}.label[data-v-06ec7395]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.empty-token[data-v-06ec7395]{font-size:0}.empty-token[data-v-06ec7395]:after{content:"\00a0";font-size:1rem}.conditional-constraints[data-v-1548fd90] code{color:var(--colors-secondary-label,var(--color-secondary-label))}.abstract[data-v-750aa7a8],.link-block[data-v-750aa7a8] .badge{margin-left:2.294rem}.link-block .badge+.badge[data-v-750aa7a8]{margin-left:1rem}.link[data-v-750aa7a8]{display:flex}.link-block .badge[data-v-750aa7a8]{margin-top:.5rem}.link-block.has-inline-element[data-v-750aa7a8]{display:flex;align-items:flex-start;flex-flow:row wrap}.link-block.has-inline-element .badge[data-v-750aa7a8]{margin-left:1rem;margin-top:0}.link-block .has-adjacent-elements[data-v-750aa7a8]{padding-top:5px;padding-bottom:5px;display:inline-flex}.link-block[data-v-750aa7a8],.link[data-v-750aa7a8]{box-sizing:inherit}.link-block.changed[data-v-750aa7a8],.link.changed[data-v-750aa7a8]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.link-block.changed.changed[data-v-750aa7a8],.link.changed.changed[data-v-750aa7a8]{padding-right:1rem}@media only screen and (max-width:735px){.link-block.changed[data-v-750aa7a8],.link.changed[data-v-750aa7a8]{padding-left:0;padding-right:0}.link-block.changed.changed[data-v-750aa7a8],.link.changed.changed[data-v-750aa7a8]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.link-block.changed[data-v-750aa7a8],.link.changed[data-v-750aa7a8]{padding-left:0;padding-right:0}}.abstract .topic-required[data-v-750aa7a8]:not(:first-child){margin-top:4px}.topic-required[data-v-750aa7a8]{font-size:.8em}.deprecated[data-v-750aa7a8]{text-decoration:line-through}.conditional-constraints[data-v-750aa7a8]{font-size:.82353rem;margin-top:4px} \ No newline at end of file diff --git a/docs/css/chunk-c0335d80.10a2f091.css b/docs/css/chunk-c0335d80.10a2f091.css new file mode 100644 index 0000000..86451fd --- /dev/null +++ b/docs/css/chunk-c0335d80.10a2f091.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */[data-v-20945666] .code-listing{background:var(--background,var(--color-code-background));color:var(--text,var(--color-code-plain));border-color:var(--colors-grid,var(--color-grid));border-width:var(--code-border-width,1px);border-style:var(--code-border-style,solid)}[data-v-20945666] .code-listing pre{padding:var(--code-block-style-elements-padding)}[data-v-20945666] .code-listing pre>code{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}[data-v-20945666] *+.code-listing,[data-v-20945666] *+.endpoint-example,[data-v-20945666] *+.inline-image-container,[data-v-20945666] *+aside,[data-v-20945666] *+figure,[data-v-20945666] .code-listing+*,[data-v-20945666] .endpoint-example+*,[data-v-20945666] .inline-image-container+*,[data-v-20945666] aside+*,[data-v-20945666] figure+*{margin-top:var(--spacing-stacked-margin-xlarge)}[data-v-20945666] *+dl,[data-v-20945666] dl+*{margin-top:var(--spacing-stacked-margin-large)}[data-v-20945666] img{display:block;margin:auto;max-width:100%}[data-v-20945666] ol,[data-v-20945666] ol li:not(:first-child),[data-v-20945666] ul,[data-v-20945666] ul li:not(:first-child){margin-top:var(--spacing-stacked-margin-large)}@media only screen and (max-width:735px){[data-v-20945666] ol,[data-v-20945666] ul{margin-left:1.25rem}}[data-v-20945666] dt:not(:first-child){margin-top:var(--spacing-stacked-margin-large)}[data-v-20945666] dd{margin-left:2em}.badge[data-v-8d6893ae]{--badge-color:var(--color-badge-default);--badge-dark-color:var(--color-badge-dark-default);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:inline-block;padding:2px 10px;white-space:nowrap;background:none;border-radius:var(--badge-border-radius,calc(var(--border-radius, 4px) - 1px));border-style:var(--badge-border-style,solid);border-width:var(--badge-border-width,1px);margin-left:10px;color:var(--badge-color)}.theme-dark .badge[data-v-8d6893ae]{--badge-color:var(--badge-dark-color)}.badge-deprecated[data-v-8d6893ae]{--badge-color:var(--color-badge-deprecated);--badge-dark-color:var(--color-badge-dark-deprecated)}.badge-beta[data-v-8d6893ae]{--badge-color:var(--color-badge-beta);--badge-dark-color:var(--color-badge-dark-beta)}.topic-icon-wrapper[data-v-03cf3183]{display:flex;align-items:center;justify-content:center;height:1.47059rem;flex:0 0 1.294rem;width:1.294rem;margin-right:1rem}.topic-icon[data-v-03cf3183]{height:.88235rem;transform:scale(1);-webkit-transform:scale(1);overflow:visible}.topic-icon[data-v-03cf3183] img{margin:0;display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.topic-icon.curly-brackets-icon[data-v-03cf3183]{height:1rem}.token-method[data-v-3fd63d6c]{font-weight:700}.token-keyword[data-v-3fd63d6c]{color:var(--syntax-keyword,var(--color-syntax-keywords))}.token-number[data-v-3fd63d6c]{color:var(--syntax-number,var(--color-syntax-numbers))}.token-string[data-v-3fd63d6c]{color:var(--syntax-string,var(--color-syntax-strings))}.attribute-link[data-v-3fd63d6c],.token-attribute[data-v-3fd63d6c]{color:var(--syntax-attribute,var(--color-syntax-keywords))}.token-internalParam[data-v-3fd63d6c]{color:var(--color-syntax-param-internal-name)}.type-identifier-link[data-v-3fd63d6c]{color:var(--syntax-type,var(--color-syntax-other-type-names))}.token-removed[data-v-3fd63d6c]{background-color:var(--color-highlight-red)}.token-added[data-v-3fd63d6c]{background-color:var(--color-highlight-green)}.decorator[data-v-06ec7395],.label[data-v-06ec7395]{color:var(--colors-secondary-label,var(--color-secondary-label))}.label[data-v-06ec7395]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.empty-token[data-v-06ec7395]{font-size:0}.empty-token[data-v-06ec7395]:after{content:"\00a0";font-size:1rem}.conditional-constraints[data-v-1548fd90] code{color:var(--colors-secondary-label,var(--color-secondary-label))}.abstract[data-v-52205924],.link-block[data-v-52205924] .badge{margin-left:2.294rem}.link-block .badge+.badge[data-v-52205924]{margin-left:1rem}.link[data-v-52205924]{display:flex}.link-block .badge[data-v-52205924]{margin-top:.5rem}.link-block.has-inline-element[data-v-52205924]{display:flex;align-items:flex-start;flex-flow:row wrap}.link-block.has-inline-element .badge[data-v-52205924]{margin-left:1rem;margin-top:0}.link-block .has-adjacent-elements[data-v-52205924]{padding-top:5px;padding-bottom:5px;display:inline-flex}.link-block[data-v-52205924],.link[data-v-52205924]{box-sizing:inherit}.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.link-block.changed.changed[data-v-52205924],.link.changed.changed[data-v-52205924]{padding-right:1rem}@media only screen and (max-width:735px){.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-left:0;padding-right:0}.link-block.changed.changed[data-v-52205924],.link.changed.changed[data-v-52205924]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-left:0;padding-right:0}}.abstract .topic-required[data-v-52205924]:not(:first-child){margin-top:4px}.topic-required[data-v-52205924]{font-size:.8em}.deprecated[data-v-52205924]{text-decoration:line-through}.conditional-constraints[data-v-52205924]{font-size:.82353rem;margin-top:4px} \ No newline at end of file diff --git a/docs/css/documentation-topic.1d1eec04.css b/docs/css/documentation-topic.1d1eec04.css new file mode 100644 index 0000000..8622bb4 --- /dev/null +++ b/docs/css/documentation-topic.1d1eec04.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.betainfo[data-v-e8fd2a92]{font-size:.94118rem;padding:3rem 0;background-color:var(--color-fill-secondary)}.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .betainfo-container[data-v-e8fd2a92]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .betainfo-container[data-v-e8fd2a92]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .betainfo-container[data-v-e8fd2a92]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:692px}}@media only screen and (max-width:735px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:87.5%}}@media only screen and (max-width:320px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:215px}}.betainfo-label[data-v-e8fd2a92]{font-weight:600;font-size:.94118rem}.betainfo-content[data-v-e8fd2a92] p{margin-bottom:10px}.summary-section[data-v-3aa6f694]:last-of-type{margin-right:0}@media only screen and (max-width:735px){.summary-section[data-v-3aa6f694]{margin-right:0}}.title[data-v-6796f6ea]{color:#fff;font-size:.82353rem;margin-right:.5rem;text-rendering:optimizeLegibility}.documentation-hero--disabled .title[data-v-6796f6ea]{color:var(--colors-text,var(--color-text))}.language[data-v-1a36493d]{padding-bottom:10px;justify-content:flex-end}.language-list[data-v-1a36493d],.language[data-v-1a36493d]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:0;display:flex;align-items:center}.language-option.swift[data-v-1a36493d]{padding-right:10px;border-right:1px solid var(--color-fill-gray-tertiary)}.language-option.objc[data-v-1a36493d]{padding-left:10px}.language-option.active[data-v-1a36493d],.language-option.router-link-exact-active[data-v-1a36493d]{color:#ccc}.documentation-hero--disabled .language-option.active[data-v-1a36493d],.documentation-hero--disabled .language-option.router-link-exact-active[data-v-1a36493d]{color:var(--colors-secondary-label,var(--color-secondary-label))}.view-more-link[data-v-0d14b62a]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;flex-flow:row-reverse;margin-bottom:1.3rem}.documentation-hero[data-v-6540c364]{background:#000;color:var(--color-documentation-intro-figure,#fff);overflow:hidden;text-align:left;position:relative;padding-right:var(--doc-hero-right-offset)}.documentation-hero[data-v-6540c364]:before{content:"";background:var(--standard-accent-color,var(--color-documentation-intro-fill,#2a2a2a));position:absolute;width:100%;left:0;top:-50%;height:150%;right:0}.documentation-hero[data-v-6540c364]:after{background:transparent;opacity:.7;width:100%;position:absolute;content:"";height:100%;left:0;top:0}.documentation-hero .icon[data-v-6540c364]{position:absolute;margin-top:10px;margin-right:25px;right:0;width:250px;height:calc(100% - 20px);box-sizing:border-box}@media only screen and (max-width:735px){.documentation-hero .icon[data-v-6540c364]{display:none}}.documentation-hero .background-icon[data-v-6540c364]{color:var(--color-documentation-intro-accent,#161616);display:block;width:250px;height:auto;opacity:1;position:absolute;top:50%;left:0;transform:translateY(-50%);max-height:100%}.documentation-hero .background-icon[data-v-6540c364] img,.documentation-hero .background-icon[data-v-6540c364] svg{width:100%;height:100%}.documentation-hero__content[data-v-6540c364]:not(.minimized-hero){padding-top:2.35294rem;padding-bottom:40px;position:relative;z-index:1}.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:auto;padding-left:20px;padding-right:20px}}.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:692px}}@media only screen and (max-width:735px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:87.5%}}@media only screen and (max-width:320px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:215px}}.documentation-hero .minimized-hero[data-v-6540c364]{padding:1.3em 1.4em;position:relative;z-index:1}.documentation-hero__above-content[data-v-6540c364]{position:relative;z-index:1}.documentation-hero--disabled[data-v-6540c364]{background:none;color:var(--colors-text,var(--color-text))}.documentation-hero--disabled[data-v-6540c364]:after,.documentation-hero--disabled[data-v-6540c364]:before{content:none}.short-hero[data-v-6540c364]{padding-top:3.52941rem;padding-bottom:3.52941rem}.extra-bottom-padding[data-v-6540c364]{padding-bottom:3.82353rem}.theme-dark[data-v-6540c364] a:not(.button-cta){color:#09f}ul[data-v-068842ec]{list-style-type:none;margin:0}ul li:first-child .base-link[data-v-068842ec]{margin-top:0}.parent-item .base-link[data-v-068842ec]{font-weight:700}.base-link[data-v-068842ec]{color:var(--color-figure-gray-secondary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:inline-block;margin:5px 0;transition:color .15s ease-in;max-width:100%}.active .base-link[data-v-068842ec]{color:var(--color-text)}.source[data-v-d22a3f50]{background:var(--background,var(--color-code-background));border-color:var(--color-grid);color:var(--text,var(--color-code-plain));border-style:solid;border-width:1px;padding:var(--code-block-style-elements-padding);speak:literal-punctuation;line-height:25px;filter:blur(0)}.source.displays-multiple-lines[data-v-d22a3f50],.source[data-v-d22a3f50]{border-radius:var(--border-radius,4px)}.source>code[data-v-d22a3f50]{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);display:block}.platforms[data-v-4f51d8d2]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:.45rem;margin-top:var(--spacing-stacked-margin-xlarge)}.changed .platforms[data-v-4f51d8d2]{padding-left:.588rem}.platforms[data-v-4f51d8d2]:first-of-type{margin-top:1rem}.source[data-v-4f51d8d2]{margin:var(--declaration-code-listing-margin)}.platforms+.source[data-v-4f51d8d2]{margin:0}.changed.declaration-group[data-v-4f51d8d2]{background:var(--background,var(--color-code-background))}.changed .source[data-v-4f51d8d2]{background:none;border:none;margin-top:0;margin-bottom:0;margin-left:2.17647rem;padding-left:0}.declaration-diff[data-v-b3e21c4a]{background:var(--background,var(--color-code-background))}.declaration-diff-version[data-v-b3e21c4a]{padding-left:.588rem;padding-left:2.17647rem;font-size:1rem;line-height:1.52941;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);margin:0}.declaration-diff-current[data-v-b3e21c4a]{padding-top:8px;padding-bottom:5px}.declaration-diff-previous[data-v-b3e21c4a]{padding-top:5px;padding-bottom:8px;background-color:var(--color-changes-modified-previous-background);border-radius:0 0 var(--border-radius,4px) var(--border-radius,4px);position:relative}.declaration-source-link[data-v-5863919c]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;align-items:center;margin-top:var(--declaration-source-link-margin,var(--spacing-stacked-margin-large))}.declaration-icon[data-v-5863919c]{width:1em;margin-right:5px}.conditional-constraints[data-v-2ab6251b]{margin-top:var(--declaration-conditional-constraints-margin,20px)}.abstract[data-v-702ec04e]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.abstract[data-v-702ec04e]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-702ec04e] p:last-child{margin-bottom:0}.container[data-v-6e075935]{padding-bottom:40px}.full-width-container .container[data-v-6e075935]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .container[data-v-6e075935]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .container[data-v-6e075935]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .container[data-v-6e075935]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .container[data-v-6e075935]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-6e075935]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-6e075935]{width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-6e075935]{width:87.5%}}@media only screen and (max-width:320px){.static-width-container .container[data-v-6e075935]{width:215px}}.title[data-v-6e075935]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-top:40px;border-top-color:var(--color-grid);border-top-style:solid;border-top-width:var(--content-table-title-border-width,1px)}@media only screen and (max-width:1250px){.title[data-v-6e075935]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-6e075935]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title+.contenttable-section[data-v-4aae1079]{margin-top:0}.contenttable-section[data-v-4aae1079]{align-items:baseline;padding-top:2.353rem}.contenttable-section[data-v-4aae1079]:last-child{margin-bottom:0}[data-v-4aae1079] .contenttable-title{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-4aae1079] .contenttable-title{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.contenttable-section[data-v-4aae1079]{align-items:unset;border-top:none;display:inherit;margin:0}.section-content[data-v-4aae1079],.section-title[data-v-4aae1079]{padding:0}[data-v-4aae1079] .contenttable-title{margin:0 0 2.353rem 0;padding-bottom:.5rem}}.section-content>.content[data-v-3ccf02e9],.topic[data-v-3ccf02e9]{margin-top:15px}.no-title .section-content>.content[data-v-3ccf02e9]:first-child,.no-title .topic[data-v-3ccf02e9]:first-child{margin-top:0}.datalist dd{padding-left:2rem}.datalist dt{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.datalist dt:first-of-type{padding-top:0}.type[data-v-791bac44]:first-letter{text-transform:capitalize}.detail-type[data-v-d66cd00c]{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.detail-type[data-v-d66cd00c]:first-child{padding-top:0}@media only screen and (max-width:735px){.detail-type[data-v-d66cd00c]{padding-left:0}}.detail-content[data-v-d66cd00c]{padding-left:2rem}@media only screen and (max-width:735px){.detail-content[data-v-d66cd00c]{padding-left:0}}.param-name[data-v-53cac581]{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.param-name[data-v-53cac581]:first-child{padding-top:0}@media only screen and (max-width:735px){.param-name[data-v-53cac581]{padding-left:0}}.param-content[data-v-53cac581]{padding-left:2rem}@media only screen and (max-width:735px){.param-content[data-v-53cac581]{padding-left:0}}.param-content[data-v-53cac581] dt{font-weight:600}.param-content[data-v-53cac581] dd{margin-left:1em}.parameters-table[data-v-3f89f723] .change-added,.parameters-table[data-v-3f89f723] .change-removed{display:inline-block;max-width:100%}.parameters-table[data-v-3f89f723] .change-removed,.parameters-table[data-v-3f89f723] .token-removed{text-decoration:line-through}.param[data-v-3f89f723]{font-size:.88235rem;box-sizing:border-box}.param.changed[data-v-3f89f723]{display:flex;flex-flow:row wrap;padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.param.changed.changed[data-v-3f89f723]{padding-right:1rem}@media only screen and (max-width:735px){.param.changed[data-v-3f89f723]{padding-left:0;padding-right:0}.param.changed.changed[data-v-3f89f723]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.param.changed[data-v-3f89f723]{padding-left:0;padding-right:0}}.param.changed.changed[data-v-3f89f723]{padding-left:0;padding-right:0}.param.changed+.param.changed[data-v-3f89f723]{margin-top:calc(var(--spacing-param)/2)}.changed .param-content[data-v-3f89f723],.changed .param-symbol[data-v-3f89f723]{padding-top:2px;padding-bottom:2px}@media only screen and (max-width:735px){.changed .param-content[data-v-3f89f723]{padding-top:0}.changed .param-symbol[data-v-3f89f723]{padding-bottom:0}}.param-symbol[data-v-3f89f723]{text-align:right}.changed .param-symbol[data-v-3f89f723]{padding-left:2.17647rem}@media only screen and (max-width:735px){.param-symbol[data-v-3f89f723]{text-align:left}.changed .param-symbol[data-v-3f89f723]{padding-left:0}}.param-symbol[data-v-3f89f723] .type-identifier-link{color:var(--color-link)}.param+.param[data-v-3f89f723]{margin-top:var(--spacing-param)}.param+.param[data-v-3f89f723]:first-child{margin-top:0}.param-content[data-v-3f89f723]{padding-left:1rem;padding-left:2.17647rem}.changed .param-content[data-v-3f89f723]{padding-right:1rem}@media only screen and (max-width:735px){.param-content[data-v-3f89f723]{padding-left:0;padding-right:0}}.property-metadata[data-v-8590589e]{color:var(--color-figure-gray-secondary)}.property-text{font-weight:700}.property-metadata[data-v-0a648a1e]{color:var(--color-figure-gray-secondary)}.property-name[data-v-310f0b2c]{font-weight:700}.property-name.deprecated[data-v-310f0b2c]{text-decoration:line-through}.property-deprecated[data-v-310f0b2c]{margin-left:0}.content[data-v-310f0b2c],.content[data-v-310f0b2c] p:first-child{display:inline}.response-mimetype[data-v-20293786]{color:var(--color-figure-gray-secondary)}.part-name[data-v-021cd63d]{font-weight:700}.content[data-v-021cd63d],.content[data-v-021cd63d] p:first-child{display:inline}.param-name[data-v-03478142]{font-weight:700}.param-name.deprecated[data-v-03478142]{text-decoration:line-through}.param-deprecated[data-v-03478142]{margin-left:0}.content[data-v-03478142],.content[data-v-03478142] p:first-child{display:inline}.response-name[data-v-881189f4],.response-reason[data-v-881189f4]{font-weight:700}@media only screen and (max-width:735px){.response-reason[data-v-881189f4]{display:none}}.response-name>code>.reason[data-v-881189f4]{display:none}@media only screen and (max-width:735px){.response-name>code>.reason[data-v-881189f4]{display:initial}}.primary-content.with-border[data-v-2baae7e0]:before{border-top-color:var(--colors-grid,var(--color-grid));border-top-style:solid;border-top-width:1px;content:"";display:block}.primary-content[data-v-2baae7e0]>*{margin-bottom:40px;margin-top:40px}.primary-content[data-v-2baae7e0]>:first-child{margin-top:2.353rem}.relationships-list[data-v-4c67b8c7]{list-style:none}.relationships-list.column[data-v-4c67b8c7]{margin-left:0;margin-top:15px}.relationships-list.inline[data-v-4c67b8c7]{display:flex;flex-direction:row;flex-wrap:wrap;margin-top:15px;margin-left:0}.relationships-list.inline li[data-v-4c67b8c7]:not(:last-child):after{content:",\00a0"}.relationships-list.changed[data-v-4c67b8c7]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.relationships-list.changed.changed[data-v-4c67b8c7]{padding-right:1rem}@media only screen and (max-width:735px){.relationships-list.changed[data-v-4c67b8c7]{padding-left:0;padding-right:0}.relationships-list.changed.changed[data-v-4c67b8c7]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-4c67b8c7]{padding-left:0;padding-right:0}}.relationships-list.changed[data-v-4c67b8c7]:after{margin-top:.61765rem}.relationships-list.changed.column[data-v-4c67b8c7]{display:block;box-sizing:border-box}.relationships-item[data-v-4c67b8c7],.relationships-list[data-v-4c67b8c7]{box-sizing:inherit}.conditional-constraints[data-v-4c67b8c7]{font-size:.82353rem;margin:.17647rem 0 .58824rem 1.17647rem}.availability[data-v-602d8130]{display:flex;flex-flow:row wrap;gap:10px;margin-top:25px}.badge[data-v-602d8130]{margin:0}.technology[data-v-602d8130]{display:inline-flex;align-items:center}.tech-icon[data-v-602d8130]{height:12px;padding-right:5px;fill:var(--badge-color)}.theme-dark .tech-icon[data-v-602d8130]{fill:var(--badge-color)}.beta[data-v-602d8130]{color:var(--color-badge-beta)}.theme-dark .beta[data-v-602d8130]{color:var(--color-badge-dark-beta)}.deprecated[data-v-602d8130]{color:var(--color-badge-deprecated)}.theme-dark .deprecated[data-v-602d8130]{color:var(--color-badge-dark-deprecated)}.changed[data-v-602d8130]{padding-left:26px}.changed[data-v-602d8130]:after{content:none}.changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:8px;position:absolute;top:0;width:16px;height:16px;left:5px}@media screen{[data-color-scheme=dark] .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}.theme-dark .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}.changed-added[data-v-602d8130]{border-color:var(--color-changes-added)}.changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}.theme-dark .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}.changed-deprecated[data-v-602d8130]{border-color:var(--color-changes-deprecated)}.changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.theme-dark .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}.changed-modified[data-v-602d8130]{border-color:var(--color-changes-modified)}.eyebrow[data-v-4492c658]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-documentation-intro-eyebrow,#ccc);display:block;margin-bottom:1.17647rem}@media only screen and (max-width:735px){.eyebrow[data-v-4492c658]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.documentation-hero--disabled .eyebrow[data-v-4492c658]{color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-4492c658]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-documentation-intro-title,#fff);margin-bottom:.70588rem}@media only screen and (max-width:1250px){.title[data-v-4492c658]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-4492c658]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.documentation-hero--disabled .title[data-v-4492c658]{color:var(--colors-header-text,var(--color-header-text))}small[data-v-4492c658]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-left:10px}@media only screen and (max-width:1250px){small[data-v-4492c658]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}small[data-v-4492c658]:before{content:attr(data-tag-name)}small.Beta[data-v-4492c658]{color:var(--color-badge-beta)}.theme-dark small.Beta[data-v-4492c658]{color:var(--color-badge-dark-beta)}small.Deprecated[data-v-4492c658]{color:var(--color-badge-deprecated)}.theme-dark small.Deprecated[data-v-4492c658]{color:var(--color-badge-dark-deprecated)}.OnThisPageStickyContainer[data-v-1b6d0048]{margin-top:2.353rem;position:sticky;top:3.82353rem;align-self:flex-start;flex:0 0 auto;width:192px;padding-right:1.29412rem;box-sizing:border-box;padding-bottom:var(--spacing-stacked-margin-small);max-height:calc(100vh - 3.82353rem);overflow:auto}@media print{.OnThisPageStickyContainer[data-v-1b6d0048]{display:none}}@media only screen and (max-width:735px){.OnThisPageStickyContainer[data-v-1b6d0048]{display:none}}.doc-topic[data-v-43c74ad0]{display:flex;flex-direction:column;height:100%}.doc-topic.with-on-this-page[data-v-43c74ad0]{--doc-hero-right-offset:192px}#main[data-v-43c74ad0]{outline-style:none;height:100%}[data-v-43c74ad0] .minimized-title{margin-bottom:.833rem}[data-v-43c74ad0] .minimized-title .title{font-size:1.416rem;font-weight:700}[data-v-43c74ad0] .minimized-title small{font-size:1rem;padding-left:.416rem}.minimized-abstract[data-v-43c74ad0]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.container[data-v-43c74ad0]:not(.minimized-container){outline-style:none}.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:87.5%}}@media only screen and (max-width:320px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:215px}}[data-v-43c74ad0] .minimized-container{outline-style:none;--spacing-stacked-margin-large:0.667em;--spacing-stacked-margin-xlarge:1em;--declaration-code-listing-margin:1em 0 0 0;--declaration-conditional-constraints-margin:1em;--declaration-source-link-margin:0.833em;--code-block-style-elements-padding:7px 12px;--spacing-param:var(--spacing-stacked-margin-large);--aside-border-radius:6px;--code-border-radius:6px}[data-v-43c74ad0] .minimized-container .description{margin-bottom:1.5em}[data-v-43c74ad0] .minimized-container>.primary-content>*{margin-top:1.5em;margin-bottom:1.5em}[data-v-43c74ad0] .minimized-container .description{margin-top:0}[data-v-43c74ad0] .minimized-container h1,[data-v-43c74ad0] .minimized-container h2,[data-v-43c74ad0] .minimized-container h3,[data-v-43c74ad0] .minimized-container h4,[data-v-43c74ad0] .minimized-container h5,[data-v-43c74ad0] .minimized-container h6{font-size:1rem;font-weight:700}[data-v-43c74ad0] .minimized-container h2{font-size:1.083rem}[data-v-43c74ad0] .minimized-container h1{font-size:1.416rem}[data-v-43c74ad0] .minimized-container aside{padding:.667rem 1rem}[data-v-43c74ad0] .minimized-container .single-line,[data-v-43c74ad0] .minimized-container .source{border-radius:var(--code-border-radius)}.description[data-v-43c74ad0]{margin-bottom:2.353rem}.description[data-v-43c74ad0]:empty{display:none}.description.after-enhanced-hero[data-v-43c74ad0]{margin-top:2.353rem}.description[data-v-43c74ad0] .content+*{margin-top:var(--spacing-stacked-margin-large)}.full-width-container .doc-content .minimized-container[data-v-43c74ad0]{padding-left:1.4rem;padding-right:1.4rem}[data-v-43c74ad0] .no-primary-content{--content-table-title-border-width:0px}.sample-download[data-v-43c74ad0]{margin-top:20px}.declarations-container[data-v-43c74ad0]{margin-top:30px}.declarations-container.minimized-container[data-v-43c74ad0]{margin-top:0}[data-v-43c74ad0] h1{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h1{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h1{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h2{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h2{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h2{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h3{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h4{font-size:1.41176rem;line-height:1.16667;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h4{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h5{font-size:1.29412rem;line-height:1.18182;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h5{font-size:1.17647rem;line-height:1.2;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h5{font-size:1.05882rem;line-height:1.44444;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h6{font-size:1rem;line-height:1.47059;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.doc-content-wrapper[data-v-43c74ad0]{display:flex;justify-content:center}.doc-content-wrapper .doc-content[data-v-43c74ad0]{min-width:0;width:100%}.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:820px}@media only screen and (min-width:1251px){.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:980px}}@media only screen and (min-width:1500px){.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:1080px}}.quick-navigation-open[data-v-53faf852]{display:flex;align-items:center;justify-content:center;width:16px;border:1px solid var(--color-grid);height:100%;border-radius:var(--border-radius,4px);transition:background-color .15s;box-sizing:border-box}.quick-navigation-open[data-v-53faf852]:hover{background-color:var(--color-fill-tertiary)}@media only screen and (max-width:1023px){.quick-navigation-open[data-v-53faf852]{display:none}}.fromkeyboard .quick-navigation-open[data-v-53faf852]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.tag[data-v-7e76f326]{display:inline-block;padding-right:.58824rem}.tag[data-v-7e76f326]:focus{outline:none}.tag button[data-v-7e76f326]{color:var(--color-figure-gray);background-color:var(--color-fill-tertiary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);border-radius:.82353rem;padding:.23529rem .58824rem;white-space:nowrap;border:1px solid transparent}@media (hover:hover){.tag button[data-v-7e76f326]:hover{transition:background-color .2s,color .2s;background-color:var(--color-fill-blue);color:#fff}}.tag button[data-v-7e76f326]:focus:active{background-color:var(--color-fill-blue);color:#fff}.fromkeyboard .tag button[data-v-7e76f326]:focus,.tag button.focus[data-v-7e76f326],.tag button[data-v-7e76f326]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.tags[data-v-1f2bd813]{position:relative;margin:0;list-style:none;box-sizing:border-box;transition:padding-right .8s,padding-bottom .8s,max-height 1s,opacity 1s;padding:0}.tags .scroll-wrapper[data-v-1f2bd813]{overflow-x:auto;overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin}.tags .scroll-wrapper[data-v-1f2bd813]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.tags .scroll-wrapper.scrolling[data-v-1f2bd813]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar{height:11px}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-track-piece:end{margin-right:8px}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-track-piece:start{margin-left:8px}.tags ul[data-v-1f2bd813]{margin:0;padding:0;display:flex}.filter[data-v-3f01a546]{--input-vertical-padding:.76471rem;--input-horizontal-spacing:.58824rem;--input-height:1.64706rem;--input-border-color:var(--color-fill-gray-secondary);--input-text:var(--color-fill-gray-secondary);position:relative;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:calc(var(--border-radius, 4px) + 1px)}.fromkeyboard .filter[data-v-3f01a546]:focus{outline:none}.filter__top-wrapper[data-v-3f01a546]{display:flex}.filter__filter-button[data-v-3f01a546]{position:relative;z-index:1;cursor:text;margin-left:var(--input-horizontal-spacing);margin-right:.17647rem}@media only screen and (max-width:735px){.filter__filter-button[data-v-3f01a546]{margin-right:.41176rem}}.filter__filter-button .svg-icon[data-v-3f01a546]{fill:var(--input-text);display:block;height:21px}.filter__filter-button.blue[data-v-3f01a546]>*{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.filter.focus .filter__wrapper[data-v-3f01a546]{box-shadow:0 0 0 3pt var(--color-focus-color);--input-border-color:var(--color-fill-blue)}.filter__wrapper[data-v-3f01a546]{border:1px solid var(--input-border-color);background:var(--color-fill);border-radius:var(--border-radius,4px)}.filter__wrapper--reversed[data-v-3f01a546]{display:flex;flex-direction:column-reverse}.filter__wrapper--no-border-style[data-v-3f01a546]{border:none}.filter__suggested-tags[data-v-3f01a546]{border-top:1px solid var(--color-fill-gray-tertiary);z-index:1;overflow:hidden}.filter__suggested-tags[data-v-3f01a546] ul{padding:var(--input-vertical-padding) .52941rem;border:1px solid transparent;border-bottom-left-radius:calc(var(--border-radius, 4px) - 1px);border-bottom-right-radius:calc(var(--border-radius, 4px) - 1px)}.fromkeyboard .filter__suggested-tags[data-v-3f01a546] ul:focus{outline:none;box-shadow:0 0 0 5px var(--color-focus-color)}.filter__wrapper--reversed .filter__suggested-tags[data-v-3f01a546]{border-bottom:1px solid var(--color-fill-gray-tertiary);border-top:none}.filter__selected-tags[data-v-3f01a546]{z-index:1;padding-left:4px;margin:-4px 0}@media only screen and (max-width:735px){.filter__selected-tags[data-v-3f01a546]{padding-left:0}}.filter__selected-tags[data-v-3f01a546] ul{padding:4px}@media only screen and (max-width:735px){.filter__selected-tags[data-v-3f01a546] ul{padding-right:.41176rem}}.filter__selected-tags[data-v-3f01a546] ul .tag:last-child{padding-right:0}.filter__delete-button[data-v-3f01a546]{position:relative;margin:0;z-index:1;border-radius:100%}.fromkeyboard .filter__delete-button[data-v-3f01a546]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.filter__delete-button .clear-rounded-icon[data-v-3f01a546]{height:.70588rem;width:.70588rem;fill:var(--input-text);display:block}.filter__delete-button-wrapper[data-v-3f01a546]{display:flex;align-items:center;padding-right:var(--input-horizontal-spacing);padding-left:.17647rem;border-top-right-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px)}.filter__input-label[data-v-3f01a546]{position:relative;flex-grow:1;height:var(--input-height);padding:var(--input-vertical-padding) 0}.filter__input-label[data-v-3f01a546]:after{content:attr(data-value);visibility:hidden;width:auto;white-space:nowrap;min-width:130px;display:block;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input-label[data-v-3f01a546]:after{text-indent:.17647rem}}.filter__input-box-wrapper[data-v-3f01a546]{overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin;display:flex;overflow-x:auto;align-items:center;cursor:text;flex:1}.filter__input-box-wrapper[data-v-3f01a546]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.filter__input-box-wrapper.scrolling[data-v-3f01a546]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar{height:11px}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-track-piece:end{margin-right:8px}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-track-piece:start{margin-left:8px}.filter__input[data-v-3f01a546]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-text);height:var(--input-height);border:none;width:100%;position:absolute;background:transparent;z-index:1;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input[data-v-3f01a546]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);text-indent:.17647rem}}.filter__input[data-v-3f01a546]:focus{outline:none}.filter__input[placeholder][data-v-3f01a546]::-moz-placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-3f01a546]::placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-3f01a546]:-ms-input-placeholder{color:var(--input-text)}.filter__input[placeholder][data-v-3f01a546]::-ms-input-placeholder{color:var(--input-text)}.highlight[data-v-1c4190f0]{display:inline}.highlight[data-v-1c4190f0] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}@media only screen and (max-width:735px){.preview[data-v-6fb5ba95]{display:none}}.unavailable[data-v-6fb5ba95]{align-items:center;display:flex;height:100%;justify-content:center}.loading[data-v-6fb5ba95]{padding:20px}.loading-row[data-v-6fb5ba95]{-webkit-animation:pulse 2.5s ease;animation:pulse 2.5s ease;-webkit-animation-delay:calc(1s + 0.3s*var(--index));animation-delay:calc(1s + 0.3s*var(--index));-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;background-color:var(--color-fill-gray-tertiary);border-radius:4px;height:12px;margin:20px 0;opacity:0}.loading-row[data-v-6fb5ba95]:first-of-type{margin-top:0}.loading-row[data-v-6fb5ba95]:last-of-type{margin-bottom:0}.quick-navigation[data-v-71686791]{--input-border-color:var(--color-grid)}.quick-navigation input[type=text][data-v-71686791]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.quick-navigation input[type=text][data-v-71686791]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.quick-navigation__filter[data-v-71686791]{--input-horizontal-spacing:.88235rem}.quick-navigation[data-v-71686791] .filter__wrapper{background-color:var(--color-fill-secondary)}.quick-navigation__container[data-v-71686791]{background-color:var(--color-fill-secondary);border:solid 1px var(--input-border-color);border-radius:var(--border-radius,4px);margin:0 .94118rem}.quick-navigation__container>[data-v-71686791]{--input-text:var(--color-figure-gray-secondary)}.quick-navigation__container.focus[data-v-71686791]{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.quick-navigation__magnifier-icon-container[data-v-71686791]{width:1rem}.quick-navigation__magnifier-icon-container>[data-v-71686791]{width:100%}.quick-navigation__magnifier-icon-container.blue .magnifier-icon[data-v-71686791]{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.quick-navigation__match-list[data-v-71686791]{display:flex;max-height:26.47059rem;height:0}.quick-navigation__match-list>[data-v-71686791]{min-width:0}.quick-navigation__match-list.active[data-v-71686791]{height:auto;border-top:1px solid var(--input-border-color)}.quick-navigation__match-list .no-results[data-v-71686791]{margin:.88235rem auto;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.quick-navigation__match-list .selected[data-v-71686791]{background-color:var(--color-navigator-item-hover)}.quick-navigation__refs[data-v-71686791]{flex:1;overflow:auto}.quick-navigation__preview[data-v-71686791]{border-left:1px solid var(--color-grid);flex:0 0 61.8%;overflow:auto;position:sticky;top:0}.quick-navigation__reference[data-v-71686791]:hover{text-decoration:none}.quick-navigation__symbol-match[data-v-71686791]{display:flex;height:2.35294rem;padding:.58824rem .88235rem;color:var(--color-figure-gray)}.quick-navigation__symbol-match[data-v-71686791]:hover{background-color:var(--color-navigator-item-hover)}.quick-navigation__symbol-match .symbol-info[data-v-71686791]{margin:auto;width:100%}.quick-navigation__symbol-match .symbol-info .navigator-icon[data-v-71686791]{margin-right:.58824rem}.quick-navigation__symbol-match .symbol-info .symbol-name[data-v-71686791]{display:flex}.quick-navigation__symbol-match .symbol-info .symbol-name .symbol-title[data-v-71686791]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.quick-navigation__symbol-match .symbol-info .symbol-path[data-v-71686791]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);display:flex;margin-left:1.58824rem;overflow:hidden;white-space:nowrap}.quick-navigation__symbol-match .symbol-info .symbol-path .parent-path[data-v-71686791]{padding-right:.29412rem}@media print{.sidebar[data-v-f3c6416c]{display:none}}.adjustable-sidebar-width[data-v-f3c6416c]{display:flex}@media only screen and (max-width:1023px){.adjustable-sidebar-width[data-v-f3c6416c]{display:block;position:relative}}.adjustable-sidebar-width.dragging[data-v-f3c6416c] *{cursor:col-resize!important}.adjustable-sidebar-width.sidebar-hidden.dragging[data-v-f3c6416c] *{cursor:e-resize!important}.sidebar[data-v-f3c6416c]{position:relative}@media only screen and (max-width:1023px){.sidebar[data-v-f3c6416c]{position:static}}.aside[data-v-f3c6416c]{width:250px;position:relative;height:100%;max-width:100vw}.aside.no-transition[data-v-f3c6416c]{transition:none!important}@media only screen and (min-width:1024px){.aside[data-v-f3c6416c]{transition:width .3s ease-in,visibility 0s linear var(--visibility-transition-time,0s)}.aside.dragging[data-v-f3c6416c]:not(.is-opening-on-large):not(.hide-on-large){transition:none}.aside.hide-on-large[data-v-f3c6416c]{width:0!important;visibility:hidden;pointer-events:none;--visibility-transition-time:.3s}}@media only screen and (max-width:1023px){.aside[data-v-f3c6416c]{width:100%!important;overflow:hidden;min-width:0;max-width:100%;height:calc(var(--app-height) - var(--top-offset-mobile));position:fixed;top:var(--top-offset-mobile);bottom:0;z-index:9998;transform:translateX(-100%);transition:transform .15s ease-in;left:0}.aside[data-v-f3c6416c] .aside-animated-child{opacity:0}.aside.show-on-mobile[data-v-f3c6416c]{transform:translateX(0)}.aside.show-on-mobile[data-v-f3c6416c] .aside-animated-child{--index:0;opacity:1;transition:opacity .15s linear;transition-delay:calc(var(--index)*0.15s + .15s)}.aside.has-mobile-top-offset[data-v-f3c6416c]{border-top:1px solid var(--color-fill-gray-tertiary)}}.content[data-v-f3c6416c]{display:flex;flex-flow:column;min-width:0;flex:1 1 auto;height:100%}.resize-handle[data-v-f3c6416c]{position:absolute;cursor:col-resize;top:0;bottom:0;right:0;width:5px;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1;transition:background-color .15s;transform:translateX(50%)}@media only screen and (max-width:1023px){.resize-handle[data-v-f3c6416c]{display:none}}.resize-handle[data-v-f3c6416c]:hover{background:var(--color-fill-gray-tertiary)}.navigator-card-item[data-v-0b9fe514]{--nav-head-wrapper-left-space:10px;--nav-head-wrapper-right-space:20px;--head-wrapper-vertical-space:5px;--nav-depth-spacer:25px;--nesting-index:0;display:flex;align-items:stretch;min-height:32px;box-sizing:border-box}.fromkeyboard .navigator-card-item[data-v-0b9fe514]:focus-within{outline:4px solid var(--color-focus-color);outline-offset:-4px}.navigator-card-item.active[data-v-0b9fe514]{background:var(--color-fill-gray-quaternary)}.hover .navigator-card-item[data-v-0b9fe514]:not(.is-group){background:var(--color-navigator-item-hover)}.depth-spacer[data-v-0b9fe514]{width:calc(var(--nesting-index)*15px + var(--nav-depth-spacer));height:100%;position:relative;flex:0 0 auto}.title-container[data-v-0b9fe514]{width:100%;min-width:0;display:flex;align-items:center}.navigator-icon-wrapper[data-v-0b9fe514]{margin-right:7px}.head-wrapper[data-v-0b9fe514]{padding:var(--head-wrapper-vertical-space) var(--nav-head-wrapper-right-space) var(--head-wrapper-vertical-space) var(--nav-head-wrapper-left-space);position:relative;display:flex;align-items:center;flex:1;min-width:0}@supports (padding:max(0px)){.head-wrapper[data-v-0b9fe514]{padding-left:max(var(--nav-head-wrapper-left-space),env(safe-area-inset-left));padding-right:max(var(--nav-head-wrapper-right-space),env(safe-area-inset-right))}}.highlight[data-v-d75876e2]{display:inline}.highlight[data-v-d75876e2] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}.is-group .leaf-link[data-v-0c96ff75]{color:var(--color-figure-gray-secondary);font-weight:600}.is-group .leaf-link[data-v-0c96ff75]:after{display:none}.navigator-icon[data-v-0c96ff75]{display:flex;flex:0 0 auto}.navigator-icon.changed[data-v-0c96ff75]{border:none;width:1em;height:1em;z-index:0}.navigator-icon.changed[data-v-0c96ff75]:after{top:50%;left:50%;right:auto;bottom:auto;transform:translate(-50%,-50%);background-image:url(../img/modified-icon.f496e73d.svg);margin:0}@media screen{[data-color-scheme=dark] .navigator-icon.changed[data-v-0c96ff75]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed[data-v-0c96ff75]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.leaf-link[data-v-0c96ff75]{color:var(--color-figure-gray);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline;vertical-align:middle;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.fromkeyboard .leaf-link[data-v-0c96ff75]:focus{outline:none}.leaf-link[data-v-0c96ff75]:hover{text-decoration:none}.leaf-link.bolded[data-v-0c96ff75]{font-weight:600}.leaf-link[data-v-0c96ff75]:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0}.extended-content[data-v-0c96ff75]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tree-toggle[data-v-0c96ff75]{overflow:hidden;position:absolute;width:100%;height:100%;padding-right:5px;box-sizing:border-box;z-index:1;display:flex;align-items:center;justify-content:flex-end}.chevron[data-v-0c96ff75]{width:10px}.chevron.animating[data-v-0c96ff75]{transition:transform .15s ease-in}.chevron.rotate[data-v-0c96ff75]{transform:rotate(90deg)}.navigator-card[data-v-24789ed0]{--card-vertical-spacing:8px;--card-horizontal-spacing:20px;--nav-filter-horizontal-padding:20px;--visibility-delay:1s;display:flex;flex-direction:column;min-height:0;height:calc(var(--app-height) - var(--nav-height, 0px));position:sticky;top:var(--nav-height,0)}@media only screen and (max-width:1023px){.navigator-card[data-v-24789ed0]{height:100%;position:static;background:var(--color-fill)}}.navigator-card .navigator-card-full-height[data-v-24789ed0]{min-height:0;flex:1 1 auto}.navigator-card .head-inner[data-v-24789ed0]{overflow:hidden}.navigator-card .head-wrapper[data-v-24789ed0]{position:relative;flex:1 0 auto}.navigator-card .navigator-head[data-v-24789ed0]{--navigator-head-padding-right:calc(var(--card-horizontal-spacing)*2 + 19px);padding:0 var(--navigator-head-padding-right) 0 var(--card-horizontal-spacing);background:var(--color-fill);border-bottom:1px solid var(--color-grid);display:flex;align-items:center;height:3.05882rem;white-space:nowrap}.navigator-card .navigator-head .card-link[data-v-24789ed0]{color:var(--color-text);font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);font-weight:600;overflow:hidden;text-overflow:ellipsis}.navigator-card .navigator-head .badge[data-v-24789ed0]{margin-top:0}.navigator-card .navigator-head.router-link-exact-active[data-v-24789ed0]{background:var(--color-fill)}.navigator-card .navigator-head.router-link-exact-active .card-link[data-v-24789ed0]{font-weight:700}.navigator-card .navigator-head[data-v-24789ed0]:hover{background:var(--color-navigator-item-hover);text-decoration:none}@supports (padding:max(0px)){.navigator-card .navigator-head[data-v-24789ed0]{padding-left:max(var(--card-horizontal-spacing),env(safe-area-inset-left));padding-right:max(var(--navigator-head-padding-right),env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-card .navigator-head[data-v-24789ed0]{justify-content:center;--navigator-head-padding-right:var(--card-horizontal-spacing)}}@media only screen and (max-width:767px){.navigator-card .navigator-head[data-v-24789ed0]{height:2.82353rem;padding:0 20px}}.close-card[data-v-24789ed0]{display:flex;position:absolute;z-index:1;align-items:center;justify-content:center;right:1rem;padding:5px;margin-left:-5px;top:calc(50% - 14px);transition:transform .3s ease-in 0s,visibility 0s}@media only screen and (max-width:1023px){.close-card[data-v-24789ed0]{right:unset;top:0;left:0;margin:0;padding:0 1.29412rem 0 20px;height:100%}@supports (padding:max(0px)){.close-card[data-v-24789ed0]{padding-left:max(1.29412rem,env(safe-area-inset-left))}}}@media only screen and (max-width:767px){.close-card[data-v-24789ed0]{padding-left:.94118rem;padding-right:.94118rem}@supports (padding:max(0px)){.close-card[data-v-24789ed0]{padding-left:max(.94118rem,env(safe-area-inset-left))}}}.close-card .close-icon[data-v-24789ed0]{width:19px;height:19px}@media only screen and (min-width:1024px){.close-card.hide-on-large[data-v-24789ed0]{display:none}.close-card[data-v-24789ed0]:hover{border-radius:var(--border-radius,4px);background:var(--color-fill-gray-quaternary)}.sidebar-hidden .close-card[data-v-24789ed0]{transition:transform .3s ease-in 0s,visibility 0s linear .3s;visibility:hidden;transform:translateX(3.76471rem)}}[data-v-24789ed0] .card-body{padding-right:0;flex:1 1 auto;min-height:0;height:100%}@media only screen and (max-width:1023px){[data-v-24789ed0] .card-body{--card-vertical-spacing:0px}}.navigator-card-inner[data-v-24789ed0]{display:flex;flex-flow:column;height:100%}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{border:none;background-color:transparent;opacity:0}.resize-observer[data-v-b329ee4c],.resize-observer[data-v-b329ee4c] object{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;pointer-events:none;display:block;overflow:hidden}.navigator-card.filter-on-top .filter-wrapper[data-v-1543892a]{order:1;position:static}.navigator-card.filter-on-top .card-body[data-v-1543892a]{order:2}.no-items-wrapper[data-v-1543892a]{overflow:hidden;color:var(--color-figure-gray-tertiary)}.no-items-wrapper .no-items[data-v-1543892a]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:var(--card-vertical-spacing) var(--card-horizontal-spacing);min-width:200px;box-sizing:border-box}.navigator-filter[data-v-1543892a]{box-sizing:border-box;padding:15px var(--nav-filter-horizontal-padding);border-top:1px solid var(--color-grid);height:71px;display:flex;align-items:flex-end}.filter-on-top .navigator-filter[data-v-1543892a]{border-top:none;align-items:flex-start}@supports (padding:max(0px)){.navigator-filter[data-v-1543892a]{padding-left:max(var(--nav-filter-horizontal-padding),env(safe-area-inset-left));padding-right:max(var(--nav-filter-horizontal-padding),env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-filter[data-v-1543892a]{--nav-filter-horizontal-padding:20px;border:none;padding-top:10px;padding-bottom:10px;height:60px}}.navigator-filter .input-wrapper[data-v-1543892a]{position:relative;flex:1;min-width:0}.navigator-filter .filter-component[data-v-1543892a]{--input-vertical-padding:8px;--input-height:22px;--input-border-color:var(--color-grid);--input-text:var(--color-figure-gray-secondary)}.navigator-filter .filter-component[data-v-1543892a] .filter__input{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.scroller[data-v-1543892a]{height:100%;box-sizing:border-box;padding:var(--card-vertical-spacing) 0;padding-bottom:calc(var(--top-offset, 0px) + var(--card-vertical-spacing));transition:padding-bottom .15s ease-in}@media only screen and (max-width:1023px){.scroller[data-v-1543892a]{padding-bottom:10em}}.scroller[data-v-1543892a] .vue-recycle-scroller__item-wrapper{transform:translateZ(0)}.filter-wrapper[data-v-1543892a]{position:sticky;bottom:0;background:var(--color-fill)}.sidebar-transitioning .filter-wrapper[data-v-1543892a]{flex:1 0 71px;overflow:hidden}@media only screen and (max-width:1023px){.sidebar-transitioning .filter-wrapper[data-v-1543892a]{flex-basis:60px}}.loader[data-v-0de29914]{height:.70588rem;background-color:var(--color-fill-gray-tertiary);border-radius:4px}.navigator-icon[data-v-0de29914]{width:16px;height:16px;border-radius:2px;background-color:var(--color-fill-gray-tertiary)}.loading-navigator-item[data-v-0de29914]{-webkit-animation:pulse 2.5s ease;animation:pulse 2.5s ease;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:0;-webkit-animation-delay:calc(var(--visibility-delay) + 0.3s*var(--index));animation-delay:calc(var(--visibility-delay) + 0.3s*var(--index))}.delay-visibility-enter-active[data-v-4b6d345f]{transition:visibility var(--visibility-delay);visibility:hidden}.loading-navigator[data-v-4b6d345f]{padding-top:var(--card-vertical-spacing)}.navigator[data-v-159b9764]{height:100%;display:flex;flex-flow:column}@media only screen and (max-width:1023px){.navigator[data-v-159b9764]{position:static;transition:none}}.hierarchy-collapsed-items[data-v-74906830]{position:relative;display:inline-flex;align-items:center;margin-left:.17647rem}.hierarchy-collapsed-items .hierarchy-item-icon[data-v-74906830]{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-collapsed-items[data-v-74906830]{display:none}.hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:var(--border-radius,4px);border-style:solid;border-width:0;font-weight:600;height:1.11765rem;text-align:center;width:2.11765rem;display:flex;align-items:center;justify-content:center}.theme-dark .hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background)}.hierarchy-collapsed-items .toggle.focused[data-v-74906830],.hierarchy-collapsed-items .toggle[data-v-74906830]:active,.hierarchy-collapsed-items .toggle[data-v-74906830]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.indicator[data-v-74906830]{width:1em;height:1em;display:flex;align-items:center}.indicator .toggle-icon[data-v-74906830]{width:100%}.dropdown[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:var(--border-radius,4px);border-style:solid;box-shadow:0 1px 4px -1px var(--color-figure-gray-secondary);border-width:0;padding:0 .5rem;position:absolute;z-index:42;top:calc(100% + .41176rem)}.theme-dark .dropdown[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background);border-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown.collapsed[data-v-74906830]{opacity:0;transform:translate3d(0,-.41176rem,0);transition:opacity .25s ease,transform .25s ease,visibility 0s linear .25s;visibility:hidden}.dropdown[data-v-74906830]:not(.collapsed){opacity:1;transform:none;transition:opacity .25s ease,transform .25s ease,visibility 0s linear 0s;visibility:visible}.nav--in-breakpoint-range .dropdown[data-v-74906830]:not(.collapsed){display:none}.dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-hierarchy-collapse-background);border-bottom-style:solid;border-bottom-width:.5rem;border-left-color:transparent;border-left-style:solid;border-left-width:.5rem;border-right-color:transparent;border-right-style:solid;border-right-width:.5rem;content:"";left:1.26471rem;position:absolute;top:-.44118rem}.theme-dark .dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-dark-hierarchy-collapse-background)}.dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-hierarchy-collapse-borders);border-top-style:solid;border-top-width:1px}.theme-dark .dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown-item[data-v-74906830]:first-child{border-top:none}.nav-menu-link[data-v-74906830]{max-width:57.64706rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding:.75rem 1rem}.hierarchy-item[data-v-382bf39e]{display:flex;align-items:center;margin-left:.17647rem}.hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{display:none}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top:1px solid var(--color-nav-hierarchy-item-borders);display:flex;align-items:center}.theme-dark.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top-color:var(--color-nav-dark-hierarchy-item-borders)}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]:first-of-type{border-top:none}.hierarchy-item.collapsed[data-v-382bf39e]{display:none}.nav--in-breakpoint-range .hierarchy-item.collapsed[data-v-382bf39e]{display:inline-block}.item[data-v-382bf39e]{display:inline-block;vertical-align:middle}.nav--in-breakpoint-range .item[data-v-382bf39e]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:100%;line-height:2.47059rem}@media only screen and (min-width:768px){.hierarchy-item:first-child:last-child .item[data-v-382bf39e],.hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e]{max-width:45rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:last-child .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:36rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:28.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:27rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:21.6rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:18rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:14.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:9rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:7.2rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:10.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item:last-child .item[data-v-382bf39e]{max-width:none}.has-badge .hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:8.64rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.hierarchy[data-v-c2bd6086]{justify-content:flex-start;min-width:0;margin-right:80px}.nav--in-breakpoint-range .hierarchy[data-v-c2bd6086]{margin-right:0}.hierarchy .root-hierarchy .item[data-v-c2bd6086]{max-width:10rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-menu-setting-label[data-v-d12167e0]{margin-right:.35294rem;white-space:nowrap}.language-container[data-v-d12167e0]{flex:1 0 auto}.language-dropdown[data-v-d12167e0]{-webkit-text-size-adjust:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;background-color:transparent;box-sizing:inherit;padding:0 11px 0 4px;margin-left:-4px;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);cursor:pointer;position:relative;z-index:1}@media only screen and (max-width:1023px){.language-dropdown[data-v-d12167e0]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.language-dropdown[data-v-d12167e0]:focus{outline:none}.fromkeyboard .language-dropdown[data-v-d12167e0]:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}.language-sizer[data-v-d12167e0]{position:absolute;opacity:0;pointer-events:none;padding:0}.language-toggle-container[data-v-d12167e0]{display:flex;align-items:center;padding-right:.17647rem;position:relative}.nav--in-breakpoint-range .language-toggle-container[data-v-d12167e0]{display:none}.language-toggle-container .toggle-icon[data-v-d12167e0]{width:.6em;height:.6em;position:absolute;right:7px}.language-toggle-label[data-v-d12167e0]{margin-right:2px}.language-toggle.nav-menu-toggle-label[data-v-d12167e0]{margin-right:6px}.language-list[data-v-d12167e0]{display:inline-block;margin-top:0}.language-list-container[data-v-d12167e0]{display:none}.language-list-item[data-v-d12167e0],.nav--in-breakpoint-range .language-list-container[data-v-d12167e0]{display:inline-block}.language-list-item[data-v-d12167e0]:not(:first-child){border-left:1px solid #424242;margin-left:6px;padding-left:6px}[data-v-138d523a] .nav-menu{line-height:1.5}[data-v-138d523a] .nav-menu,[data-v-138d523a] .nav-menu-settings{font-size:.82353rem;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}[data-v-138d523a] .nav-menu-settings{min-width:0;line-height:1.28571}@media only screen and (max-width:1023px){[data-v-138d523a] .nav-menu-settings{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (min-width:1024px){[data-v-138d523a] .nav-menu-settings{margin-left:.58824rem}}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings:not([data-previous-menu-children-count="0"]) .nav-menu-setting:first-child{border-top:1px solid #b0b0b0;display:flex;align-items:center}[data-v-138d523a] .nav-menu-settings .nav-menu-setting{display:flex;align-items:center;color:var(--color-nav-current-link);margin-left:0;min-width:0}[data-v-138d523a] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:.58824rem}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:0}.theme-dark[data-v-138d523a] .nav-menu-settings .nav-menu-setting{color:var(--color-nav-dark-current-link)}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings .nav-menu-setting:not(:first-child){border-top:1px solid #424242}.documentation-nav[data-v-138d523a] .nav-title{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.documentation-nav[data-v-138d523a] .nav-title .nav-title-link.inactive{height:auto;color:var(--color-figure-gray-secondary-alt)}.theme-dark.documentation-nav .nav-title .nav-title-link.inactive[data-v-138d523a]{color:#b0b0b0}.sidenav-toggle-wrapper[data-v-138d523a]{display:flex;margin-top:1px}.nav--in-breakpoint-range .sidenav-toggle-wrapper[data-v-138d523a]{display:flex!important}@media only screen and (min-width:1024px){.sidenav-toggle-enter-active[data-v-138d523a],.sidenav-toggle-leave-active[data-v-138d523a]{transition:margin .3s ease-in 0s}.sidenav-toggle-enter[data-v-138d523a],.sidenav-toggle-leave-to[data-v-138d523a]{margin-left:-3.76471rem}}.sidenav-toggle[data-v-138d523a]{align-self:center;color:var(--color-nav-link-color);position:relative;margin:-5px}.theme-dark .sidenav-toggle[data-v-138d523a]{color:var(--color-nav-dark-link-color)}.sidenav-toggle:hover .sidenav-icon-wrapper[data-v-138d523a]{background:var(--color-fill-gray-quaternary)}.theme-dark .sidenav-toggle:hover .sidenav-icon-wrapper[data-v-138d523a]{background:#424242}.sidenav-toggle__separator[data-v-138d523a]{height:.8em;width:1px;background:var(--color-nav-color);align-self:center;margin:0 1.29412rem}.nav--in-breakpoint-range .sidenav-toggle[data-v-138d523a]{margin-left:-14px;margin-right:-14px;padding-left:14px;padding-right:14px;align-self:stretch}.nav--in-breakpoint-range .sidenav-toggle__separator[data-v-138d523a]{display:none}.sidenav-icon-wrapper[data-v-138d523a]{padding:5px;display:flex;align-items:center;justify-content:center;border-radius:var(--border-radius,4px)}.sidenav-icon[data-v-138d523a]{display:flex;width:19px;height:19px}[data-v-4a89caca] .generic-modal{overflow-y:overlay}[data-v-4a89caca] .modal-fullscreen>.container{background-color:transparent;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;flex:auto;margin:9.41176rem 0;max-width:47.05882rem;overflow:visible}[data-v-4a89caca] .navigator-filter .quick-navigation-open{margin-left:var(--nav-filter-horizontal-padding);width:calc(var(--nav-filter-horizontal-padding)*2)}.doc-topic-view[data-v-4a89caca]{--delay:1s;display:flex;flex-flow:column;background:var(--colors-text-background,var(--color-text-background))}.doc-topic-view .delay-hiding-leave-active[data-v-4a89caca]{transition:display var(--delay)}.doc-topic-aside[data-v-4a89caca]{height:100%;box-sizing:border-box;border-right:1px solid var(--color-grid)}@media only screen and (max-width:1023px){.doc-topic-aside[data-v-4a89caca]{background:var(--color-fill);border-right:none}.sidebar-transitioning .doc-topic-aside[data-v-4a89caca]{border-right:1px solid var(--color-grid)}}.topic-wrapper[data-v-4a89caca]{flex:1 1 auto;width:100%}.full-width-container[data-v-4a89caca]{max-width:1920px;margin-left:auto;margin-right:auto}@media only screen and (min-width:1920px){.full-width-container[data-v-4a89caca]{border-left:1px solid var(--color-grid);border-right:1px solid var(--color-grid);box-sizing:border-box}} \ No newline at end of file diff --git a/docs/css/documentation-topic.29351f99.css b/docs/css/documentation-topic.29351f99.css deleted file mode 100644 index 5807bf1..0000000 --- a/docs/css/documentation-topic.29351f99.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.betainfo[data-v-0f5e5efb]{font-size:.94118rem;padding:3rem 0;background-color:var(--color-fill-secondary)}.full-width-container .betainfo-container[data-v-0f5e5efb]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .betainfo-container[data-v-0f5e5efb]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .betainfo-container[data-v-0f5e5efb]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .betainfo-container[data-v-0f5e5efb]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .betainfo-container[data-v-0f5e5efb]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .betainfo-container[data-v-0f5e5efb]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .betainfo-container[data-v-0f5e5efb]{width:692px}}@media only screen and (max-width:735px){.static-width-container .betainfo-container[data-v-0f5e5efb]{width:87.5%}}.betainfo-label[data-v-0f5e5efb]{font-weight:600;font-size:.94118rem}.betainfo-content[data-v-0f5e5efb] p{margin-bottom:10px}.summary-section[data-v-3aa6f694]:last-of-type{margin-right:0}@media only screen and (max-width:735px){.summary-section[data-v-3aa6f694]{margin-right:0}}.title[data-v-6796f6ea]{color:#fff;font-size:.82353rem;margin-right:.5rem;text-rendering:optimizeLegibility}.documentation-hero--disabled .title[data-v-6796f6ea]{color:var(--colors-text,var(--color-text))}.language[data-v-0de98d61]{padding-bottom:10px;justify-content:flex-end}.language-list[data-v-0de98d61],.language[data-v-0de98d61]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:0;display:flex;align-items:center}.language-option.swift[data-v-0de98d61]{padding-right:10px;border-right:1px solid var(--color-fill-gray-tertiary)}.language-option.objc[data-v-0de98d61]{padding-left:10px}.language-option.active[data-v-0de98d61],.language-option.router-link-exact-active[data-v-0de98d61]{color:#ccc}.documentation-hero--disabled .language-option.active[data-v-0de98d61],.documentation-hero--disabled .language-option.router-link-exact-active[data-v-0de98d61]{color:var(--colors-secondary-label,var(--color-secondary-label))}.documentation-hero[data-v-3ec838d1]{background:#000;color:var(--color-documentation-intro-figure,#fff);overflow:hidden;text-align:left;position:relative;padding-right:var(--doc-hero-right-offset)}.documentation-hero[data-v-3ec838d1]:before{content:"";background:var(--color-documentation-intro-fill,#2a2a2a);position:absolute;width:100%;left:0;top:-50%;height:150%;right:0}.documentation-hero[data-v-3ec838d1]:after{background:transparent;opacity:.7;width:100%;position:absolute;content:"";height:100%;left:0;top:0}.documentation-hero .icon[data-v-3ec838d1]{position:absolute;margin-top:10px;margin-right:25px;right:0;width:250px;height:calc(100% - 20px);box-sizing:border-box}@media only screen and (max-width:735px){.documentation-hero .icon[data-v-3ec838d1]{display:none}}.documentation-hero .background-icon[data-v-3ec838d1]{color:var(--color-documentation-intro-accent,#161616);display:block;width:250px;height:auto;opacity:1;position:absolute;top:50%;left:0;transform:translateY(-50%);max-height:100%}.documentation-hero .background-icon[data-v-3ec838d1] img,.documentation-hero .background-icon[data-v-3ec838d1] svg{width:100%;height:100%}.documentation-hero__content[data-v-3ec838d1]{padding-top:2.35294rem;padding-bottom:40px;position:relative;z-index:1}.full-width-container .documentation-hero__content[data-v-3ec838d1]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .documentation-hero__content[data-v-3ec838d1]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .documentation-hero__content[data-v-3ec838d1]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .documentation-hero__content[data-v-3ec838d1]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .documentation-hero__content[data-v-3ec838d1]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .documentation-hero__content[data-v-3ec838d1]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .documentation-hero__content[data-v-3ec838d1]{width:692px}}@media only screen and (max-width:735px){.static-width-container .documentation-hero__content[data-v-3ec838d1]{width:87.5%}}.documentation-hero__above-content[data-v-3ec838d1]{position:relative;z-index:1}.documentation-hero--disabled[data-v-3ec838d1]{background:none;color:var(--colors-text,var(--color-text))}.documentation-hero--disabled[data-v-3ec838d1]:after,.documentation-hero--disabled[data-v-3ec838d1]:before{content:none}.short-hero[data-v-3ec838d1]{padding-top:3.52941rem;padding-bottom:3.52941rem}.extra-bottom-padding[data-v-3ec838d1]{padding-bottom:3.82353rem}.theme-dark[data-v-3ec838d1] a:not(.button-cta){color:#09f}ul[data-v-f919e820]{list-style-type:none;margin:0}.parent-item .base-link[data-v-f919e820]{font-weight:700}.base-link[data-v-f919e820]{color:var(--color-figure-gray-secondary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:inline-block;margin-bottom:5px;transition:color .15s ease-in;max-width:100%}.active .base-link[data-v-f919e820]{color:var(--color-text)}.abstract[data-v-702ec04e]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.abstract[data-v-702ec04e]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-702ec04e] p:last-child{margin-bottom:0}.container[data-v-6e075935]{padding-bottom:40px}.full-width-container .container[data-v-6e075935]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .container[data-v-6e075935]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .container[data-v-6e075935]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .container[data-v-6e075935]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .container[data-v-6e075935]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-6e075935]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-6e075935]{width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-6e075935]{width:87.5%}}.title[data-v-6e075935]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-top:40px;border-top-color:var(--color-grid);border-top-style:solid;border-top-width:var(--content-table-title-border-width,1px)}@media only screen and (max-width:1250px){.title[data-v-6e075935]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-6e075935]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title+.contenttable-section[data-v-4aae1079]{margin-top:0}.contenttable-section[data-v-4aae1079]{align-items:baseline;padding-top:2.353rem}.contenttable-section[data-v-4aae1079]:last-child{margin-bottom:0}[data-v-4aae1079] .contenttable-title{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-4aae1079] .contenttable-title{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.contenttable-section[data-v-4aae1079]{align-items:unset;border-top:none;display:inherit;margin:0}.section-content[data-v-4aae1079],.section-title[data-v-4aae1079]{padding:0}[data-v-4aae1079] .contenttable-title{margin:0 0 2.353rem 0;padding-bottom:.5rem}}.section-content>.content[data-v-6cec8012],.topic[data-v-6cec8012]{margin-top:15px}.no-title .section-content>.content[data-v-6cec8012]:first-child,.no-title .topic[data-v-6cec8012]:first-child{margin-top:0}.datalist dd{padding-left:2rem}.datalist dt{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.datalist dt:first-of-type{padding-top:0}.source[data-v-5a91c7c4]{background:var(--background,var(--color-code-background));border-color:var(--color-grid);color:var(--text,var(--color-code-plain));border-style:solid;border-width:1px;padding:8px 14px;speak:literal-punctuation;line-height:25px;-webkit-mask-image:-webkit-radial-gradient(#fff,#000)}.source.has-multiple-lines[data-v-5a91c7c4],.source[data-v-5a91c7c4]{border-radius:var(--border-radius,4px)}.source>code[data-v-5a91c7c4]{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);display:block}.platforms[data-v-c5ecdd3e]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:.45rem;margin-top:1.6em}.changed .platforms[data-v-c5ecdd3e]{padding-left:.588rem}.platforms[data-v-c5ecdd3e]:first-of-type{margin-top:1rem}.source[data-v-c5ecdd3e]{margin:14px 0}.platforms+.source[data-v-c5ecdd3e]{margin:0}.changed.declaration-group[data-v-c5ecdd3e]{background:var(--background,var(--color-code-background))}.changed .source[data-v-c5ecdd3e]{background:none;border:none;margin-top:0;margin-bottom:0;margin-left:2.17647rem;padding-left:0}.declaration-diff[data-v-b3e21c4a]{background:var(--background,var(--color-code-background))}.declaration-diff-version[data-v-b3e21c4a]{padding-left:.588rem;padding-left:2.17647rem;font-size:1rem;line-height:1.52941;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);margin:0}.declaration-diff-current[data-v-b3e21c4a]{padding-top:8px;padding-bottom:5px}.declaration-diff-previous[data-v-b3e21c4a]{padding-top:5px;padding-bottom:8px;background-color:var(--color-changes-modified-previous-background);border-radius:0 0 var(--border-radius,4px) var(--border-radius,4px);position:relative}.declaration-source-link[data-v-ad6ea67c]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;align-items:center;margin-top:-4px}.declaration-icon[data-v-ad6ea67c]{width:1em;margin-right:5px}.conditional-constraints[data-v-586930aa]{margin:1.17647rem 0 3rem 0}.type[data-v-791bac44]:first-letter{text-transform:capitalize}.detail-type[data-v-55ba4aa2]{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.detail-type[data-v-55ba4aa2]:first-child{padding-top:0}@media only screen and (max-width:735px){.detail-type[data-v-55ba4aa2]{padding-left:0}}.detail-content[data-v-55ba4aa2]{padding-left:2rem}@media only screen and (max-width:735px){.detail-content[data-v-55ba4aa2]{padding-left:0}}.param-name[data-v-ac6bef9a]{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.param-name[data-v-ac6bef9a]:first-child{padding-top:0}@media only screen and (max-width:735px){.param-name[data-v-ac6bef9a]{padding-left:0}}.param-content[data-v-ac6bef9a]{padding-left:2rem}@media only screen and (max-width:735px){.param-content[data-v-ac6bef9a]{padding-left:0}}.param-content[data-v-ac6bef9a] dt{font-weight:600}.param-content[data-v-ac6bef9a] dd{margin-left:1em}.parameters-table[data-v-31e03854] .change-added,.parameters-table[data-v-31e03854] .change-removed{display:inline-block;max-width:100%}.parameters-table[data-v-31e03854] .change-removed,.parameters-table[data-v-31e03854] .token-removed{text-decoration:line-through}.param[data-v-31e03854]{font-size:.88235rem;box-sizing:border-box}.param.changed[data-v-31e03854]{display:flex;flex-flow:row wrap;padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box;padding-left:0}.param.changed.changed[data-v-31e03854]{padding-right:1rem}@media only screen and (max-width:735px){.param.changed[data-v-31e03854]{padding-left:0;padding-right:0}.param.changed.changed[data-v-31e03854]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.param.changed[data-v-31e03854]{padding-left:0;padding-right:0}}.param.changed+.param.changed[data-v-31e03854]{margin-top:.82353rem}.changed .param-content[data-v-31e03854],.changed .param-symbol[data-v-31e03854]{padding-top:2px;padding-bottom:2px}@media only screen and (max-width:735px){.changed .param-content[data-v-31e03854]{padding-top:0}.changed .param-symbol[data-v-31e03854]{padding-bottom:0}}.param-symbol[data-v-31e03854]{text-align:right}.changed .param-symbol[data-v-31e03854]{padding-left:2.17647rem}@media only screen and (max-width:735px){.param-symbol[data-v-31e03854]{text-align:left}.changed .param-symbol[data-v-31e03854]{padding-left:0}}.param-symbol[data-v-31e03854] .type-identifier-link{color:var(--color-link)}.param+.param[data-v-31e03854]{margin-top:1.64706rem}.param+.param[data-v-31e03854]:first-child{margin-top:0}.param-content[data-v-31e03854]{padding-left:1rem;padding-left:2.17647rem}@media only screen and (max-width:735px){.param-content[data-v-31e03854]{padding-left:0;padding-right:0}}.property-metadata[data-v-8590589e]{color:var(--color-figure-gray-secondary)}.property-text{font-weight:700}.property-metadata[data-v-0a648a1e]{color:var(--color-figure-gray-secondary)}.property-name[data-v-25cd22fa]{font-weight:700}.property-name.deprecated[data-v-25cd22fa]{text-decoration:line-through}.property-deprecated[data-v-25cd22fa]{margin-left:0}.content[data-v-25cd22fa],.content[data-v-25cd22fa] p:first-child{display:inline}.response-mimetype[data-v-2faa6020]{color:var(--color-figure-gray-secondary)}.part-name[data-v-37777476]{font-weight:700}.content[data-v-37777476],.content[data-v-37777476] p:first-child{display:inline}.param-name[data-v-05f57530]{font-weight:700}.param-name.deprecated[data-v-05f57530]{text-decoration:line-through}.param-deprecated[data-v-05f57530]{margin-left:0}.content[data-v-05f57530],.content[data-v-05f57530] p:first-child{display:inline}.response-name[data-v-881189f4],.response-reason[data-v-881189f4]{font-weight:700}@media only screen and (max-width:735px){.response-reason[data-v-881189f4]{display:none}}.response-name>code>.reason[data-v-881189f4]{display:none}@media only screen and (max-width:735px){.response-name>code>.reason[data-v-881189f4]{display:initial}}[data-v-2aa0f0dc] h2{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-2aa0f0dc] h2{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-2aa0f0dc] h2{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.primary-content.with-border[data-v-2aa0f0dc]:before{border-top-color:var(--colors-grid,var(--color-grid));border-top-style:solid;border-top-width:1px;content:"";display:block}.primary-content[data-v-2aa0f0dc]>*{margin-bottom:40px;margin-top:40px}.primary-content[data-v-2aa0f0dc]>:first-child{margin-top:2.353rem}.relationships-list[data-v-6497632e]{list-style:none}.relationships-list.column[data-v-6497632e]{margin-left:0;margin-top:15px}.relationships-list.inline[data-v-6497632e]{display:flex;flex-direction:row;flex-wrap:wrap;margin-top:15px;margin-left:0}.relationships-list.inline li[data-v-6497632e]:not(:last-child):after{content:",\00a0"}.relationships-list.changed[data-v-6497632e]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.relationships-list.changed.changed[data-v-6497632e]{padding-right:1rem}@media only screen and (max-width:735px){.relationships-list.changed[data-v-6497632e]{padding-left:0;padding-right:0}.relationships-list.changed.changed[data-v-6497632e]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-6497632e]{padding-left:0;padding-right:0}}.relationships-list.changed[data-v-6497632e]:after{margin-top:.61765rem}.relationships-list.changed.column[data-v-6497632e]{display:block;box-sizing:border-box}.relationships-item[data-v-6497632e],.relationships-list[data-v-6497632e]{box-sizing:inherit}.conditional-constraints[data-v-6497632e]{font-size:.82353rem;margin:.17647rem 0 .58824rem 1.17647rem}.availability[data-v-3b784eb3]{display:flex;flex-flow:row wrap;gap:10px;margin-top:20px}.badge[data-v-3b784eb3]{margin:0}.technology[data-v-3b784eb3]{display:inline-flex;align-items:center}.tech-icon[data-v-3b784eb3]{height:12px;padding-right:5px;fill:var(--badge-color)}.theme-dark .tech-icon[data-v-3b784eb3]{fill:var(--badge-color)}.beta[data-v-3b784eb3]{color:var(--color-badge-beta)}.theme-dark .beta[data-v-3b784eb3]{color:var(--color-badge-dark-beta)}.deprecated[data-v-3b784eb3]{color:var(--color-badge-deprecated)}.theme-dark .deprecated[data-v-3b784eb3]{color:var(--color-badge-dark-deprecated)}.changed[data-v-3b784eb3]{padding-left:26px}.changed[data-v-3b784eb3]:after{content:none}.changed[data-v-3b784eb3]:before{background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:8px;position:absolute;top:0;width:16px;height:16px;left:5px}@media screen{[data-color-scheme=dark] .changed[data-v-3b784eb3]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed[data-v-3b784eb3]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}.theme-dark .changed[data-v-3b784eb3]:before{background-image:url(../img/modified-icon.f496e73d.svg)}.changed-added[data-v-3b784eb3]{border-color:var(--color-changes-added)}.changed-added[data-v-3b784eb3]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added[data-v-3b784eb3]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added[data-v-3b784eb3]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}.theme-dark .changed-added[data-v-3b784eb3]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}.changed-deprecated[data-v-3b784eb3]{border-color:var(--color-changes-deprecated)}.changed-deprecated[data-v-3b784eb3]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated[data-v-3b784eb3]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated[data-v-3b784eb3]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.theme-dark .changed-deprecated[data-v-3b784eb3]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}.changed-modified[data-v-3b784eb3]{border-color:var(--color-changes-modified)}.eyebrow[data-v-4492c658]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-documentation-intro-eyebrow,#ccc);display:block;margin-bottom:1.17647rem}@media only screen and (max-width:735px){.eyebrow[data-v-4492c658]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.documentation-hero--disabled .eyebrow[data-v-4492c658]{color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-4492c658]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-documentation-intro-title,#fff);margin-bottom:.70588rem}@media only screen and (max-width:1250px){.title[data-v-4492c658]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-4492c658]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.documentation-hero--disabled .title[data-v-4492c658]{color:var(--colors-header-text,var(--color-header-text))}small[data-v-4492c658]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-left:10px}@media only screen and (max-width:1250px){small[data-v-4492c658]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}small[data-v-4492c658]:before{content:attr(data-tag-name)}small.Beta[data-v-4492c658]{color:var(--color-badge-beta)}.theme-dark small.Beta[data-v-4492c658]{color:var(--color-badge-dark-beta)}small.Deprecated[data-v-4492c658]{color:var(--color-badge-deprecated)}.theme-dark small.Deprecated[data-v-4492c658]{color:var(--color-badge-dark-deprecated)}.OnThisPageStickyContainer[data-v-08d4053b]{margin-top:2.353rem;position:sticky;top:3.64706rem;align-self:flex-start;flex:0 0 auto;width:192px;padding-right:1.29412rem;box-sizing:border-box;padding-bottom:.4em;max-height:calc(100vh - 3.64706rem);overflow:auto}@media print{.OnThisPageStickyContainer[data-v-08d4053b]{display:none}}@media only screen and (max-width:735px){.OnThisPageStickyContainer[data-v-08d4053b]{display:none}}.doc-topic[data-v-666eaa31]{display:flex;flex-direction:column;height:100%}.doc-topic.with-on-this-page[data-v-666eaa31]{--doc-hero-right-offset:192px}#main[data-v-666eaa31]{outline-style:none;height:100%}.container[data-v-666eaa31]{outline-style:none}.full-width-container .container[data-v-666eaa31]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .container[data-v-666eaa31]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .container[data-v-666eaa31]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .container[data-v-666eaa31]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .container[data-v-666eaa31]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-666eaa31]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-666eaa31]{width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-666eaa31]{width:87.5%}}.description[data-v-666eaa31]{margin-bottom:2.353rem}.description[data-v-666eaa31]:empty{display:none}.description.after-enhanced-hero[data-v-666eaa31]{margin-top:2.353rem}.description[data-v-666eaa31] .content+*{margin-top:.8em}[data-v-666eaa31] .no-primary-content{--content-table-title-border-width:0px}.sample-download[data-v-666eaa31]{margin-top:20px}[data-v-666eaa31] h3{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-666eaa31] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-666eaa31] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-666eaa31] h4{font-size:1.41176rem;line-height:1.16667;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-666eaa31] h4{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-666eaa31] h5{font-size:1.29412rem;line-height:1.18182;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-666eaa31] h5{font-size:1.17647rem;line-height:1.2;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-666eaa31] h5{font-size:1.05882rem;line-height:1.44444;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-666eaa31] h6{font-size:1rem;line-height:1.47059;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.doc-content-wrapper[data-v-666eaa31]{display:flex;justify-content:center}.doc-content-wrapper .doc-content[data-v-666eaa31]{min-width:0;width:100%}.with-on-this-page .doc-content-wrapper .doc-content[data-v-666eaa31]{max-width:820px}@media only screen and (min-width:1251px){.with-on-this-page .doc-content-wrapper .doc-content[data-v-666eaa31]{max-width:980px}}@media only screen and (min-width:1500px){.with-on-this-page .doc-content-wrapper .doc-content[data-v-666eaa31]{max-width:1080px}}.tag[data-v-3b809bfa]{display:inline-block;padding-right:.58824rem}.tag[data-v-3b809bfa]:focus{outline:none}.tag button[data-v-3b809bfa]{color:var(--color-figure-gray);background-color:var(--color-fill-tertiary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);border-radius:.82353rem;padding:.23529rem .58824rem;white-space:nowrap;border:1px solid transparent}@media (hover:hover){.tag button[data-v-3b809bfa]:hover{transition:background-color .2s,color .2s;background-color:var(--color-fill-blue);color:#fff}}.tag button[data-v-3b809bfa]:focus:active{background-color:var(--color-fill-blue);color:#fff}.fromkeyboard .tag button[data-v-3b809bfa]:focus,.tag button.focus[data-v-3b809bfa],.tag button[data-v-3b809bfa]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.tags[data-v-4b231516]{position:relative;margin:0;list-style:none;box-sizing:border-box;transition:padding-right .8s,padding-bottom .8s,max-height 1s,opacity 1s;padding:0}.tags .scroll-wrapper[data-v-4b231516]{overflow-x:auto;overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin}.tags .scroll-wrapper[data-v-4b231516]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.tags .scroll-wrapper.scrolling[data-v-4b231516]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.tags .scroll-wrapper.scrolling[data-v-4b231516]::-webkit-scrollbar{height:11px}.tags .scroll-wrapper.scrolling[data-v-4b231516]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.tags .scroll-wrapper.scrolling[data-v-4b231516]::-webkit-scrollbar-track-piece:end{margin-right:8px}.tags .scroll-wrapper.scrolling[data-v-4b231516]::-webkit-scrollbar-track-piece:start{margin-left:8px}.tags ul[data-v-4b231516]{margin:0;padding:0;display:flex}.filter[data-v-449fced2]{--input-vertical-padding:.76471rem;--input-height:1.64706rem;--input-border-color:var(--color-fill-gray-secondary);--input-text:var(--color-fill-gray-secondary);position:relative;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:calc(var(--border-radius, 4px) + 1px)}.fromkeyboard .filter[data-v-449fced2]:focus{outline:none}.filter__top-wrapper[data-v-449fced2]{display:flex}.filter__filter-button[data-v-449fced2]{position:relative;z-index:1;cursor:text;margin-left:.58824rem;margin-right:.17647rem}@media only screen and (max-width:735px){.filter__filter-button[data-v-449fced2]{margin-right:.41176rem}}.filter__filter-button .svg-icon[data-v-449fced2]{fill:var(--input-text);display:block;height:21px}.filter__filter-button.blue[data-v-449fced2]>*{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.filter.focus .filter__wrapper[data-v-449fced2]{box-shadow:0 0 0 3pt var(--color-focus-color);--input-border-color:var(--color-fill-blue)}.filter__wrapper[data-v-449fced2]{border:1px solid var(--input-border-color);background:var(--color-fill);border-radius:var(--border-radius,4px)}.filter__wrapper--reversed[data-v-449fced2]{display:flex;flex-direction:column-reverse}.filter__suggested-tags[data-v-449fced2]{border-top:1px solid var(--color-fill-gray-tertiary);z-index:1;overflow:hidden}.filter__suggested-tags[data-v-449fced2] ul{padding:var(--input-vertical-padding) .52941rem;border:1px solid transparent;border-bottom-left-radius:calc(var(--border-radius, 4px) - 1px);border-bottom-right-radius:calc(var(--border-radius, 4px) - 1px)}.fromkeyboard .filter__suggested-tags[data-v-449fced2] ul:focus{outline:none;box-shadow:0 0 0 5px var(--color-focus-color)}.filter__wrapper--reversed .filter__suggested-tags[data-v-449fced2]{border-bottom:1px solid var(--color-fill-gray-tertiary);border-top:none}.filter__selected-tags[data-v-449fced2]{z-index:1;padding-left:4px;margin:-4px 0}@media only screen and (max-width:735px){.filter__selected-tags[data-v-449fced2]{padding-left:0}}.filter__selected-tags[data-v-449fced2] ul{padding:4px}@media only screen and (max-width:735px){.filter__selected-tags[data-v-449fced2] ul{padding-right:.41176rem}}.filter__selected-tags[data-v-449fced2] ul .tag:last-child{padding-right:0}.filter__delete-button[data-v-449fced2]{position:relative;margin:0;z-index:1;border-radius:100%}.fromkeyboard .filter__delete-button[data-v-449fced2]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.filter__delete-button .clear-rounded-icon[data-v-449fced2]{height:.70588rem;width:.70588rem;fill:var(--input-text);display:block}.filter__delete-button-wrapper[data-v-449fced2]{display:flex;align-items:center;padding-right:.58824rem;padding-left:.17647rem;border-top-right-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px)}.filter__input-label[data-v-449fced2]{position:relative;flex-grow:1;height:var(--input-height);padding:var(--input-vertical-padding) 0}.filter__input-label[data-v-449fced2]:after{content:attr(data-value);visibility:hidden;width:auto;white-space:nowrap;min-width:130px;display:block;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input-label[data-v-449fced2]:after{text-indent:.17647rem}}.filter__input-box-wrapper[data-v-449fced2]{overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin;display:flex;overflow-x:auto;align-items:center;cursor:text;flex:1}.filter__input-box-wrapper[data-v-449fced2]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.filter__input-box-wrapper.scrolling[data-v-449fced2]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.filter__input-box-wrapper.scrolling[data-v-449fced2]::-webkit-scrollbar{height:11px}.filter__input-box-wrapper.scrolling[data-v-449fced2]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.filter__input-box-wrapper.scrolling[data-v-449fced2]::-webkit-scrollbar-track-piece:end{margin-right:8px}.filter__input-box-wrapper.scrolling[data-v-449fced2]::-webkit-scrollbar-track-piece:start{margin-left:8px}.filter__input[data-v-449fced2]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-text);height:var(--input-height);border:none;width:100%;position:absolute;background:transparent;z-index:1;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input[data-v-449fced2]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);text-indent:.17647rem}}.filter__input[data-v-449fced2]:focus{outline:none}.filter__input[placeholder][data-v-449fced2]::-moz-placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-449fced2]::placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-449fced2]:-ms-input-placeholder{color:var(--input-text)}.filter__input[placeholder][data-v-449fced2]::-ms-input-placeholder{color:var(--input-text)}.highlight[data-v-1c4190f0]{display:inline}.highlight[data-v-1c4190f0] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}.quick-navigation input[type=text][data-v-483fdfd0]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.quick-navigation input[type=text][data-v-483fdfd0]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.quick-navigation__container[data-v-483fdfd0]{background-color:var(--color-fill);border:solid 1px var(--color-fill-gray);border-radius:var(--border-radius,4px);margin:0 .94118rem}.quick-navigation__container>[data-v-483fdfd0]{--input-text:var(--color-figure-gray-secondary)}.quick-navigation__filter[data-v-483fdfd0]{--input-border-color:var(--color-fill)}.quick-navigation__filter.focus+.quick-navigation__match-list[data-v-483fdfd0]{border-top:0}.quick-navigation__magnifier-icon-container[data-v-483fdfd0]{width:1.05882rem}.quick-navigation__magnifier-icon-container>[data-v-483fdfd0]{width:100%}.quick-navigation__magnifier-icon-container.blue .magnifier-icon[data-v-483fdfd0]{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.quick-navigation__match-list[data-v-483fdfd0]{overflow:scroll;max-height:26.47059rem;height:0}.quick-navigation__match-list.active[data-v-483fdfd0]{height:auto;border-top:1px solid var(--color-fill-gray)}.quick-navigation__match-list .no-results[data-v-483fdfd0]{margin:.88235rem auto;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.quick-navigation__match-list .selected[data-v-483fdfd0]{background-color:var(--color-navigator-item-hover)}.quick-navigation__reference[data-v-483fdfd0]:hover{text-decoration:none}.quick-navigation__symbol-match[data-v-483fdfd0]{display:flex;height:2.35294rem;padding:.58824rem .88235rem;color:var(--color-figure-gray)}.quick-navigation__symbol-match[data-v-483fdfd0]:hover{background-color:var(--color-navigator-item-hover)}.quick-navigation__symbol-match .symbol-info[data-v-483fdfd0]{margin:auto;width:100%}.quick-navigation__symbol-match .symbol-info .navigator-icon[data-v-483fdfd0]{margin-right:.58824rem}.quick-navigation__symbol-match .symbol-info .symbol-name[data-v-483fdfd0]{display:flex}.quick-navigation__symbol-match .symbol-info .symbol-name .symbol-title[data-v-483fdfd0]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.quick-navigation__symbol-match .symbol-info .symbol-path[data-v-483fdfd0]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);display:flex;margin-left:1.58824rem;overflow:hidden;white-space:nowrap}.quick-navigation__symbol-match .symbol-info .symbol-path .parent-path[data-v-483fdfd0]{padding-right:.29412rem}@media print{.sidebar[data-v-8b4eac40]{display:none}}.adjustable-sidebar-width[data-v-8b4eac40]{display:flex}@media only screen and (max-width:1023px){.adjustable-sidebar-width[data-v-8b4eac40]{display:block;position:relative}}.adjustable-sidebar-width.dragging[data-v-8b4eac40] *{cursor:col-resize!important}.adjustable-sidebar-width.sidebar-hidden.dragging[data-v-8b4eac40] *{cursor:e-resize!important}.sidebar[data-v-8b4eac40]{position:relative}@media only screen and (max-width:1023px){.sidebar[data-v-8b4eac40]{position:static}}.aside[data-v-8b4eac40]{width:250px;position:relative;height:100%;max-width:100vw}.aside.no-transition[data-v-8b4eac40]{transition:none!important}@media only screen and (min-width:1024px){.aside[data-v-8b4eac40]{transition:width .3s ease-in,visibility 0s linear var(--visibility-transition-time,0s)}.aside.dragging[data-v-8b4eac40]:not(.is-opening-on-large):not(.hide-on-large){transition:none}.aside.hide-on-large[data-v-8b4eac40]{width:0!important;visibility:hidden;pointer-events:none;--visibility-transition-time:.3s}}@media only screen and (max-width:1023px){.aside[data-v-8b4eac40]{width:100%!important;overflow:hidden;min-width:0;max-width:100%;height:calc(var(--app-height) - var(--top-offset-mobile));position:fixed;top:var(--top-offset-mobile);bottom:0;z-index:9998;transform:translateX(-100%);transition:transform .15s ease-in;left:0}.aside[data-v-8b4eac40] .aside-animated-child{opacity:0}.aside.show-on-mobile[data-v-8b4eac40]{transform:translateX(0)}.aside.show-on-mobile[data-v-8b4eac40] .aside-animated-child{--index:0;opacity:1;transition:opacity .15s linear;transition-delay:calc(var(--index)*0.15s + .15s)}.aside.has-mobile-top-offset[data-v-8b4eac40]{border-top:1px solid var(--color-fill-gray-tertiary)}}.content[data-v-8b4eac40]{display:flex;flex-flow:column;min-width:0;flex:1 1 auto;height:100%}.resize-handle[data-v-8b4eac40]{position:absolute;cursor:col-resize;top:0;bottom:0;right:0;width:5px;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1;transition:background-color .15s;transform:translateX(50%)}@media only screen and (max-width:1023px){.resize-handle[data-v-8b4eac40]{display:none}}.resize-handle[data-v-8b4eac40]:hover{background:var(--color-fill-gray-tertiary)}.navigator-card-item[data-v-0b9fe514]{--nav-head-wrapper-left-space:10px;--nav-head-wrapper-right-space:20px;--head-wrapper-vertical-space:5px;--nav-depth-spacer:25px;--nesting-index:0;display:flex;align-items:stretch;min-height:32px;box-sizing:border-box}.fromkeyboard .navigator-card-item[data-v-0b9fe514]:focus-within{outline:4px solid var(--color-focus-color);outline-offset:-4px}.navigator-card-item.active[data-v-0b9fe514]{background:var(--color-fill-gray-quaternary)}.hover .navigator-card-item[data-v-0b9fe514]:not(.is-group){background:var(--color-navigator-item-hover)}.depth-spacer[data-v-0b9fe514]{width:calc(var(--nesting-index)*15px + var(--nav-depth-spacer));height:100%;position:relative;flex:0 0 auto}.title-container[data-v-0b9fe514]{width:100%;min-width:0;display:flex;align-items:center}.navigator-icon-wrapper[data-v-0b9fe514]{margin-right:7px}.head-wrapper[data-v-0b9fe514]{padding:var(--head-wrapper-vertical-space) var(--nav-head-wrapper-right-space) var(--head-wrapper-vertical-space) var(--nav-head-wrapper-left-space);position:relative;display:flex;align-items:center;flex:1;min-width:0}@supports (padding:max(0px)){.head-wrapper[data-v-0b9fe514]{padding-left:max(var(--nav-head-wrapper-left-space),env(safe-area-inset-left));padding-right:max(var(--nav-head-wrapper-right-space),env(safe-area-inset-right))}}.highlight[data-v-d75876e2]{display:inline}.highlight[data-v-d75876e2] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}.is-group .leaf-link[data-v-08a89c9e]{color:var(--color-figure-gray-secondary);font-weight:600}.is-group .leaf-link[data-v-08a89c9e]:after{display:none}.navigator-icon[data-v-08a89c9e]{display:flex;flex:0 0 auto}.navigator-icon.changed[data-v-08a89c9e]{border:none;width:1em;height:1em;z-index:0}.navigator-icon.changed[data-v-08a89c9e]:after{top:50%;left:50%;right:auto;bottom:auto;transform:translate(-50%,-50%);background-image:url(../img/modified-icon.f496e73d.svg);margin:0}@media screen{[data-color-scheme=dark] .navigator-icon.changed[data-v-08a89c9e]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed[data-v-08a89c9e]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.navigator-icon.changed-added[data-v-08a89c9e]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .navigator-icon.changed-added[data-v-08a89c9e]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed-added[data-v-08a89c9e]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.navigator-icon.changed-deprecated[data-v-08a89c9e]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .navigator-icon.changed-deprecated[data-v-08a89c9e]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed-deprecated[data-v-08a89c9e]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.leaf-link[data-v-08a89c9e]{color:var(--color-figure-gray);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline;vertical-align:middle;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.fromkeyboard .leaf-link[data-v-08a89c9e]:focus{outline:none}.leaf-link[data-v-08a89c9e]:hover{text-decoration:none}.leaf-link.bolded[data-v-08a89c9e]{font-weight:600}.leaf-link[data-v-08a89c9e]:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0}.extended-content[data-v-08a89c9e]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tree-toggle[data-v-08a89c9e]{overflow:hidden;position:absolute;width:100%;height:100%;padding-right:5px;box-sizing:border-box;z-index:1;display:flex;align-items:center;justify-content:flex-end}.chevron[data-v-08a89c9e]{width:10px}.chevron.animating[data-v-08a89c9e]{transition:transform .15s ease-in}.chevron.rotate[data-v-08a89c9e]{transform:rotate(90deg)}.navigator-card[data-v-4a898368]{--card-vertical-spacing:8px;--card-horizontal-spacing:20px;--nav-filter-horizontal-padding:30px;--visibility-delay:1s;display:flex;flex-direction:column;min-height:0;height:calc(var(--app-height) - var(--nav-height, 0px));position:sticky;top:var(--nav-height,0)}@media only screen and (max-width:1023px){.navigator-card[data-v-4a898368]{height:100%;position:static;background:var(--color-fill)}}.navigator-card .navigator-card-full-height[data-v-4a898368]{min-height:0;flex:1 1 auto}.navigator-card .head-inner[data-v-4a898368]{overflow:hidden}.navigator-card .head-wrapper[data-v-4a898368]{position:relative;flex:1 0 auto}.navigator-card .navigator-head[data-v-4a898368]{--navigator-head-padding-right:calc(var(--card-horizontal-spacing)*2 + 19px);padding:0 var(--navigator-head-padding-right) 0 var(--card-horizontal-spacing);background:var(--color-fill);border-bottom:1px solid var(--color-grid);display:flex;align-items:center;height:3.05882rem;white-space:nowrap}.navigator-card .navigator-head .card-link[data-v-4a898368]{color:var(--color-text);font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);font-weight:600;overflow:hidden;text-overflow:ellipsis}.navigator-card .navigator-head .badge[data-v-4a898368]{margin-top:0}.navigator-card .navigator-head.router-link-exact-active[data-v-4a898368]{background:var(--color-fill)}.navigator-card .navigator-head.router-link-exact-active .card-link[data-v-4a898368]{font-weight:700}.navigator-card .navigator-head[data-v-4a898368]:hover{background:var(--color-navigator-item-hover);text-decoration:none}@supports (padding:max(0px)){.navigator-card .navigator-head[data-v-4a898368]{padding-left:max(var(--card-horizontal-spacing),env(safe-area-inset-left));padding-right:max(var(--navigator-head-padding-right),env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-card .navigator-head[data-v-4a898368]{justify-content:center;--navigator-head-padding-right:var(--card-horizontal-spacing)}}@media only screen and (max-width:767px){.navigator-card .navigator-head[data-v-4a898368]{height:2.82353rem;padding:0 20px}}.close-card[data-v-4a898368]{display:flex;position:absolute;z-index:1;align-items:center;justify-content:center;right:1rem;padding:5px;margin-left:-5px;top:calc(50% - 14px);transition:transform .3s ease-in 0s,visibility 0s}@media only screen and (max-width:1023px){.close-card[data-v-4a898368]{right:unset;top:0;left:0;margin:0;padding:0 1.29412rem 0 20px;height:100%}@supports (padding:max(0px)){.close-card[data-v-4a898368]{padding-left:max(1.29412rem,env(safe-area-inset-left))}}}@media only screen and (max-width:767px){.close-card[data-v-4a898368]{padding-left:.94118rem;padding-right:.94118rem}@supports (padding:max(0px)){.close-card[data-v-4a898368]{padding-left:max(.94118rem,env(safe-area-inset-left))}}}.close-card .close-icon[data-v-4a898368]{width:19px;height:19px}@media only screen and (min-width:1024px){.close-card.hide-on-large[data-v-4a898368]{display:none}.close-card[data-v-4a898368]:hover{border-radius:var(--border-radius,4px);background:var(--color-fill-gray-quaternary)}.sidebar-hidden .close-card[data-v-4a898368]{transition:transform .3s ease-in 0s,visibility 0s linear .3s;visibility:hidden;transform:translateX(3.76471rem)}}[data-v-4a898368] .card-body{padding-right:0;flex:1 1 auto;min-height:0;height:100%}@media only screen and (max-width:1023px){[data-v-4a898368] .card-body{--card-vertical-spacing:0px}}.navigator-card-inner[data-v-4a898368]{display:flex;flex-flow:column;height:100%}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{border:none;background-color:transparent;opacity:0}.resize-observer[data-v-b329ee4c],.resize-observer[data-v-b329ee4c] object{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;pointer-events:none;display:block;overflow:hidden}.navigator-card.filter-on-top .filter-wrapper[data-v-a440d59c]{order:1;position:static}.navigator-card.filter-on-top .card-body[data-v-a440d59c]{order:2}.no-items-wrapper[data-v-a440d59c]{overflow:hidden;color:var(--color-figure-gray-tertiary)}.no-items-wrapper .no-items[data-v-a440d59c]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:var(--card-vertical-spacing) var(--card-horizontal-spacing);min-width:200px;box-sizing:border-box}.navigator-filter[data-v-a440d59c]{box-sizing:border-box;padding:15px var(--nav-filter-horizontal-padding);border-top:1px solid var(--color-grid);height:73px;display:flex;align-items:flex-end}.filter-on-top .navigator-filter[data-v-a440d59c]{border-top:none;align-items:flex-start}@supports (padding:max(0px)){.navigator-filter[data-v-a440d59c]{padding-left:max(var(--nav-filter-horizontal-padding),env(safe-area-inset-left));padding-right:max(var(--nav-filter-horizontal-padding),env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-filter[data-v-a440d59c]{--nav-filter-horizontal-padding:20px;border:none;padding-top:10px;padding-bottom:10px;height:62px}}.navigator-filter .input-wrapper[data-v-a440d59c]{position:relative;flex:1;min-width:0}.navigator-filter .filter-component[data-v-a440d59c]{--input-vertical-padding:10px;--input-height:20px;--input-border-color:var(--color-grid);--input-text:var(--color-figure-gray-secondary)}.navigator-filter .filter-component[data-v-a440d59c] .filter__input{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.scroller[data-v-a440d59c]{height:100%;box-sizing:border-box;padding:var(--card-vertical-spacing) 0;padding-bottom:calc(var(--top-offset, 0px) + var(--card-vertical-spacing));transition:padding-bottom .15s ease-in}@media only screen and (max-width:1023px){.scroller[data-v-a440d59c]{padding-bottom:10em}}.scroller[data-v-a440d59c] .vue-recycle-scroller__item-wrapper{transform:translateZ(0)}.filter-wrapper[data-v-a440d59c]{position:sticky;bottom:0;background:var(--color-fill)}.sidebar-transitioning .filter-wrapper[data-v-a440d59c]{flex:1 0 73px;overflow:hidden}@media only screen and (max-width:1023px){.sidebar-transitioning .filter-wrapper[data-v-a440d59c]{flex-basis:62px}}.loader[data-v-0de29914]{height:.70588rem;background-color:var(--color-fill-gray-tertiary);border-radius:4px}.navigator-icon[data-v-0de29914]{width:16px;height:16px;border-radius:2px;background-color:var(--color-fill-gray-tertiary)}.loading-navigator-item[data-v-0de29914]{-webkit-animation:pulse 2.5s ease;animation:pulse 2.5s ease;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:0;-webkit-animation-delay:calc(var(--visibility-delay) + 0.3s*var(--index));animation-delay:calc(var(--visibility-delay) + 0.3s*var(--index))}.delay-visibility-enter-active[data-v-4b6d345f]{transition:visibility var(--visibility-delay);visibility:hidden}.loading-navigator[data-v-4b6d345f]{padding-top:var(--card-vertical-spacing)}.navigator[data-v-048fdefe]{height:100%;display:flex;flex-flow:column}@media only screen and (max-width:1023px){.navigator[data-v-048fdefe]{position:static;transition:none}}.hierarchy-collapsed-items[data-v-74906830]{position:relative;display:inline-flex;align-items:center;margin-left:.17647rem}.hierarchy-collapsed-items .hierarchy-item-icon[data-v-74906830]{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-collapsed-items[data-v-74906830]{display:none}.hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:var(--border-radius,4px);border-style:solid;border-width:0;font-weight:600;height:1.11765rem;text-align:center;width:2.11765rem;display:flex;align-items:center;justify-content:center}.theme-dark .hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background)}.hierarchy-collapsed-items .toggle.focused[data-v-74906830],.hierarchy-collapsed-items .toggle[data-v-74906830]:active,.hierarchy-collapsed-items .toggle[data-v-74906830]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.indicator[data-v-74906830]{width:1em;height:1em;display:flex;align-items:center}.indicator .toggle-icon[data-v-74906830]{width:100%}.dropdown[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:var(--border-radius,4px);border-style:solid;box-shadow:0 1px 4px -1px var(--color-figure-gray-secondary);border-width:0;padding:0 .5rem;position:absolute;z-index:42;top:calc(100% + .41176rem)}.theme-dark .dropdown[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background);border-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown.collapsed[data-v-74906830]{opacity:0;transform:translate3d(0,-.41176rem,0);transition:opacity .25s ease,transform .25s ease,visibility 0s linear .25s;visibility:hidden}.dropdown[data-v-74906830]:not(.collapsed){opacity:1;transform:none;transition:opacity .25s ease,transform .25s ease,visibility 0s linear 0s;visibility:visible}.nav--in-breakpoint-range .dropdown[data-v-74906830]:not(.collapsed){display:none}.dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-hierarchy-collapse-background);border-bottom-style:solid;border-bottom-width:.5rem;border-left-color:transparent;border-left-style:solid;border-left-width:.5rem;border-right-color:transparent;border-right-style:solid;border-right-width:.5rem;content:"";left:1.26471rem;position:absolute;top:-.44118rem}.theme-dark .dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-dark-hierarchy-collapse-background)}.dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-hierarchy-collapse-borders);border-top-style:solid;border-top-width:1px}.theme-dark .dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown-item[data-v-74906830]:first-child{border-top:none}.nav-menu-link[data-v-74906830]{max-width:57.64706rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding:.75rem 1rem}.hierarchy-item[data-v-382bf39e]{display:flex;align-items:center;margin-left:.17647rem}.hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{display:none}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top:1px solid var(--color-nav-hierarchy-item-borders);display:flex;align-items:center}.theme-dark.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top-color:var(--color-nav-dark-hierarchy-item-borders)}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]:first-of-type{border-top:none}.hierarchy-item.collapsed[data-v-382bf39e]{display:none}.nav--in-breakpoint-range .hierarchy-item.collapsed[data-v-382bf39e]{display:inline-block}.item[data-v-382bf39e]{display:inline-block;vertical-align:middle}.nav--in-breakpoint-range .item[data-v-382bf39e]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:100%;line-height:2.47059rem}@media only screen and (min-width:768px){.hierarchy-item:first-child:last-child .item[data-v-382bf39e],.hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e]{max-width:45rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:last-child .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:36rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:28.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:27rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:21.6rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:18rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:14.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:9rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:7.2rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:10.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item:last-child .item[data-v-382bf39e]{max-width:none}.has-badge .hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:8.64rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.hierarchy[data-v-42bf934a]{justify-content:flex-start;min-width:0;margin-right:80px}.nav--in-breakpoint-range .hierarchy[data-v-42bf934a]{margin-right:0}.hierarchy .root-hierarchy .item[data-v-42bf934a]{max-width:10rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-menu-setting-label[data-v-005af823]{margin-right:.35294rem;white-space:nowrap}.language-dropdown[data-v-005af823]{-webkit-text-size-adjust:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;background-color:transparent;box-sizing:inherit;padding:0 11px 0 4px;margin-left:-4px;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);cursor:pointer;position:relative;z-index:1}@media only screen and (max-width:1023px){.language-dropdown[data-v-005af823]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.language-dropdown[data-v-005af823]:focus{outline:none}.fromkeyboard .language-dropdown[data-v-005af823]:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}.language-sizer[data-v-005af823]{position:absolute;opacity:0;pointer-events:none;padding:0}.language-toggle-container[data-v-005af823]{display:flex;align-items:center;padding-right:.17647rem;position:relative}.nav--in-breakpoint-range .language-toggle-container[data-v-005af823]{display:none}.language-toggle-container .toggle-icon[data-v-005af823]{width:.6em;height:.6em;position:absolute;right:7px}.language-toggle-label[data-v-005af823]{margin-right:2px}.language-toggle.nav-menu-toggle-label[data-v-005af823]{margin-right:6px}.language-list[data-v-005af823]{display:inline-block;margin-top:0}.language-list-container[data-v-005af823]{display:none}.language-list-item[data-v-005af823],.nav--in-breakpoint-range .language-list-container[data-v-005af823]{display:inline-block}.language-list-item[data-v-005af823]:not(:first-child){border-left:1px solid #424242;margin-left:6px;padding-left:6px}[data-v-136c3ca6] .nav-menu{line-height:1.5;padding-top:0}[data-v-136c3ca6] .nav-menu,[data-v-136c3ca6] .nav-menu-settings{font-size:.82353rem;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}[data-v-136c3ca6] .nav-menu-settings{line-height:1.28571}@media only screen and (max-width:1023px){[data-v-136c3ca6] .nav-menu-settings{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (min-width:1024px){[data-v-136c3ca6] .nav-menu-settings{margin-left:.58824rem}}.nav--in-breakpoint-range[data-v-136c3ca6] .nav-menu-settings:not([data-previous-menu-children-count="0"]) .nav-menu-setting:first-child{border-top:1px solid #b0b0b0;display:flex;align-items:center}[data-v-136c3ca6] .nav-menu-settings .nav-menu-setting{display:flex;align-items:center;color:var(--color-nav-current-link);margin-left:0}[data-v-136c3ca6] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:.58824rem}.nav--in-breakpoint-range[data-v-136c3ca6] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:0}.theme-dark[data-v-136c3ca6] .nav-menu-settings .nav-menu-setting{color:var(--color-nav-dark-current-link)}.nav--in-breakpoint-range[data-v-136c3ca6] .nav-menu-settings .nav-menu-setting:not(:first-child){border-top:1px solid #424242}.documentation-nav[data-v-136c3ca6] .nav-title{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1023px){.documentation-nav[data-v-136c3ca6] .nav-title{padding-top:0}}.documentation-nav[data-v-136c3ca6] .nav-title .nav-title-link.inactive{height:auto;color:var(--color-figure-gray-secondary-alt)}.theme-dark.documentation-nav .nav-title .nav-title-link.inactive[data-v-136c3ca6]{color:#b0b0b0}.sidenav-toggle-wrapper[data-v-136c3ca6]{display:flex;margin-top:1px}.nav--in-breakpoint-range .sidenav-toggle-wrapper[data-v-136c3ca6]{display:flex!important}@media only screen and (min-width:1024px){.sidenav-toggle-enter-active[data-v-136c3ca6],.sidenav-toggle-leave-active[data-v-136c3ca6]{transition:margin .3s ease-in 0s}.sidenav-toggle-enter[data-v-136c3ca6],.sidenav-toggle-leave-to[data-v-136c3ca6]{margin-left:-3.76471rem}}.sidenav-toggle[data-v-136c3ca6]{align-self:center;color:var(--color-nav-link-color);position:relative;margin:-5px}.theme-dark .sidenav-toggle[data-v-136c3ca6]{color:var(--color-nav-dark-link-color)}.sidenav-toggle:hover .sidenav-icon-wrapper[data-v-136c3ca6]{background:var(--color-fill-gray-quaternary)}.theme-dark .sidenav-toggle:hover .sidenav-icon-wrapper[data-v-136c3ca6]{background:#424242}.sidenav-toggle__separator[data-v-136c3ca6]{height:.8em;width:1px;background:var(--color-nav-color);align-self:center;margin:0 1.29412rem}.nav--in-breakpoint-range .sidenav-toggle[data-v-136c3ca6]{margin-left:-14px;margin-right:-14px;padding-left:14px;padding-right:14px;align-self:stretch}.nav--in-breakpoint-range .sidenav-toggle__separator[data-v-136c3ca6]{display:none}.sidenav-icon-wrapper[data-v-136c3ca6]{padding:5px;display:flex;align-items:center;justify-content:center;border-radius:var(--border-radius,4px)}.sidenav-icon[data-v-136c3ca6]{display:flex;width:19px;height:19px}[data-v-3f2e5486] .generic-modal{overflow-y:overlay}[data-v-3f2e5486] .modal-fullscreen .container{background-color:transparent;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;flex:auto;margin:9.41176rem 0;max-width:47.05882rem;overflow:visible}.doc-topic-view[data-v-3f2e5486]{--delay:1s;display:flex;flex-flow:column;background:var(--colors-text-background,var(--color-text-background))}.doc-topic-view .delay-hiding-leave-active[data-v-3f2e5486]{transition:display var(--delay)}.doc-topic-aside[data-v-3f2e5486]{height:100%;box-sizing:border-box;border-right:1px solid var(--color-grid)}@media only screen and (max-width:1023px){.doc-topic-aside[data-v-3f2e5486]{background:var(--color-fill);border-right:none}.sidebar-transitioning .doc-topic-aside[data-v-3f2e5486]{border-right:1px solid var(--color-grid)}}.quick-navigation-open-container[data-v-3f2e5486]{height:.88235rem;width:.88235rem;margin-left:.58824rem}.nav--in-breakpoint-range .quick-navigation-open-container[data-v-3f2e5486]{display:none}.quick-navigation-open-container [data-v-3f2e5486]{fill:var(--color-text)}.topic-wrapper[data-v-3f2e5486]{flex:1 1 auto;width:100%}.full-width-container[data-v-3f2e5486]{max-width:1920px;margin-left:auto;margin-right:auto}@media only screen and (min-width:1920px){.full-width-container[data-v-3f2e5486]{border-left:1px solid var(--color-grid);border-right:1px solid var(--color-grid);box-sizing:border-box}} \ No newline at end of file diff --git a/docs/css/documentation-topic~topic.b6287bcf.css b/docs/css/documentation-topic~topic.b6287bcf.css new file mode 100644 index 0000000..d2a4800 --- /dev/null +++ b/docs/css/documentation-topic~topic.b6287bcf.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.generic-modal[data-v-795f7b59]{position:fixed;top:0;left:0;right:0;bottom:0;margin:0;z-index:11000;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;background:none;overflow:auto}.modal-fullscreen[data-v-795f7b59]{align-items:stretch}.modal-fullscreen .container[data-v-795f7b59]{margin:0;flex:1;width:100%;height:100%;padding-top:env(safe-area-inset-top);padding-right:env(safe-area-inset-right);padding-bottom:env(safe-area-inset-bottom);padding-left:env(safe-area-inset-left)}.modal-standard[data-v-795f7b59]{padding:20px}.modal-standard .container[data-v-795f7b59]{padding:60px;border-radius:var(--border-radius,4px)}@media screen{[data-color-scheme=dark] .modal-standard .container[data-v-795f7b59]{background:#1d1d1f}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .modal-standard .container[data-v-795f7b59]{background:#1d1d1f}}@media only screen and (max-width:735px){.modal-standard[data-v-795f7b59]{padding:0;align-items:stretch}.modal-standard .container[data-v-795f7b59]{margin:20px 0 0;padding:50px 30px;flex:1;width:100%;border-bottom-left-radius:0;border-bottom-right-radius:0}}.backdrop[data-v-795f7b59]{overflow:auto;background:var(--backdrop-background,rgba(0,0,0,.4));-webkit-overflow-scrolling:touch;width:100%;height:100%;position:fixed}.container[data-v-795f7b59]{margin-left:auto;margin-right:auto;width:980px;background:var(--colors-generic-modal-background,var(--color-generic-modal-background));z-index:1;position:relative;overflow:auto;max-width:100%}@media only screen and (max-width:1250px){.container[data-v-795f7b59]{width:692px}}@media only screen and (max-width:735px){.container[data-v-795f7b59]{width:87.5%}}@media only screen and (max-width:320px){.container[data-v-795f7b59]{width:215px}}.close[data-v-795f7b59]{position:absolute;z-index:9999;top:22px;left:22px;width:17px;height:17px;color:#666;cursor:pointer;background:none;border:0;display:flex;align-items:center}.close .close-icon[data-v-795f7b59]{fill:currentColor;width:100%;height:100%}.theme-dark .container[data-v-795f7b59]{background:#000}.theme-dark .container .close[data-v-795f7b59]{color:#b0b0b0}.theme-code .container[data-v-795f7b59]{background-color:var(--code-background,var(--color-code-background))} \ No newline at end of file diff --git a/docs/css/documentation-topic~topic.fccbd76c.css b/docs/css/documentation-topic~topic.fccbd76c.css deleted file mode 100644 index 7df762b..0000000 --- a/docs/css/documentation-topic~topic.fccbd76c.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.generic-modal[data-v-f5b28690]{position:fixed;top:0;left:0;right:0;bottom:0;margin:0;z-index:11000;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;background:none;overflow:auto}.modal-fullscreen[data-v-f5b28690]{align-items:stretch}.modal-fullscreen .container[data-v-f5b28690]{margin:0;flex:1;width:100%;height:100%;padding-top:env(safe-area-inset-top);padding-right:env(safe-area-inset-right);padding-bottom:env(safe-area-inset-bottom);padding-left:env(safe-area-inset-left)}.modal-standard[data-v-f5b28690]{padding:20px}.modal-standard .container[data-v-f5b28690]{padding:60px;border-radius:var(--border-radius,4px)}@media screen{[data-color-scheme=dark] .modal-standard .container[data-v-f5b28690]{background:#1d1d1f}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .modal-standard .container[data-v-f5b28690]{background:#1d1d1f}}@media only screen and (max-width:735px){.modal-standard[data-v-f5b28690]{padding:0;align-items:stretch}.modal-standard .container[data-v-f5b28690]{margin:20px 0 0;padding:50px 30px;flex:1;width:100%;border-bottom-left-radius:0;border-bottom-right-radius:0}}.backdrop[data-v-f5b28690]{overflow:auto;background:rgba(0,0,0,.4);-webkit-overflow-scrolling:touch;width:100%;height:100%;position:fixed}.container[data-v-f5b28690]{margin-left:auto;margin-right:auto;width:980px;background:var(--colors-generic-modal-background,var(--color-generic-modal-background));z-index:1;position:relative;overflow:auto;max-width:100%}@media only screen and (max-width:1250px){.container[data-v-f5b28690]{width:692px}}@media only screen and (max-width:735px){.container[data-v-f5b28690]{width:87.5%}}.close[data-v-f5b28690]{position:absolute;z-index:9999;top:22px;left:22px;width:30px;height:30px;color:#666;cursor:pointer;background:none;border:0;display:flex;align-items:center}.close .close-icon[data-v-f5b28690]{fill:currentColor;width:100%;height:100%}.theme-dark .container[data-v-f5b28690]{background:#000}.theme-dark .container .close[data-v-f5b28690]{color:#b0b0b0}.theme-code .container[data-v-f5b28690]{background-color:var(--background,var(--color-code-background))} \ No newline at end of file diff --git a/docs/css/documentation-topic~topic~tutorials-overview.1099452b.css b/docs/css/documentation-topic~topic~tutorials-overview.1099452b.css deleted file mode 100644 index 37d9f45..0000000 --- a/docs/css/documentation-topic~topic~tutorials-overview.1099452b.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.svg-icon[data-v-33d3200a]{fill:var(--colors-svg-icon-fill-light,var(--color-svg-icon));transform:scale(1);-webkit-transform:scale(1);overflow:visible}.theme-dark .svg-icon[data-v-33d3200a]{fill:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.svg-icon.icon-inline[data-v-33d3200a]{display:inline-block;vertical-align:middle;fill:currentColor}.svg-icon.icon-inline[data-v-33d3200a] .svg-icon-stroke{stroke:currentColor}[data-v-33d3200a] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-light,var(--color-svg-icon))}.theme-dark[data-v-33d3200a] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.label[data-v-7696d857]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.label+[data-v-7696d857]{margin-top:.4em}.deprecated .label[data-v-7696d857]{color:var(--color-aside-deprecated)}.experiment .label[data-v-7696d857]{color:var(--color-aside-experiment)}.important .label[data-v-7696d857]{color:var(--color-aside-important)}.note .label[data-v-7696d857]{color:var(--color-aside-note)}.tip .label[data-v-7696d857]{color:var(--color-aside-tip)}.warning .label[data-v-7696d857]{color:var(--color-aside-warning)}.doc-topic aside[data-v-7696d857]{-moz-column-break-inside:avoid;break-inside:avoid;border-radius:var(--aside-border-radius,var(--border-radius,4px));border-style:var(--aside-border-style,solid);border-width:var(--aside-border-width,0 0 0 6px);padding:.94118rem}.doc-topic aside.deprecated[data-v-7696d857]{background-color:var(--color-aside-deprecated-background);border-color:var(--color-aside-deprecated-border);box-shadow:0 0 0 0 var(--color-aside-deprecated-border) inset,0 0 0 0 var(--color-aside-deprecated-border)}.doc-topic aside.experiment[data-v-7696d857]{background-color:var(--color-aside-experiment-background);border-color:var(--color-aside-experiment-border);box-shadow:0 0 0 0 var(--color-aside-experiment-border) inset,0 0 0 0 var(--color-aside-experiment-border)}.doc-topic aside.important[data-v-7696d857]{background-color:var(--color-aside-important-background);border-color:var(--color-aside-important-border);box-shadow:0 0 0 0 var(--color-aside-important-border) inset,0 0 0 0 var(--color-aside-important-border)}.doc-topic aside.note[data-v-7696d857]{background-color:var(--color-aside-note-background);border-color:var(--color-aside-note-border);box-shadow:0 0 0 0 var(--color-aside-note-border) inset,0 0 0 0 var(--color-aside-note-border)}.doc-topic aside.tip[data-v-7696d857]{background-color:var(--color-aside-tip-background);border-color:var(--color-aside-tip-border);box-shadow:0 0 0 0 var(--color-aside-tip-border) inset,0 0 0 0 var(--color-aside-tip-border)}.doc-topic aside.warning[data-v-7696d857]{background-color:var(--color-aside-warning-background);border-color:var(--color-aside-warning-border);box-shadow:0 0 0 0 var(--color-aside-warning-border) inset,0 0 0 0 var(--color-aside-warning-border)}.doc-topic aside .label[data-v-7696d857]{font-size:1rem;line-height:1.52941;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.swift-file-icon.file-icon[data-v-c01a6890]{height:1rem}.file-icon[data-v-7c381064]{position:relative;align-items:flex-end;height:24px;margin:0 .5rem 0 1rem}.filename[data-v-c8c40662]{color:var(--text,var(--colors-secondary-label,var(--color-secondary-label)));font-size:.94118rem;line-height:1.1875;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:1rem}@media only screen and (max-width:735px){.filename[data-v-c8c40662]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:0}}.filename>a[data-v-c8c40662],.filename>span[data-v-c8c40662]{display:flex;align-items:center;line-height:normal}a[data-v-c8c40662]{color:var(--url,var(--color-link))}.code-line-container[data-v-12727242]{display:flex}.code-number[data-v-12727242]{padding:0 1rem 0 8px;text-align:right;min-width:2em;color:#666;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-12727242]:before{content:attr(data-line-number)}.highlighted[data-v-12727242]{background:var(--line-highlight,var(--color-code-line-highlight));border-left:4px solid var(--color-code-line-highlight-border)}.highlighted .code-number[data-v-12727242]{padding-left:4px}pre[data-v-12727242]{padding:14px 0;display:flex;overflow:unset;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal;height:100%}@media only screen and (max-width:735px){pre[data-v-12727242]{padding-top:.82353rem}}code[data-v-12727242]{display:flex;flex-direction:column;white-space:pre;word-wrap:normal;flex-grow:9999}.code-line-container[data-v-12727242]{flex-shrink:0;padding-right:14px}.code-listing[data-v-12727242],.container-general[data-v-12727242]{display:flex}.code-listing[data-v-12727242]{flex-direction:column;min-height:100%;border-radius:var(--code-border-radius,var(--border-radius,4px));overflow:hidden;-webkit-mask-image:-webkit-radial-gradient(#fff,#000)}.code-listing.single-line[data-v-12727242]{border-radius:var(--border-radius,4px)}.container-general[data-v-12727242]{overflow:auto}.container-general[data-v-12727242],pre[data-v-12727242]{flex-grow:1}.header-anchor[data-v-635e28c1]{color:inherit;text-decoration:none;position:relative;padding-right:23px;display:inline-block}.header-anchor .icon[data-v-635e28c1]{position:absolute;right:0;bottom:.2em;display:none;height:16px;margin-left:7px}.header-anchor:hover .icon[data-v-635e28c1]{display:inline}code[data-v-05f4a5b7]{speak-punctuation:code}code[data-v-d68ae420]{width:100%}.container-general[data-v-d68ae420]{display:flex;flex-flow:row wrap}.container-general .code-line[data-v-d68ae420]{flex:1 0 auto}.code-line-container[data-v-d68ae420]{align-items:center;display:flex;border-left:4px solid transparent;counter-increment:linenumbers;padding-right:14px}.code-number[data-v-d68ae420]{font-size:.70588rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);padding:0 1rem 0 8px;text-align:right;min-width:2.01em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-d68ae420]:before{content:counter(linenumbers)}.code-line[data-v-d68ae420]{display:flex}pre[data-v-d68ae420]{padding:14px 0;display:flex;flex-flow:row wrap;overflow:auto;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal}@media only screen and (max-width:735px){pre[data-v-d68ae420]{padding-top:.82353rem}}.collapsible-code-listing[data-v-d68ae420]{background:var(--background,var(--color-code-background));border-color:var(--colors-grid,var(--color-grid));color:var(--text,var(--color-code-plain));border-radius:var(--border-radius,4px);border-style:solid;border-width:1px;counter-reset:linenumbers;font-size:15px}.collapsible-code-listing.single-line[data-v-d68ae420]{border-radius:var(--border-radius,4px)}.collapsible[data-v-d68ae420]{background:var(--color-code-collapsible-background);color:var(--color-code-collapsible-text)}.collapsed[data-v-d68ae420]:before{content:"⋯";display:inline-block;font-family:monospace;font-weight:700;height:100%;line-height:1;text-align:right;width:2.3rem}.collapsed .code-line-container[data-v-d68ae420]{height:0;visibility:hidden}.row[data-v-be73599c]{box-sizing:border-box;display:flex;flex-flow:row wrap}.col[data-v-2ee3ad8b]{box-sizing:border-box;flex:none}.xlarge-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.xlarge-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.xlarge-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.xlarge-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.xlarge-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.xlarge-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.xlarge-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.xlarge-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.xlarge-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.xlarge-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.xlarge-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.xlarge-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.xlarge-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.xlarge-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}.large-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.large-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.large-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.large-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.large-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.large-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.large-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.large-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.large-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.large-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.large-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.large-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.large-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.large-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}@media only screen and (max-width:1250px){.medium-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.medium-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.medium-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.medium-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.medium-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.medium-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.medium-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.medium-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.medium-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.medium-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.medium-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.medium-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.medium-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.medium-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:735px){.small-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.small-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.small-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.small-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.small-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.small-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.small-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.small-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.small-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.small-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.small-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.small-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.small-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.small-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}.tabnav[data-v-5283512a]{margin:0 0 1.47059rem 0;display:flex}.tabnav--center[data-v-5283512a]{justify-content:center}.tabnav--end[data-v-5283512a]{justify-content:flex-end}.tabnav--vertical[data-v-5283512a]{flex-flow:column wrap}.tabnav--vertical .tabnav-items[data-v-5283512a]{flex-flow:column;overflow:hidden}.tabnav--vertical[data-v-5283512a] .tabnav-item{padding-left:0}.tabnav--vertical[data-v-5283512a] .tabnav-item .tabnav-link{padding-top:8px}.tabnav-items[data-v-5283512a]{display:flex;margin:0;text-align:center}.tabnav-item[data-v-6aa9882a]{border-bottom:1px solid;border-color:var(--colors-tabnav-item-border-color,var(--color-tabnav-item-border-color));display:flex;list-style:none;padding-left:1.76471rem;margin:0;outline:none}.tabnav-item[data-v-6aa9882a]:first-child{padding-left:0}.tabnav-item[data-v-6aa9882a]:nth-child(n+1){margin:0}.tabnav-link[data-v-6aa9882a]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:6px 0;margin-top:4px;margin-bottom:4px;text-align:left;text-decoration:none;display:block;position:relative;z-index:0;width:100%}.tabnav-link[data-v-6aa9882a]:hover{text-decoration:none}.tabnav-link[data-v-6aa9882a]:focus{outline-offset:-1px}.tabnav-link[data-v-6aa9882a]:after{content:"";position:absolute;bottom:-5px;left:0;width:100%;border:1px solid transparent}.tabnav-link.active[data-v-6aa9882a]{color:var(--colors-text,var(--color-text));cursor:default;z-index:10}.tabnav-link.active[data-v-6aa9882a]:after{border-bottom-color:var(--colors-text,var(--color-text))}.controls[data-v-6197ce3f]{margin-top:5px;font-size:14px;display:flex;justify-content:flex-end}.controls a[data-v-6197ce3f]{color:var(--colors-text,var(--color-text));display:flex;align-items:center}.controls .control-icon[data-v-6197ce3f]{width:1.05em;margin-right:.3em}[data-v-4baaf006] figcaption+*{margin-top:1rem}.caption[data-v-969dceb4]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.caption[data-v-969dceb4]:last-child{margin-top:.8em}.caption.centered[data-v-969dceb4]{text-align:center}[data-v-969dceb4] p{display:inline-block}[data-v-3a939631] img{max-width:100%}.table-wrapper[data-v-9a297d5c]{overflow:auto;-webkit-overflow-scrolling:touch}*+.table-wrapper[data-v-9a297d5c],.table-wrapper[data-v-9a297d5c]+*{margin-top:1.6em}table[data-v-9a297d5c]{border-style:hidden}[data-v-9a297d5c] th{font-weight:600}[data-v-9a297d5c] td,[data-v-9a297d5c] th{border-color:var(--color-fill-gray-tertiary);border-style:solid;border-width:var(--table-border-width,1px 1px);padding:.58824rem}[data-v-9a297d5c] td.left-cell,[data-v-9a297d5c] th.left-cell{text-align:left}[data-v-9a297d5c] td.right-cell,[data-v-9a297d5c] th.right-cell{text-align:right}[data-v-9a297d5c] td.center-cell,[data-v-9a297d5c] th.center-cell{text-align:center}s[data-v-eb91ce54]:after,s[data-v-eb91ce54]:before{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}s[data-v-eb91ce54]:before{content:" [start of stricken text] "}s[data-v-eb91ce54]:after{content:" [end of stricken text] "}small[data-v-77035f61]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray)}.replay-button[data-v-5ff7ec6e]{display:flex;align-items:center;justify-content:center;cursor:pointer;visibility:hidden;margin-top:.5rem;-webkit-tap-highlight-color:transparent}.replay-button.visible[data-v-5ff7ec6e]{visibility:visible}.replay-button svg.replay-icon[data-v-5ff7ec6e]{height:12px;width:12px;margin-left:.3em}[data-v-72c01652] img,[data-v-72c01652] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.asset[data-v-40d6d180]{margin-left:auto;margin-right:auto}*+.asset[data-v-40d6d180],.asset[data-v-40d6d180]+*{margin-top:1.6em}[data-v-40d6d180] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.column[data-v-0f654188]{grid-column:span var(--col-span);min-width:0}@media only screen and (max-width:735px){.column[data-v-0f654188]{grid-column:span 1}}.row[data-v-7d2946e9]{display:grid;grid-auto-flow:column;grid-auto-columns:1fr;grid-gap:var(--col-gap,20px)}@media only screen and (max-width:735px){.row[data-v-7d2946e9]{grid-template-columns:1fr;grid-auto-flow:row}}.row.with-columns[data-v-7d2946e9]{--col-count:var(--col-count-large);grid-template-columns:repeat(var(--col-count),1fr);grid-auto-flow:row}@media only screen and (max-width:1250px){.row.with-columns[data-v-7d2946e9]{--col-count:var(--col-count-medium,var(--col-count-large))}}@media only screen and (max-width:735px){.row.with-columns[data-v-7d2946e9]{--col-count:var(--col-count-small)}}.row[data-v-7d2946e9]+*{margin-top:.8em}*+.TabNavigator[data-v-9b66ac4e],.TabNavigator[data-v-9b66ac4e]+*{margin-top:1.6em}.TabNavigator .tabnav[data-v-9b66ac4e]{overflow:auto;white-space:nowrap}.TabNavigator .tabs-content-container[data-v-9b66ac4e]{position:relative;overflow:hidden}.tabs--vertical[data-v-9b66ac4e]{display:flex;flex-flow:row-reverse}@media only screen and (max-width:735px){.tabs--vertical[data-v-9b66ac4e]{flex-flow:column-reverse}}.tabs--vertical .tabnav[data-v-9b66ac4e]{width:30%;flex:0 0 auto;white-space:normal;margin:0}@media only screen and (max-width:735px){.tabs--vertical .tabnav[data-v-9b66ac4e]{width:100%}}.tabs--vertical .tabs-content[data-v-9b66ac4e]{flex:1 1 auto;min-width:0;padding-right:1.6em}@media only screen and (max-width:735px){.tabs--vertical .tabs-content[data-v-9b66ac4e]{padding-right:0;padding-bottom:.8em}}.fade-enter-active[data-v-9b66ac4e],.fade-leave-active[data-v-9b66ac4e]{transition:opacity .2s ease-in-out}.fade-enter[data-v-9b66ac4e],.fade-leave-to[data-v-9b66ac4e]{opacity:0}.fade-leave-active[data-v-9b66ac4e]{position:absolute;top:0;left:0;right:0}.tasklist[data-v-6a56a858]{--checkbox-width:1rem;--indent-width:calc(var(--checkbox-width)/2);--content-margin:var(--indent-width);list-style-type:none;margin-left:var(--indent-width)}p[data-v-6a56a858]{margin-left:var(--content-margin)}p[data-v-6a56a858]:only-child{--content-margin:calc(var(--checkbox-width) + var(--indent-width))}input[type=checkbox]+p[data-v-6a56a858]{display:inline-block}.button-cta[data-v-c9c81868]{background:var(--colors-button-light-background,var(--color-button-background));border-color:var(--color-button-border,currentcolor);border-radius:var(--button-border-radius,var(--border-radius,4px));border-style:var(--button-border-style,none);border-width:var(--button-border-width,medium);color:var(--colors-button-text,var(--color-button-text));cursor:pointer;min-width:1.76471rem;padding:.23529rem .88235rem;text-align:center;white-space:nowrap;display:inline-block;font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.button-cta[data-v-c9c81868]:active{background:var(--colors-button-light-backgroundActive,var(--color-button-background-active));outline:none}.button-cta[data-v-c9c81868]:hover:not([disabled]){background:var(--colors-button-light-backgroundHover,var(--color-button-background-hover));text-decoration:none}.button-cta[data-v-c9c81868]:disabled{opacity:.32;cursor:default}.fromkeyboard .button-cta[data-v-c9c81868]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.button-cta.is-dark[data-v-c9c81868]{background:var(--colors-button-dark-background,#06f)}.button-cta.is-dark[data-v-c9c81868]:active{background:var(--colors-button-dark-backgroundActive,var(--color-button-background-active))}.button-cta.is-dark[data-v-c9c81868]:hover:not([disabled]){background:var(--colors-button-dark-backgroundHover,var(--color-button-background-hover))}.card-cover-wrap.rounded[data-v-74d84342]{border-radius:var(--border-radius,4px);overflow:hidden}.card-cover[data-v-74d84342]{background-color:var(--color-card-background);display:block;height:var(--card-cover-height,180px)}.card-cover.fallback[data-v-74d84342],.card-cover[data-v-74d84342] img{width:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;display:block;margin:0}.card-cover[data-v-74d84342] img{height:100%}.card[data-v-3c69339c]{overflow:hidden;display:block;transition:box-shadow,transform .16s ease-out;will-change:box-shadow,transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;height:var(--card-height);border-radius:var(--border-radius,4px)}.card[data-v-3c69339c]:hover{text-decoration:none}.card:hover .link[data-v-3c69339c]{text-decoration:underline}.card[data-v-3c69339c]:hover{box-shadow:0 5px 10px var(--color-card-shadow);transform:scale(1.007)}@media (prefers-reduced-motion:reduce){.card[data-v-3c69339c]:hover{box-shadow:none;transform:none}}.card.small[data-v-3c69339c]{--card-height:408px;--card-details-height:139px;--card-cover-height:235px}@media only screen and (max-width:1250px){.card.small[data-v-3c69339c]{--card-height:341px;--card-details-height:144px;--card-cover-height:163px}}.card.large[data-v-3c69339c]{--card-height:556px;--card-details-height:163px;--card-cover-height:359px}@media only screen and (max-width:1250px){.card.large[data-v-3c69339c]{--card-height:420px;--card-details-height:137px;--card-cover-height:249px}}.card.floating-style[data-v-3c69339c]{--color-card-shadow:transparent;--card-height:auto;--card-details-height:auto}.details[data-v-3c69339c]{background-color:var(--color-card-background);padding:17px;position:relative;height:var(--card-details-height);font-size:.82353rem;line-height:1.28571}.details[data-v-3c69339c],.large .details[data-v-3c69339c]{font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.large .details[data-v-3c69339c]{font-size:1rem;line-height:1.47059}@media only screen and (max-width:1250px){.large .details[data-v-3c69339c]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.floating-style .details[data-v-3c69339c]{--color-card-background:transparent;padding:17px 0}.eyebrow[data-v-3c69339c]{color:var(--color-card-eyebrow);display:block;margin-bottom:4px;font-size:.82353rem;line-height:1.28571}.eyebrow[data-v-3c69339c],.large .eyebrow[data-v-3c69339c]{font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.large .eyebrow[data-v-3c69339c]{font-size:1rem;line-height:1.23529}@media only screen and (max-width:1250px){.large .eyebrow[data-v-3c69339c]{font-size:.82353rem;line-height:1.28571;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title[data-v-3c69339c]{color:var(--color-card-content-text);font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.title[data-v-3c69339c]{font-size:.82353rem;line-height:1.28571;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-3c69339c]{font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.large .title[data-v-3c69339c]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.large .title[data-v-3c69339c]{font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.card-content[data-v-3c69339c]{color:var(--color-card-content-text);margin-top:4px}.link[data-v-3c69339c]{bottom:17px;display:flex;align-items:center;position:absolute}.link .link-icon[data-v-3c69339c]{height:.6em;width:.6em;margin-left:.3em}.floating-style .link[data-v-3c69339c]{bottom:unset;margin-top:.8em;position:relative}@media only screen and (max-width:735px){.card[data-v-3c69339c]{margin-left:auto;margin-right:auto}.card+.card[data-v-3c69339c]{margin-bottom:20px;margin-top:20px}.card.large[data-v-3c69339c],.card.small[data-v-3c69339c]{--card-height:auto;--card-details-height:auto;min-width:280px;max-width:300px;--card-cover-height:227px}.card.large .link[data-v-3c69339c],.card.small .link[data-v-3c69339c]{bottom:unset;margin-top:7px;position:relative}}.nav-menu-items[data-v-67c1c0a5]{display:flex;justify-content:flex-end}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{display:block;opacity:0;padding:1rem 1.88235rem 1.64706rem 1.88235rem;transform:translate3d(0,-50px,0);transition:transform 1s cubic-bezier(.07,1.06,.27,.95) .5s,opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s}.nav--is-open.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{opacity:1;transform:translateZ(0);transition-delay:.2s,.4s}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):not(:last-child){padding-bottom:0}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):last-child{padding-top:0}.TopicTypeIcon[data-v-c8b8711e]{width:1em;height:1em;flex:0 0 auto;color:var(--color-figure-gray-secondary)}.TopicTypeIcon[data-v-c8b8711e] picture{flex:1}.TopicTypeIcon[data-v-c8b8711e] img,.TopicTypeIcon svg[data-v-c8b8711e]{display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.nav[data-v-0c761cd5]{position:sticky;top:0;width:100%;height:3.05882rem;z-index:9997;--nav-padding:1.29412rem;color:var(--color-nav-color)}@media print{.nav[data-v-0c761cd5]{position:relative}}@media only screen and (max-width:767px){.nav[data-v-0c761cd5]{min-width:320px;height:2.82353rem}}.theme-dark.nav[data-v-0c761cd5]{background:none;color:var(--color-nav-dark-color)}.nav__wrapper[data-v-0c761cd5]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav__background[data-v-0c761cd5]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;transition:background-color 0s ease-in}.nav__background[data-v-0c761cd5]:after{background-color:var(--color-nav-keyline)}.nav--no-bg-transition .nav__background[data-v-0c761cd5]{transition:none!important}.nav--solid-background .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-solid-background);-webkit-backdrop-filter:none;backdrop-filter:none}.nav--is-open.nav--solid-background .nav__background[data-v-0c761cd5],.nav--is-sticking.nav--solid-background .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-solid-background)}.nav--is-open.theme-dark.nav--solid-background .nav__background[data-v-0c761cd5],.nav--is-sticking.theme-dark.nav--solid-background .nav__background[data-v-0c761cd5],.theme-dark.nav--solid-background .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-dark-solid-background)}.nav--in-breakpoint-range .nav__background[data-v-0c761cd5]{min-height:2.82353rem;transition:background-color 0s ease .7s}.nav--is-sticking .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-sticking .nav__background[data-v-0c761cd5]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-sticking .nav__background[data-v-0c761cd5]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-stuck)}}.theme-dark.nav--is-sticking .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-dark-stuck)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-sticking .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-dark-uiblur-stuck)}}.nav--is-open .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-open .nav__background[data-v-0c761cd5]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-open .nav__background[data-v-0c761cd5]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-expanded)}}.theme-dark.nav--is-open .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-dark-expanded)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-open .nav__background[data-v-0c761cd5]{background-color:var(--color-nav-dark-uiblur-expanded)}}.theme-dark .nav__background[data-v-0c761cd5]:after{background-color:var(--color-nav-dark-keyline)}.nav--is-open.theme-dark .nav__background[data-v-0c761cd5]:after,.nav--is-sticking.theme-dark .nav__background[data-v-0c761cd5]:after{background-color:var(--color-nav-dark-sticking-expanded-keyline)}.nav__background[data-v-0c761cd5]:after{content:"";display:block;position:absolute;top:100%;left:50%;transform:translateX(-50%);width:980px;height:1px;z-index:1}@media only screen and (max-width:1023px){.nav__background[data-v-0c761cd5]:after{width:100%}}.nav--noborder .nav__background[data-v-0c761cd5]:after{display:none}.nav--is-sticking.nav--noborder .nav__background[data-v-0c761cd5]:after{display:block}.nav--fullwidth-border .nav__background[data-v-0c761cd5]:after,.nav--is-open .nav__background[data-v-0c761cd5]:after,.nav--is-sticking .nav__background[data-v-0c761cd5]:after,.nav--solid-background .nav__background[data-v-0c761cd5]:after{width:100%}.nav-overlay[data-v-0c761cd5]{position:fixed;left:0;right:0;top:0;display:block;opacity:0}.nav--is-open .nav-overlay[data-v-0c761cd5]{background-color:rgba(51,51,51,.4);transition:opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s;bottom:0;opacity:1}.nav-wrapper[data-v-0c761cd5]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.pre-title[data-v-0c761cd5]{display:flex;overflow:hidden;padding-left:1.29412rem;margin-left:-1.29412rem}.pre-title[data-v-0c761cd5]:empty{display:none}.nav--in-breakpoint-range .pre-title[data-v-0c761cd5]{overflow:visible;padding:0;margin-left:0}.nav-content[data-v-0c761cd5]{display:flex;padding:0 var(--nav-padding);max-width:980px;margin:0 auto;position:relative;z-index:2;justify-content:space-between}.nav--is-wide-format .nav-content[data-v-0c761cd5]{box-sizing:border-box;max-width:1920px;margin-left:auto;margin-right:auto}@supports (padding:calc(max(0px))){.nav-content[data-v-0c761cd5]{padding-left:calc(max(var(--nav-padding), env(safe-area-inset-left)));padding-right:calc(max(var(--nav-padding), env(safe-area-inset-right)))}}@media only screen and (max-width:767px){.nav-content[data-v-0c761cd5]{padding:0 0 0 .94118rem}}.nav--in-breakpoint-range .nav-content[data-v-0c761cd5]{display:grid;grid-template-columns:auto 1fr auto;grid-auto-rows:minmax(-webkit-min-content,-webkit-max-content);grid-auto-rows:minmax(min-content,max-content);grid-template-areas:"pre-title title actions" "menu menu menu"}.nav-menu[data-v-0c761cd5]{font-size:.70588rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);flex:1 1 auto;display:flex;padding-top:10px;min-width:0}@media only screen and (max-width:767px){.nav-menu[data-v-0c761cd5]{font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.nav--in-breakpoint-range .nav-menu[data-v-0c761cd5]{font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-top:0;grid-area:menu}.nav-menu-tray[data-v-0c761cd5]{width:100%;max-width:100%;align-items:center;display:flex;justify-content:space-between}.nav--in-breakpoint-range .nav-menu-tray[data-v-0c761cd5]{display:block;overflow:hidden;pointer-events:none;visibility:hidden;max-height:0;transition:max-height .4s ease-in 0s,visibility 0s linear 1s}.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-0c761cd5]{max-height:calc(100vh - 5.64706rem);overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:auto;visibility:visible;transition-delay:.2s,0s}.nav--is-transitioning.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-0c761cd5]{overflow-y:hidden}.nav--is-sticking.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-0c761cd5]{max-height:calc(100vh - 2.82353rem)}.nav-actions[data-v-0c761cd5]{display:flex;align-items:center}.nav--in-breakpoint-range .nav-actions[data-v-0c761cd5]{grid-area:actions;justify-content:flex-end}@media only screen and (max-width:767px){.nav-actions[data-v-0c761cd5]{padding-right:.94118rem}}.nav--in-breakpoint-range .pre-title+.nav-title[data-v-0c761cd5]{grid-area:title}.nav--is-wide-format.nav--in-breakpoint-range .pre-title+.nav-title[data-v-0c761cd5]{width:100%;justify-content:center}.nav-title[data-v-0c761cd5]{height:3.05882rem;font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);cursor:default;display:flex;align-items:center;white-space:nowrap;box-sizing:border-box}@media only screen and (max-width:767px){.nav-title[data-v-0c761cd5]{padding-top:0;height:2.82353rem;width:90%}}.nav-title[data-v-0c761cd5] span{height:100%;line-height:normal}.nav-title a[data-v-0c761cd5]{display:inline-block;letter-spacing:inherit;line-height:normal;margin:0;text-decoration:none;white-space:nowrap}.nav-title a[data-v-0c761cd5]:hover{text-decoration:none}@media only screen and (max-width:767px){.nav-title a[data-v-0c761cd5]{display:flex}}.nav-title[data-v-0c761cd5],.nav-title a[data-v-0c761cd5]{color:var(--color-figure-gray);transition:color 0s ease-in}.nav--is-open.theme-dark .nav-title[data-v-0c761cd5],.nav--is-open.theme-dark .nav-title a[data-v-0c761cd5],.nav--is-sticking.theme-dark .nav-title[data-v-0c761cd5],.nav--is-sticking.theme-dark .nav-title a[data-v-0c761cd5],.theme-dark .nav-title[data-v-0c761cd5],.theme-dark .nav-title a[data-v-0c761cd5]{color:var(--color-nav-dark-link-color)}.nav-ax-toggle[data-v-0c761cd5]{display:none;position:absolute;top:0;left:0;width:1px;height:1px;z-index:10}.nav-ax-toggle[data-v-0c761cd5]:focus{outline-offset:-6px;width:100%;height:100%}.nav--in-breakpoint-range .nav-ax-toggle[data-v-0c761cd5]{display:block}.nav-menucta[data-v-0c761cd5]{cursor:pointer;display:none;align-items:center;overflow:hidden;width:1.17647rem;-webkit-tap-highlight-color:transparent;height:2.82353rem}.nav--in-breakpoint-range .nav-menucta[data-v-0c761cd5]{display:flex}.nav-menucta-chevron[data-v-0c761cd5]{display:block;position:relative;width:100%;height:.70588rem;transition:transform .3s linear}.nav-menucta-chevron[data-v-0c761cd5]:after,.nav-menucta-chevron[data-v-0c761cd5]:before{content:"";display:block;position:absolute;top:.58824rem;width:.70588rem;height:.05882rem;transition:transform .3s linear;background:var(--color-figure-gray)}.nav-menucta-chevron[data-v-0c761cd5]:before{right:50%;border-radius:.5px 0 0 .5px}.nav-menucta-chevron[data-v-0c761cd5]:after{left:50%;border-radius:0 .5px .5px 0}.nav-menucta-chevron[data-v-0c761cd5]:before{transform-origin:100% 100%;transform:rotate(40deg) scaleY(1.5)}.nav-menucta-chevron[data-v-0c761cd5]:after{transform-origin:0 100%;transform:rotate(-40deg) scaleY(1.5)}.nav--is-open .nav-menucta-chevron[data-v-0c761cd5]{transform:scaleY(-1)}.theme-dark .nav-menucta-chevron[data-v-0c761cd5]:after,.theme-dark .nav-menucta-chevron[data-v-0c761cd5]:before{background:var(--color-nav-dark-link-color)}[data-v-0c761cd5] .nav-menu-link{color:var(--color-nav-link-color)}[data-v-0c761cd5] .nav-menu-link:hover{color:var(--color-nav-link-color-hover);text-decoration:none}.theme-dark[data-v-0c761cd5] .nav-menu-link{color:var(--color-nav-dark-link-color)}.theme-dark[data-v-0c761cd5] .nav-menu-link:hover{color:var(--color-nav-dark-link-color-hover)}[data-v-0c761cd5] .nav-menu-link.current{color:var(--color-nav-current-link);cursor:default}[data-v-0c761cd5] .nav-menu-link.current:hover{color:var(--color-nav-current-link)}.theme-dark[data-v-0c761cd5] .nav-menu-link.current,.theme-dark[data-v-0c761cd5] .nav-menu-link.current:hover{color:var(--color-nav-dark-current-link)}.reference-card-grid-item__image[data-v-15b5139b]{display:flex;align-items:center;justify-content:center;font-size:80px;background-color:var(--color-fill-gray-quaternary)}.reference-card-grid-item__icon[data-v-15b5139b]{margin:0;display:flex;justify-content:center}.reference-card-grid-item__icon[data-v-15b5139b] .icon-inline{flex:1 1 auto}.nav-menu-item[data-v-66cbfe4c]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]{margin-left:0;width:100%;min-height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--is-open.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:1;transform:translateZ(0);transition-delay:0s}.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7){transition-delay:0s}.links-block[data-v-81ecd99a]+*{margin-top:1.6em}.topic-link-block[data-v-81ecd99a]{margin-top:15px} \ No newline at end of file diff --git a/docs/css/documentation-topic~topic~tutorials-overview.d6f5411c.css b/docs/css/documentation-topic~topic~tutorials-overview.d6f5411c.css new file mode 100644 index 0000000..f81c8dc --- /dev/null +++ b/docs/css/documentation-topic~topic~tutorials-overview.d6f5411c.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */aside[data-v-3ccce809]{-moz-column-break-inside:avoid;break-inside:avoid;border-radius:var(--aside-border-radius,var(--border-radius,4px));border-style:var(--aside-border-style,solid);border-width:var(--aside-border-width,0 0 0 6px);padding:.94118rem;text-align:start}aside .label[data-v-3ccce809]{font-size:1rem;line-height:1.52941;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}aside .label+[data-v-3ccce809]{margin-top:var(--spacing-stacked-margin-small)}aside.deprecated[data-v-3ccce809]{background-color:var(--color-aside-deprecated-background);border-color:var(--color-aside-deprecated-border);box-shadow:0 0 0 0 var(--color-aside-deprecated-border) inset,0 0 0 0 var(--color-aside-deprecated-border)}aside.deprecated .label[data-v-3ccce809]{color:var(--color-aside-deprecated)}aside.experiment[data-v-3ccce809]{background-color:var(--color-aside-experiment-background);border-color:var(--color-aside-experiment-border);box-shadow:0 0 0 0 var(--color-aside-experiment-border) inset,0 0 0 0 var(--color-aside-experiment-border)}aside.experiment .label[data-v-3ccce809]{color:var(--color-aside-experiment)}aside.important[data-v-3ccce809]{background-color:var(--color-aside-important-background);border-color:var(--color-aside-important-border);box-shadow:0 0 0 0 var(--color-aside-important-border) inset,0 0 0 0 var(--color-aside-important-border)}aside.important .label[data-v-3ccce809]{color:var(--color-aside-important)}aside.note[data-v-3ccce809]{background-color:var(--color-aside-note-background);border-color:var(--color-aside-note-border);box-shadow:0 0 0 0 var(--color-aside-note-border) inset,0 0 0 0 var(--color-aside-note-border)}aside.note .label[data-v-3ccce809]{color:var(--color-aside-note)}aside.tip[data-v-3ccce809]{background-color:var(--color-aside-tip-background);border-color:var(--color-aside-tip-border);box-shadow:0 0 0 0 var(--color-aside-tip-border) inset,0 0 0 0 var(--color-aside-tip-border)}aside.tip .label[data-v-3ccce809]{color:var(--color-aside-tip)}aside.warning[data-v-3ccce809]{background-color:var(--color-aside-warning-background);border-color:var(--color-aside-warning-border);box-shadow:0 0 0 0 var(--color-aside-warning-border) inset,0 0 0 0 var(--color-aside-warning-border)}aside.warning .label[data-v-3ccce809]{color:var(--color-aside-warning)}code[data-v-08295b2f]:before{content:attr(data-before-code)}code[data-v-08295b2f]:after{content:attr(data-after-code)}code[data-v-08295b2f]:after,code[data-v-08295b2f]:before{display:block;position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}.swift-file-icon.file-icon[data-v-c01a6890]{height:1rem}.file-icon[data-v-7c381064]{position:relative;align-items:flex-end;height:24px;margin:0 .5rem 0 1rem}.filename[data-v-c8c40662]{color:var(--text,var(--colors-secondary-label,var(--color-secondary-label)));font-size:.94118rem;line-height:1.1875;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:1rem}@media only screen and (max-width:735px){.filename[data-v-c8c40662]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:0}}.filename>a[data-v-c8c40662],.filename>span[data-v-c8c40662]{display:flex;align-items:center;line-height:normal}a[data-v-c8c40662]{color:var(--url,var(--color-link))}.code-line-container[data-v-59f42f5b]{display:inline-block;width:100%;box-sizing:border-box}.code-number[data-v-59f42f5b]{display:inline-block;padding:0 1rem 0 8px;text-align:right;min-width:2em;color:#666;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-59f42f5b]:before{content:attr(data-line-number)}.highlighted[data-v-59f42f5b]{background:var(--line-highlight,var(--color-code-line-highlight));border-left:4px solid var(--color-code-line-highlight-border)}.highlighted .code-number[data-v-59f42f5b]{padding-left:4px}pre[data-v-59f42f5b]{padding:14px 0;display:flex;overflow:unset;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal;height:100%}@media only screen and (max-width:735px){pre[data-v-59f42f5b]{padding-top:.82353rem}}code[data-v-59f42f5b]{white-space:pre;word-wrap:normal;flex-grow:9999}.code-listing[data-v-59f42f5b],.container-general[data-v-59f42f5b]{display:flex}.code-listing[data-v-59f42f5b]{flex-direction:column;min-height:100%;border-radius:var(--code-border-radius,var(--border-radius,4px));overflow:hidden;filter:blur(0)}.code-listing.single-line[data-v-59f42f5b]{border-radius:var(--border-radius,4px)}.container-general[data-v-59f42f5b]{overflow:auto}.container-general[data-v-59f42f5b],pre[data-v-59f42f5b]{flex-grow:1}.header-anchor[data-v-6007a8a4]{color:inherit;text-decoration:none;position:relative;padding-right:23px;display:inline-block}.header-anchor .icon[data-v-6007a8a4]{position:absolute;right:0;bottom:.2em;display:none;height:16px;margin-left:7px}.header-anchor:focus .icon[data-v-6007a8a4],.header-anchor:hover .icon[data-v-6007a8a4]{display:inline}code[data-v-05f4a5b7]{speak-punctuation:code}.container-general[data-v-25a17a0e]{display:flex;flex-flow:row wrap}.container-general .code-line[data-v-25a17a0e]{flex:1 0 auto}.code-line-container[data-v-25a17a0e]{width:100%;align-items:center;display:flex;border-left:4px solid transparent;counter-increment:linenumbers;padding-right:14px}.code-number[data-v-25a17a0e]{font-size:.70588rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);padding:0 1rem 0 8px;text-align:right;min-width:2.01em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-25a17a0e]:before{content:counter(linenumbers)}.code-line[data-v-25a17a0e]{display:flex}pre[data-v-25a17a0e]{padding:14px 0;display:flex;flex-flow:row wrap;overflow:auto;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal}@media only screen and (max-width:735px){pre[data-v-25a17a0e]{padding-top:.82353rem}}.collapsible-code-listing[data-v-25a17a0e]{background:var(--background,var(--color-code-background));border-color:var(--colors-grid,var(--color-grid));color:var(--text,var(--color-code-plain));border-radius:var(--border-radius,4px);border-style:solid;border-width:1px;counter-reset:linenumbers;font-size:15px}.collapsible-code-listing.single-line[data-v-25a17a0e]{border-radius:var(--border-radius,4px)}.collapsible[data-v-25a17a0e]{background:var(--color-code-collapsible-background);color:var(--color-code-collapsible-text)}.collapsed[data-v-25a17a0e]:before{content:"⋯";display:inline-block;font-family:monospace;font-weight:700;height:100%;line-height:1;text-align:right;width:2.3rem}.collapsed .code-line-container[data-v-25a17a0e]{height:0;visibility:hidden}.row[data-v-be73599c]{box-sizing:border-box;display:flex;flex-flow:row wrap}.col[data-v-2ee3ad8b]{box-sizing:border-box;flex:none}.xlarge-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.xlarge-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.xlarge-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.xlarge-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.xlarge-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.xlarge-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.xlarge-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.xlarge-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.xlarge-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.xlarge-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.xlarge-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.xlarge-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.xlarge-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.xlarge-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}.large-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.large-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.large-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.large-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.large-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.large-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.large-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.large-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.large-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.large-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.large-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.large-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.large-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.large-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}@media only screen and (max-width:1250px){.medium-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.medium-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.medium-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.medium-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.medium-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.medium-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.medium-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.medium-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.medium-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.medium-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.medium-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.medium-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.medium-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.medium-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:735px){.small-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.small-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.small-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.small-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.small-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.small-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.small-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.small-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.small-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.small-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.small-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.small-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.small-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.small-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:320px){.xsmall-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.xsmall-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.xsmall-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.xsmall-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.xsmall-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.xsmall-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.xsmall-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.xsmall-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.xsmall-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.xsmall-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.xsmall-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.xsmall-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.xsmall-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.xsmall-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}.tabnav[data-v-5283512a]{margin:0 0 1.47059rem 0;display:flex}.tabnav--center[data-v-5283512a]{justify-content:center}.tabnav--end[data-v-5283512a]{justify-content:flex-end}.tabnav--vertical[data-v-5283512a]{flex-flow:column wrap}.tabnav--vertical .tabnav-items[data-v-5283512a]{flex-flow:column;overflow:hidden}.tabnav--vertical[data-v-5283512a] .tabnav-item{padding-left:0}.tabnav--vertical[data-v-5283512a] .tabnav-item .tabnav-link{padding-top:8px}.tabnav-items[data-v-5283512a]{display:flex;margin:0;text-align:center}.tabnav-item[data-v-6aa9882a]{border-bottom:1px solid;border-color:var(--colors-tabnav-item-border-color,var(--color-tabnav-item-border-color));display:flex;list-style:none;padding-left:1.76471rem;margin:0;outline:none}.tabnav-item[data-v-6aa9882a]:first-child{padding-left:0}.tabnav-item[data-v-6aa9882a]:nth-child(n+1){margin:0}.tabnav-link[data-v-6aa9882a]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:6px 0;margin-top:4px;margin-bottom:4px;text-align:left;text-decoration:none;display:block;position:relative;z-index:0;width:100%}.tabnav-link[data-v-6aa9882a]:hover{text-decoration:none}.tabnav-link[data-v-6aa9882a]:focus{outline-offset:-1px}.tabnav-link[data-v-6aa9882a]:after{content:"";position:absolute;bottom:-5px;left:0;width:100%;border:1px solid transparent}.tabnav-link.active[data-v-6aa9882a]{color:var(--colors-text,var(--color-text));cursor:default;z-index:10}.tabnav-link.active[data-v-6aa9882a]:after{border-bottom-color:var(--colors-text,var(--color-text))}.controls[data-v-c84e62a6]{margin-top:5px;font-size:14px;display:flex;justify-content:flex-end}.controls a[data-v-c84e62a6]{color:var(--colors-text,var(--color-text));display:flex;align-items:center}.controls .control-icon[data-v-c84e62a6]{width:1.05em;margin-right:.3em}.caption[data-v-1b76f4e0]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin:0 0 var(--spacing-stacked-margin-large) 0}.caption.trailing[data-v-1b76f4e0]{margin:var(--spacing-stacked-margin-large) 0 0 0;text-align:center}caption.trailing[data-v-1b76f4e0]{caption-side:bottom}[data-v-1b76f4e0] p{display:inline-block}[data-v-3a939631] img{max-width:100%}.table-wrapper[data-v-5ed73c89]{overflow:auto;-webkit-overflow-scrolling:touch}*+.table-wrapper[data-v-5ed73c89],.table-wrapper[data-v-5ed73c89]+*{margin-top:var(--spacing-stacked-margin-xlarge)}table[data-v-5ed73c89]{border-style:hidden}[data-v-5ed73c89] th{font-weight:600;word-break:keep-all;-webkit-hyphens:auto;hyphens:auto}[data-v-5ed73c89] td,[data-v-5ed73c89] th{border-color:var(--color-fill-gray-tertiary);border-style:solid;border-width:var(--table-border-width,1px 1px);padding:.58824rem}[data-v-5ed73c89] td.left-cell,[data-v-5ed73c89] th.left-cell{text-align:left}[data-v-5ed73c89] td.right-cell,[data-v-5ed73c89] th.right-cell{text-align:right}[data-v-5ed73c89] td.center-cell,[data-v-5ed73c89] th.center-cell{text-align:center}s[data-v-7fc51673]:before{content:attr(data-before-text)}s[data-v-7fc51673]:after{content:attr(data-after-text)}s[data-v-7fc51673]:after,s[data-v-7fc51673]:before{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}small[data-v-77035f61]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray)}.device-frame[data-v-28ae8fd3]{position:relative;width:var(--frame-width);aspect-ratio:var(--frame-aspect);max-width:100%;margin-left:auto;margin-right:auto;overflow:hidden}*+.device-frame[data-v-28ae8fd3],.device-frame[data-v-28ae8fd3]+*{margin-top:40px}.device[data-v-28ae8fd3]{background-image:var(--device-light-url);background-repeat:no-repeat;background-size:100%;width:100%;height:100%;position:relative;pointer-events:none}@media screen{[data-color-scheme=dark] .device[data-v-28ae8fd3]{background-image:var(--device-dark-url,var(--device-light-url))}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .device[data-v-28ae8fd3]{background-image:var(--device-dark-url,var(--device-light-url))}}.no-device .device[data-v-28ae8fd3]{display:none}.device-screen.with-device[data-v-28ae8fd3]{position:absolute;left:var(--screen-left);top:var(--screen-top);height:var(--screen-height);width:var(--screen-width);display:flex}.device-screen.with-device>[data-v-28ae8fd3]{flex:1}.device-screen.with-device[data-v-28ae8fd3] img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:top;object-position:top;margin:0}.device-screen.with-device[data-v-28ae8fd3] video{-o-object-fit:contain;object-fit:contain;-o-object-position:top;object-position:top;width:100%;height:auto}.video-replay-container .control-button[data-v-7653dfd0]{display:flex;align-items:center;justify-content:center;cursor:pointer;margin-top:.5rem;-webkit-tap-highlight-color:transparent}.video-replay-container .control-button svg.control-icon[data-v-7653dfd0]{height:12px;width:12px;margin-left:.3em}[data-v-dcbc7b38] img,[data-v-dcbc7b38] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.asset[data-v-035a093f]{margin-left:auto;margin-right:auto}*+.asset[data-v-035a093f],.asset[data-v-035a093f]+*{margin-top:var(--spacing-stacked-margin-xlarge)}[data-v-035a093f] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.column[data-v-0f654188]{grid-column:span var(--col-span);min-width:0}@media only screen and (max-width:735px){.column[data-v-0f654188]{grid-column:span 1}}.row[data-v-1bcb2d0f]{display:grid;grid-auto-flow:column;grid-auto-columns:1fr;grid-gap:var(--col-gap,20px)}@media only screen and (max-width:735px){.row[data-v-1bcb2d0f]{grid-template-columns:1fr;grid-auto-flow:row}}.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-large);grid-template-columns:repeat(var(--col-count),1fr);grid-auto-flow:row}@media only screen and (max-width:1250px){.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-medium,var(--col-count-large))}}@media only screen and (max-width:735px){.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-small)}}*+.row[data-v-1bcb2d0f],*+.TabNavigator[data-v-e671a734],.row[data-v-1bcb2d0f]+*,.TabNavigator[data-v-e671a734]+*{margin-top:var(--spacing-stacked-margin-xlarge)}.TabNavigator .tabnav[data-v-e671a734]{overflow:auto;white-space:nowrap}.TabNavigator .tabs-content-container[data-v-e671a734]{position:relative;overflow:hidden}.tabs--vertical[data-v-e671a734]{display:flex;flex-flow:row-reverse}@media only screen and (max-width:735px){.tabs--vertical[data-v-e671a734]{flex-flow:column-reverse}}.tabs--vertical .tabnav[data-v-e671a734]{width:30%;flex:0 0 auto;white-space:normal;margin:0}@media only screen and (max-width:735px){.tabs--vertical .tabnav[data-v-e671a734]{width:100%}}.tabs--vertical .tabs-content[data-v-e671a734]{flex:1 1 auto;min-width:0;padding-right:var(--spacing-stacked-margin-xlarge)}@media only screen and (max-width:735px){.tabs--vertical .tabs-content[data-v-e671a734]{padding-right:0;padding-bottom:var(--spacing-stacked-margin-large)}}.fade-enter-active[data-v-e671a734],.fade-leave-active[data-v-e671a734]{transition:opacity .2s ease-in-out}.fade-enter[data-v-e671a734],.fade-leave-to[data-v-e671a734]{opacity:0}.fade-leave-active[data-v-e671a734]{position:absolute;top:0;left:0;right:0}.tasklist[data-v-6a56a858]{--checkbox-width:1rem;--indent-width:calc(var(--checkbox-width)/2);--content-margin:var(--indent-width);list-style-type:none;margin-left:var(--indent-width)}p[data-v-6a56a858]{margin-left:var(--content-margin)}p[data-v-6a56a858]:only-child{--content-margin:calc(var(--checkbox-width) + var(--indent-width))}input[type=checkbox]+p[data-v-6a56a858]{display:inline-block}.button-cta[data-v-c9c81868]{background:var(--colors-button-light-background,var(--color-button-background));border-color:var(--color-button-border,currentcolor);border-radius:var(--button-border-radius,var(--border-radius,4px));border-style:var(--button-border-style,none);border-width:var(--button-border-width,medium);color:var(--colors-button-text,var(--color-button-text));cursor:pointer;min-width:1.76471rem;padding:.23529rem .88235rem;text-align:center;white-space:nowrap;display:inline-block;font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.button-cta[data-v-c9c81868]:active{background:var(--colors-button-light-backgroundActive,var(--color-button-background-active));outline:none}.button-cta[data-v-c9c81868]:hover:not([disabled]){background:var(--colors-button-light-backgroundHover,var(--color-button-background-hover));text-decoration:none}.button-cta[data-v-c9c81868]:disabled{opacity:.32;cursor:default}.fromkeyboard .button-cta[data-v-c9c81868]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.button-cta.is-dark[data-v-c9c81868]{background:var(--colors-button-dark-background,#06f)}.button-cta.is-dark[data-v-c9c81868]:active{background:var(--colors-button-dark-backgroundActive,var(--color-button-background-active))}.button-cta.is-dark[data-v-c9c81868]:hover:not([disabled]){background:var(--colors-button-dark-backgroundHover,var(--color-button-background-hover))}.card-cover-wrap.rounded[data-v-0c1c40a1]{border-radius:var(--border-radius,4px);overflow:hidden}.card-cover[data-v-0c1c40a1]{background-color:var(--color-card-background);display:block;height:var(--card-cover-height,180px)}.card-cover.fallback[data-v-0c1c40a1],.card-cover[data-v-0c1c40a1] img{width:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;display:block;margin:0}.card-cover[data-v-0c1c40a1] img{height:100%}.card[data-v-328d568a]{overflow:hidden;display:block;transition:box-shadow,transform .16s ease-out;will-change:box-shadow,transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;height:var(--card-height);border-radius:var(--border-radius,4px)}.card[data-v-328d568a]:hover{text-decoration:none}.card:hover .link[data-v-328d568a]{text-decoration:underline}.card[data-v-328d568a]:hover{box-shadow:0 5px 10px var(--color-card-shadow);transform:scale(1.007)}@media (prefers-reduced-motion:reduce){.card[data-v-328d568a]:hover{box-shadow:none;transform:none}}.card.small[data-v-328d568a]{--card-height:408px;--card-details-height:139px;--card-cover-height:235px}@media only screen and (max-width:1250px){.card.small[data-v-328d568a]{--card-height:341px;--card-details-height:144px;--card-cover-height:163px}}.card.large[data-v-328d568a]{--card-height:556px;--card-details-height:163px;--card-cover-height:359px}@media only screen and (max-width:1250px){.card.large[data-v-328d568a]{--card-height:420px;--card-details-height:137px;--card-cover-height:249px}}.card.floating-style[data-v-328d568a]{--color-card-shadow:transparent;--card-height:auto;--card-details-height:auto}.details[data-v-328d568a]{background-color:var(--color-card-background);padding:17px;position:relative;height:var(--card-details-height);font-size:.82353rem;line-height:1.28571}.details[data-v-328d568a],.large .details[data-v-328d568a]{font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.large .details[data-v-328d568a]{font-size:1rem;line-height:1.47059}@media only screen and (max-width:1250px){.large .details[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.floating-style .details[data-v-328d568a]{--color-card-background:transparent;padding:17px 0}.eyebrow[data-v-328d568a]{color:var(--color-card-eyebrow);display:block;margin-bottom:4px;font-size:.82353rem;line-height:1.28571}.eyebrow[data-v-328d568a],.large .eyebrow[data-v-328d568a]{font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.large .eyebrow[data-v-328d568a]{font-size:1rem;line-height:1.23529}@media only screen and (max-width:1250px){.large .eyebrow[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title[data-v-328d568a]{color:var(--color-card-content-text);font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.title[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-328d568a]{font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.large .title[data-v-328d568a]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.large .title[data-v-328d568a]{font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.card-content[data-v-328d568a]{color:var(--color-card-content-text);margin-top:4px}.link[data-v-328d568a]{bottom:17px;display:flex;align-items:center;position:absolute}.link .link-icon[data-v-328d568a]{height:.6em;width:.6em;margin-left:.3em}.floating-style .link[data-v-328d568a]{bottom:unset;margin-top:var(--spacing-stacked-margin-large);position:relative}@media only screen and (max-width:735px){.card[data-v-328d568a]{margin-left:auto;margin-right:auto}.card+.card[data-v-328d568a]{margin-bottom:20px;margin-top:20px}.card.large[data-v-328d568a],.card.small[data-v-328d568a]{--card-height:auto;--card-details-height:auto;min-width:280px;max-width:300px;--card-cover-height:227px}.card.large .link[data-v-328d568a],.card.small .link[data-v-328d568a]{bottom:unset;margin-top:7px;position:relative}}.nav-menu-items[data-v-67c1c0a5]{display:flex;justify-content:flex-end}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{display:block;opacity:0;padding:1rem 1.88235rem 1.64706rem 1.88235rem;transform:translate3d(0,-50px,0);transition:transform 1s cubic-bezier(.07,1.06,.27,.95) .5s,opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s}.nav--is-open.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{opacity:1;transform:translateZ(0);transition-delay:.2s,.4s}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):not(:last-child){padding-bottom:0}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):last-child{padding-top:0}.TopicTypeIcon[data-v-18b61706]{width:1em;height:1em;flex:0 0 auto;color:var(--icon-color,var(--color-figure-gray-secondary))}.TopicTypeIcon[data-v-18b61706] picture{flex:1}.TopicTypeIcon[data-v-18b61706] img,.TopicTypeIcon svg[data-v-18b61706]{display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.nav[data-v-5c0521d3]{position:sticky;top:0;width:100%;height:3.05882rem;z-index:9997;--nav-padding:1.29412rem;color:var(--color-nav-color)}@media print{.nav[data-v-5c0521d3]{position:relative}}@media only screen and (max-width:767px){.nav[data-v-5c0521d3]{min-width:320px;height:2.82353rem}}.theme-dark.nav[data-v-5c0521d3]{background:none;color:var(--color-nav-dark-color)}.nav__wrapper[data-v-5c0521d3]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav__background[data-v-5c0521d3]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;transition:background-color 0s ease-in}.nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-keyline)}.nav--no-bg-transition .nav__background[data-v-5c0521d3]{transition:none!important}.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-solid-background);-webkit-backdrop-filter:none;backdrop-filter:none}.nav--is-open.nav--solid-background .nav__background[data-v-5c0521d3],.nav--is-sticking.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-solid-background)}.nav--is-open.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3],.nav--is-sticking.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3],.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-solid-background)}.nav--in-breakpoint-range .nav__background[data-v-5c0521d3]{min-height:2.82353rem;transition:background-color 0s ease .7s}.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-sticking .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-sticking .nav__background[data-v-5c0521d3]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-stuck)}}.theme-dark.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-stuck)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-uiblur-stuck)}}.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-open .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-open .nav__background[data-v-5c0521d3]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-expanded)}}.theme-dark.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-expanded)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-uiblur-expanded)}}.theme-dark .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-dark-keyline)}.nav--is-open.theme-dark .nav__background[data-v-5c0521d3]:after,.nav--is-sticking.theme-dark .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-dark-sticking-expanded-keyline)}.nav__background[data-v-5c0521d3]:after{content:"";display:block;position:absolute;top:100%;left:50%;transform:translateX(-50%);width:980px;height:1px;z-index:1}@media only screen and (max-width:1023px){.nav__background[data-v-5c0521d3]:after{width:100%}}.nav--noborder .nav__background[data-v-5c0521d3]:after{display:none}.nav--is-sticking.nav--noborder .nav__background[data-v-5c0521d3]:after{display:block}.nav--fullwidth-border .nav__background[data-v-5c0521d3]:after,.nav--is-open .nav__background[data-v-5c0521d3]:after,.nav--is-sticking .nav__background[data-v-5c0521d3]:after,.nav--solid-background .nav__background[data-v-5c0521d3]:after{width:100%}.nav-overlay[data-v-5c0521d3]{position:fixed;left:0;right:0;top:0;display:block;opacity:0}.nav--is-open .nav-overlay[data-v-5c0521d3]{background-color:rgba(51,51,51,.4);transition:opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s;bottom:0;opacity:1}.nav-wrapper[data-v-5c0521d3]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.pre-title[data-v-5c0521d3]{display:flex;overflow:hidden;padding-left:1.29412rem;margin-left:-1.29412rem}.pre-title[data-v-5c0521d3]:empty{display:none}.nav--in-breakpoint-range .pre-title[data-v-5c0521d3]{overflow:visible;padding:0;margin-left:0}.nav-content[data-v-5c0521d3]{display:flex;padding:0 var(--nav-padding);max-width:980px;margin:0 auto;position:relative;z-index:2;justify-content:space-between}.nav--is-wide-format .nav-content[data-v-5c0521d3]{box-sizing:border-box;max-width:1920px;margin-left:auto;margin-right:auto}@supports (padding:calc(max(0px))){.nav-content[data-v-5c0521d3]{padding-left:calc(max(var(--nav-padding), env(safe-area-inset-left)));padding-right:calc(max(var(--nav-padding), env(safe-area-inset-right)))}}@media only screen and (max-width:767px){.nav-content[data-v-5c0521d3]{padding:0 0 0 .94118rem}}.nav--in-breakpoint-range .nav-content[data-v-5c0521d3]{display:grid;grid-template-columns:auto 1fr auto;grid-auto-rows:minmax(-webkit-min-content,-webkit-max-content);grid-auto-rows:minmax(min-content,max-content);grid-template-areas:"pre-title title actions" "menu menu menu"}.nav-menu[data-v-5c0521d3]{font-size:.70588rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);flex:1 1 auto;display:flex;min-width:0}@media only screen and (max-width:767px){.nav-menu[data-v-5c0521d3]{font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.nav--in-breakpoint-range .nav-menu[data-v-5c0521d3]{font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);grid-area:menu}.nav-menu-tray[data-v-5c0521d3]{width:100%;max-width:100%;align-items:center;display:flex;justify-content:space-between}.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{display:block;overflow:hidden;pointer-events:none;visibility:hidden;max-height:0;transition:max-height .4s ease-in 0s,visibility 0s linear 1s}.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{max-height:calc(100vh - 5.64706rem);overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:auto;visibility:visible;transition-delay:.2s,0s}.nav--is-transitioning.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{overflow-y:hidden}.nav--is-sticking.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{max-height:calc(100vh - 2.82353rem)}.nav-actions[data-v-5c0521d3]{display:flex;align-items:center}.nav--in-breakpoint-range .nav-actions[data-v-5c0521d3]{grid-area:actions;justify-content:flex-end}@media only screen and (max-width:767px){.nav-actions[data-v-5c0521d3]{padding-right:.94118rem}}.nav--in-breakpoint-range .pre-title+.nav-title[data-v-5c0521d3]{grid-area:title}.nav--is-wide-format.nav--in-breakpoint-range .pre-title+.nav-title[data-v-5c0521d3]{width:100%;justify-content:center}.nav-title[data-v-5c0521d3]{height:3.05882rem;font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);cursor:default;display:flex;align-items:center;white-space:nowrap;box-sizing:border-box}@media only screen and (max-width:767px){.nav-title[data-v-5c0521d3]{padding-top:0;height:2.82353rem;width:90%}}.nav-title[data-v-5c0521d3] span{height:100%;line-height:normal}.nav-title a[data-v-5c0521d3]{display:inline-block;letter-spacing:inherit;line-height:normal;margin:0;text-decoration:none;white-space:nowrap}.nav-title a[data-v-5c0521d3]:hover{text-decoration:none}@media only screen and (max-width:767px){.nav-title a[data-v-5c0521d3]{display:flex}}.nav-title[data-v-5c0521d3],.nav-title a[data-v-5c0521d3]{color:var(--color-figure-gray);transition:color 0s ease-in}.nav--is-open.theme-dark .nav-title[data-v-5c0521d3],.nav--is-open.theme-dark .nav-title a[data-v-5c0521d3],.nav--is-sticking.theme-dark .nav-title[data-v-5c0521d3],.nav--is-sticking.theme-dark .nav-title a[data-v-5c0521d3],.theme-dark .nav-title[data-v-5c0521d3],.theme-dark .nav-title a[data-v-5c0521d3]{color:var(--color-nav-dark-link-color)}.nav-ax-toggle[data-v-5c0521d3]{display:none;position:absolute;top:0;left:0;width:1px;height:1px;z-index:10}.nav-ax-toggle[data-v-5c0521d3]:focus{outline-offset:-6px;width:100%;height:100%}.nav--in-breakpoint-range .nav-ax-toggle[data-v-5c0521d3]{display:block}.nav-menucta[data-v-5c0521d3]{cursor:pointer;display:none;align-items:center;overflow:hidden;width:1.17647rem;-webkit-tap-highlight-color:transparent;height:2.82353rem}.nav--in-breakpoint-range .nav-menucta[data-v-5c0521d3]{display:flex}.nav-menucta-chevron[data-v-5c0521d3]{display:block;position:relative;width:100%;height:.70588rem;transition:transform .3s linear}.nav-menucta-chevron[data-v-5c0521d3]:after,.nav-menucta-chevron[data-v-5c0521d3]:before{content:"";display:block;position:absolute;top:.58824rem;width:.70588rem;height:.05882rem;transition:transform .3s linear;background:var(--color-figure-gray)}.nav-menucta-chevron[data-v-5c0521d3]:before{right:50%;border-radius:.5px 0 0 .5px}.nav-menucta-chevron[data-v-5c0521d3]:after{left:50%;border-radius:0 .5px .5px 0}.nav-menucta-chevron[data-v-5c0521d3]:before{transform-origin:100% 100%;transform:rotate(40deg) scaleY(1.5)}.nav-menucta-chevron[data-v-5c0521d3]:after{transform-origin:0 100%;transform:rotate(-40deg) scaleY(1.5)}.nav--is-open .nav-menucta-chevron[data-v-5c0521d3]{transform:scaleY(-1)}.theme-dark .nav-menucta-chevron[data-v-5c0521d3]:after,.theme-dark .nav-menucta-chevron[data-v-5c0521d3]:before{background:var(--color-nav-dark-link-color)}[data-v-5c0521d3] .nav-menu-link{color:var(--color-nav-link-color)}[data-v-5c0521d3] .nav-menu-link:hover{color:var(--color-nav-link-color-hover);text-decoration:none}.theme-dark[data-v-5c0521d3] .nav-menu-link{color:var(--color-nav-dark-link-color)}.theme-dark[data-v-5c0521d3] .nav-menu-link:hover{color:var(--color-nav-dark-link-color-hover)}[data-v-5c0521d3] .nav-menu-link.current{color:var(--color-nav-current-link);cursor:default}[data-v-5c0521d3] .nav-menu-link.current:hover{color:var(--color-nav-current-link)}.theme-dark[data-v-5c0521d3] .nav-menu-link.current,.theme-dark[data-v-5c0521d3] .nav-menu-link.current:hover{color:var(--color-nav-dark-current-link)}.reference-card-grid-item[data-v-08a5e3f8]{--card-cover-height:auto}.reference-card-grid-item.card.large[data-v-08a5e3f8]{--card-cover-height:auto;min-width:0;max-width:none}.reference-card-grid-item[data-v-08a5e3f8] .card-cover{aspect-ratio:16/9}.reference-card-grid-item[data-v-08a5e3f8] .card-cover-wrap{border:1px solid var(--color-link-block-card-border)}.reference-card-grid-item__image[data-v-08a5e3f8]{display:flex;align-items:center;justify-content:center;font-size:80px;background-color:var(--color-fill-gray-quaternary)}.reference-card-grid-item__icon[data-v-08a5e3f8]{margin:0;display:flex;justify-content:center}.reference-card-grid-item__icon[data-v-08a5e3f8] .icon-inline{flex:1 1 auto}.nav-menu-item[data-v-66cbfe4c]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]{margin-left:0;width:100%;min-height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--is-open.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:1;transform:translateZ(0);transition-delay:0s}.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7){transition-delay:0s}.links-block[data-v-ce6f87f6]+*{margin-top:var(--spacing-stacked-margin-xlarge)}.topic-link-block[data-v-ce6f87f6]{margin-top:15px} \ No newline at end of file diff --git a/docs/css/index.038e887c.css b/docs/css/index.038e887c.css new file mode 100644 index 0000000..ee928eb --- /dev/null +++ b/docs/css/index.038e887c.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-fill:var(--color-button-background);--toggle-color-text:var(--color-fill-blue);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);border:1px solid var(--toggle-color-fill);border-radius:var(--toggle-border-radius-outer,var(--border-radius,4px));display:inline-flex;padding:1px}@media screen{[data-color-scheme=dark] .color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-text:var(--color-figure-blue)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-text:var(--color-figure-blue)}}@media print{.color-scheme-toggle[data-v-02a6f6ec]{display:none}}input[data-v-02a6f6ec]{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.fromkeyboard label[data-v-02a6f6ec]:focus-within{outline:4px solid var(--color-focus-color);outline-offset:1px}.text[data-v-02a6f6ec]{border:1px solid transparent;border-radius:var(--toggle-border-radius-inner,2px);color:var(--toggle-color-text);display:inline-block;text-align:center;padding:1px 6px;min-width:42px;box-sizing:border-box}.text[data-v-02a6f6ec]:hover{cursor:pointer}input:checked+.text[data-v-02a6f6ec]{--toggle-color-text:var(--color-button-text);background:var(--toggle-color-fill);border-color:var(--toggle-color-fill)}.footer[data-v-4e049dbd]{border-top:1px solid var(--color-grid)}.row[data-v-4e049dbd]{margin-left:auto;margin-right:auto;width:980px;display:flex;flex-direction:row-reverse;margin:20px auto}@media only screen and (max-width:1250px){.row[data-v-4e049dbd]{width:692px}}@media only screen and (max-width:735px){.row[data-v-4e049dbd]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-4e049dbd]{width:215px}}@media only screen and (max-width:735px){.row[data-v-4e049dbd]{width:100%;padding:0 .94118rem;box-sizing:border-box}}.InitialLoadingPlaceholder[data-v-35c356b6]{background:var(--colors-loading-placeholder-background,var(--color-loading-placeholder-background));height:100vh;width:100%}.svg-icon[data-v-33d3200a]{fill:var(--colors-svg-icon-fill-light,var(--color-svg-icon));transform:scale(1);-webkit-transform:scale(1);overflow:visible}.theme-dark .svg-icon[data-v-33d3200a]{fill:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.svg-icon.icon-inline[data-v-33d3200a]{display:inline-block;vertical-align:middle;fill:currentColor}.svg-icon.icon-inline[data-v-33d3200a] .svg-icon-stroke{stroke:currentColor}[data-v-33d3200a] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-light,var(--color-svg-icon))}.theme-dark[data-v-33d3200a] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.suggest-lang[data-v-ad72c62e]{background:#000;color:#fff;display:flex;justify-content:center;border-bottom:1px solid var(--color-grid)}.suggest-lang__wrapper[data-v-ad72c62e]{display:flex;align-items:center;width:100%;max-width:var(--wrapper-max-width,1920px);margin:0 .94118rem;position:relative;height:52px}.suggest-lang__link[data-v-ad72c62e]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin:0 auto;color:#09f}.suggest-lang__close-icon-wrapper[data-v-ad72c62e]{position:absolute;right:-.23529rem;top:0;height:100%;box-sizing:border-box;display:flex;align-items:center;z-index:1}.suggest-lang__close-icon-button[data-v-ad72c62e]{padding:.23529rem}.suggest-lang__close-icon-button .close-icon[data-v-ad72c62e]{width:8px;display:block}.suggest-lang .inline-chevron-right-icon[data-v-ad72c62e]{padding-left:.23529rem;width:8px}select[data-v-7e4d9b69]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-fill-blue);padding-right:15px;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;cursor:pointer}select[data-v-7e4d9b69]:hover{text-decoration:underline}.locale-selector[data-v-7e4d9b69]{position:relative}.svg-icon.icon-inline[data-v-7e4d9b69]{position:absolute;fill:var(--color-fill-blue);right:2px;bottom:7px;height:5px}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;background-color:var(--colors-text-background,var(--color-text-background));height:100%}abbr,blockquote,body,button,dd,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hgroup,input,legend,li,ol,p,pre,ul{margin:0;padding:0}address,caption,code,figcaption,pre,th{font-size:1em;font-weight:400;font-style:normal}fieldset,iframe,img{border:0}caption,th{text-align:left}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}button{background:none;border:0;box-sizing:content-box;color:inherit;cursor:pointer;font:inherit;line-height:inherit;overflow:visible;vertical-align:inherit}button:disabled{cursor:default}:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}::-moz-focus-inner{border:0;padding:0}@media print{#content,#main,body{color:#000}a,a:link,a:visited{color:#000;text-decoration:none}.hide,.noprint{display:none}}body{height:100%;min-width:320px}html{font:var(--typography-html-font,17px "Helvetica Neue","Helvetica","Arial",sans-serif);quotes:"“" "”"}html:lang(ja-JP){quotes:"「" "」"}body{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);background-color:var(--color-text-background);color:var(--colors-text,var(--color-text));font-style:normal;word-wrap:break-word;--spacing-stacked-margin-small:0.4em;--spacing-stacked-margin-large:0.8em;--spacing-stacked-margin-xlarge:calc(var(--spacing-stacked-margin-large)*2);--spacing-param:1.64706rem;--declaration-code-listing-margin:30px 0 0 0;--code-block-style-elements-padding:8px 14px}body,button,input,select,textarea{font-synthesis:none;-moz-font-feature-settings:"kern";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}h1,h2,h3,h4,h5,h6{color:var(--colors-header-text,var(--color-header-text))}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:var(--spacing-stacked-margin-large)}ol+h1,ol+h2,ol+h3,ol+h4,ol+h5,ol+h6,p+h1,p+h2,p+h3,p+h4,p+h5,p+h6,ul+h1,ul+h2,ul+h3,ul+h4,ul+h5,ul+h6{margin-top:1.6em}ol+*,p+*,ul+*{margin-top:var(--spacing-stacked-margin-large)}ol,ul{margin-left:1.17647em}ol ol,ol ul,ul ol,ul ul{margin-top:0;margin-bottom:0}nav ol,nav ul{margin:0;list-style:none}li li{font-size:1em}a{color:var(--colors-link,var(--color-link))}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}p+a{display:inline-block}b,strong{font-weight:600}cite,dfn,em,i{font-style:italic}sup{font-size:.6em;vertical-align:top;position:relative;bottom:-.2em}h1 sup,h2 sup,h3 sup{font-size:.4em}sup a{vertical-align:inherit;color:inherit}sup a:hover{color:var(--figure-blue);text-decoration:none}sub{line-height:1}abbr{border:0}pre{overflow:auto;-webkit-overflow-scrolling:auto;white-space:pre;word-wrap:normal}code{font-family:var(--typography-html-font-mono,Menlo,monospace);font-weight:inherit;letter-spacing:0}.syntax-addition{color:var(--syntax-addition,var(--color-syntax-addition))}.syntax-comment{color:var(--syntax-comment,var(--color-syntax-comments))}.syntax-quote{color:var(--syntax-quote,var(--color-syntax-comments))}.syntax-deletion{color:var(--syntax-deletion,var(--color-syntax-deletion))}.syntax-keyword{color:var(--syntax-keyword,var(--color-syntax-keywords))}.syntax-literal{color:var(--syntax-literal,var(--color-syntax-keywords))}.syntax-selector-tag{color:var(--syntax-selector-tag,var(--color-syntax-keywords))}.syntax-string{color:var(--syntax-string,var(--color-syntax-strings))}.syntax-bullet{color:var(--syntax-bullet,var(--color-syntax-characters))}.syntax-meta{color:var(--syntax-meta,var(--color-syntax-characters))}.syntax-number{color:var(--syntax-number,var(--color-syntax-characters))}.syntax-symbol{color:var(--syntax-symbol,var(--color-syntax-characters))}.syntax-tag{color:var(--syntax-tag,var(--color-syntax-characters))}.syntax-attr{color:var(--syntax-attr,var(--color-syntax-other-type-names))}.syntax-built_in{color:var(--syntax-built_in,var(--color-syntax-other-type-names))}.syntax-builtin-name{color:var(--syntax-builtin-name,var(--color-syntax-other-type-names))}.syntax-class{color:var(--syntax-class,var(--color-syntax-other-type-names))}.syntax-params{color:var(--syntax-params,var(--color-syntax-other-type-names))}.syntax-section{color:var(--syntax-section,var(--color-syntax-other-type-names))}.syntax-title{color:var(--syntax-title,var(--color-syntax-other-type-names))}.syntax-type{color:var(--syntax-type,var(--color-syntax-other-type-names))}.syntax-attribute{color:var(--syntax-attribute,var(--color-syntax-plain-text))}.syntax-identifier{color:var(--syntax-identifier,var(--color-syntax-plain-text))}.syntax-subst{color:var(--syntax-subst,var(--color-syntax-plain-text))}.syntax-doctag,.syntax-strong{font-weight:700}.syntax-emphasis,.syntax-link{font-style:italic}[data-syntax=swift] .syntax-meta{color:var(--syntax-meta,var(--color-syntax-keywords))}[data-syntax=swift] .syntax-class,[data-syntax=swift] .syntax-keyword+.syntax-params,[data-syntax=swift] .syntax-params+.syntax-params{color:unset}[data-syntax=json] .syntax-attr{color:var(--syntax-attr,var(--color-syntax-strings))}#skip-nav{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}#skip-nav:active,#skip-nav:focus{position:relative;float:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;color:var(--color-figure-blue);font-size:1em;padding:0 10px;z-index:100000;top:0;left:0;height:44px;line-height:44px;-webkit-clip-path:unset;clip-path:unset}.nav--in-breakpoint-range #skip-nav{display:none}.visuallyhidden{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}@-webkit-keyframes pulse{0%{opacity:0}33%{opacity:1}66%{opacity:1}to{opacity:0}}@keyframes pulse{0%{opacity:0}33%{opacity:1}66%{opacity:1}to{opacity:0}}.changed{border:1px solid var(--color-changes-modified);border-radius:var(--border-radius,4px);position:relative}.changed.displays-multiple-lines,.displays-multiple-lines .changed{border-radius:var(--border-radius,4px)}.changed:after{left:8px;background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:8px;position:absolute;top:0;width:1.17647rem;height:1.17647rem;margin-top:.61765rem;z-index:2}@media screen{[data-color-scheme=dark] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.changed-added{border-color:var(--color-changes-added)}.changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.changed-deprecated{border-color:var(--color-changes-deprecated)}.changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.changed.link-block:after,.changed.relationships-item:after,.link-block .changed:after{margin-top:10px}.change-added,.change-removed{padding:2px 0}.change-removed{background-color:var(--color-highlight-red)}.change-added{background-color:var(--color-highlight-green)}body{color-scheme:light dark}body[data-color-scheme=light]{color-scheme:light}body[data-color-scheme=dark]{color-scheme:dark}body{--color-fill:#fff;--color-fill-secondary:#f7f7f7;--color-fill-tertiary:#f0f0f0;--color-fill-quaternary:#282828;--color-fill-blue:#00f;--color-fill-light-blue-secondary:#d1d1ff;--color-fill-gray:#ccc;--color-fill-gray-secondary:#f5f5f5;--color-fill-gray-tertiary:#f0f0f0;--color-fill-gray-quaternary:#f0f0f0;--color-fill-green-secondary:#f0fff0;--color-fill-orange-secondary:#fffaf6;--color-fill-red-secondary:#fff0f5;--color-figure-blue:#36f;--color-figure-gray:#000;--color-figure-gray-secondary:#666;--color-figure-gray-secondary-alt:#666;--color-figure-gray-tertiary:#666;--color-figure-green:green;--color-figure-light-gray:#666;--color-figure-orange:#c30;--color-figure-red:red;--color-tutorials-teal:#000;--color-article-background:var(--color-fill-tertiary);--color-article-body-background:var(--color-fill);--color-aside-deprecated:var(--color-figure-gray);--color-aside-deprecated-background:var(--color-fill-orange-secondary);--color-aside-deprecated-border:var(--color-figure-orange);--color-aside-experiment:var(--color-figure-gray);--color-aside-experiment-background:var(--color-fill-gray-secondary);--color-aside-experiment-border:var(--color-figure-light-gray);--color-aside-important:var(--color-figure-gray);--color-aside-important-background:var(--color-fill-gray-secondary);--color-aside-important-border:var(--color-figure-light-gray);--color-aside-note:var(--color-figure-gray);--color-aside-note-background:var(--color-fill-gray-secondary);--color-aside-note-border:var(--color-figure-light-gray);--color-aside-tip:var(--color-figure-gray);--color-aside-tip-background:var(--color-fill-gray-secondary);--color-aside-tip-border:var(--color-figure-light-gray);--color-aside-warning:var(--color-figure-gray);--color-aside-warning-background:var(--color-fill-red-secondary);--color-aside-warning-border:var(--color-figure-red);--color-badge-default:var(--color-figure-light-gray);--color-badge-beta:var(--color-figure-gray-tertiary);--color-badge-deprecated:var(--color-figure-orange);--color-badge-dark-default:#fff;--color-badge-dark-beta:#b0b0b0;--color-badge-dark-deprecated:#f60;--color-button-background:var(--color-fill-blue);--color-button-background-active:#36f;--color-button-background-hover:var(--color-figure-blue);--color-button-text:#fff;--color-call-to-action-background:var(--color-fill-secondary);--color-changes-added:var(--color-figure-light-gray);--color-changes-added-hover:var(--color-figure-light-gray);--color-changes-deprecated:var(--color-figure-light-gray);--color-changes-deprecated-hover:var(--color-figure-light-gray);--color-changes-modified:var(--color-figure-light-gray);--color-changes-modified-hover:var(--color-figure-light-gray);--color-changes-modified-previous-background:var(--color-fill);--color-code-background:var(--color-fill-secondary);--color-code-collapsible-background:var(--color-fill-tertiary);--color-code-collapsible-text:var(--color-figure-gray-secondary-alt);--color-code-line-highlight:rgba(51,102,255,0.08);--color-code-line-highlight-border:var(--color-figure-blue);--color-code-plain:var(--color-figure-gray);--color-dropdown-background:hsla(0,0%,100%,0.8);--color-dropdown-border:#ccc;--color-dropdown-option-text:#666;--color-dropdown-text:#000;--color-dropdown-dark-background:hsla(0,0%,100%,0.1);--color-dropdown-dark-border:hsla(0,0%,94.1%,0.2);--color-dropdown-dark-option-text:#ccc;--color-dropdown-dark-text:#fff;--color-eyebrow:var(--color-figure-gray-secondary);--color-focus-border-color:var(--color-fill-blue);--color-focus-color:rgba(0,125,250,0.6);--color-form-error:var(--color-figure-red);--color-form-error-background:var(--color-fill-red-secondary);--color-form-valid:var(--color-figure-green);--color-form-valid-background:var(--color-fill-green-secondary);--color-generic-modal-background:var(--color-fill);--color-grid:var(--color-fill-gray);--color-header-text:var(--color-figure-gray);--color-hero-eyebrow:#ccc;--color-link:var(--color-figure-blue);--color-loading-placeholder-background:var(--color-fill);--color-nav-color:#666;--color-nav-current-link:rgba(0,0,0,0.6);--color-nav-expanded:#fff;--color-nav-hierarchy-collapse-background:#f0f0f0;--color-nav-hierarchy-collapse-borders:#ccc;--color-nav-hierarchy-item-borders:#ccc;--color-nav-keyline:rgba(0,0,0,0.2);--color-nav-link-color:#000;--color-nav-link-color-hover:#36f;--color-nav-outlines:#ccc;--color-nav-rule:hsla(0,0%,94.1%,0.5);--color-nav-solid-background:#fff;--color-nav-sticking-expanded-keyline:rgba(0,0,0,0.1);--color-nav-stuck:hsla(0,0%,100%,0.9);--color-nav-uiblur-expanded:hsla(0,0%,100%,0.9);--color-nav-uiblur-stuck:hsla(0,0%,100%,0.7);--color-nav-root-subhead:var(--color-tutorials-teal);--color-nav-dark-border-top-color:hsla(0,0%,100%,0.4);--color-nav-dark-color:#b0b0b0;--color-nav-dark-current-link:hsla(0,0%,100%,0.6);--color-nav-dark-expanded:#2a2a2a;--color-nav-dark-hierarchy-collapse-background:#424242;--color-nav-dark-hierarchy-collapse-borders:#666;--color-nav-dark-hierarchy-item-borders:#424242;--color-nav-dark-keyline:rgba(66,66,66,0.95);--color-nav-dark-link-color:#fff;--color-nav-dark-link-color-hover:#09f;--color-nav-dark-outlines:#575757;--color-nav-dark-rule:#575757;--color-nav-dark-solid-background:#000;--color-nav-dark-sticking-expanded-keyline:rgba(66,66,66,0.7);--color-nav-dark-stuck:rgba(42,42,42,0.9);--color-nav-dark-uiblur-expanded:rgba(42,42,42,0.9);--color-nav-dark-uiblur-stuck:rgba(42,42,42,0.7);--color-nav-dark-root-subhead:#fff;--color-runtime-preview-background:var(--color-fill-tertiary);--color-runtime-preview-disabled-text:hsla(0,0%,40%,0.6);--color-runtime-preview-text:var(--color-figure-gray-secondary);--color-secondary-label:var(--color-figure-gray-secondary);--color-step-background:var(--color-fill-secondary);--color-step-caption:var(--color-figure-gray-secondary);--color-step-focused:var(--color-figure-light-gray);--color-step-text:var(--color-figure-gray-secondary);--color-svg-icon:#666;--color-syntax-addition:var(--color-figure-green);--color-syntax-attributes:#947100;--color-syntax-characters:#272ad8;--color-syntax-comments:#707f8c;--color-syntax-deletion:var(--color-figure-red);--color-syntax-documentation-markup:#506375;--color-syntax-documentation-markup-keywords:#506375;--color-syntax-heading:#ba2da2;--color-syntax-keywords:#ad3da4;--color-syntax-marks:#000;--color-syntax-numbers:#272ad8;--color-syntax-other-class-names:#703daa;--color-syntax-other-constants:#4b21b0;--color-syntax-other-declarations:#047cb0;--color-syntax-other-function-and-method-names:#4b21b0;--color-syntax-other-instance-variables-and-globals:#703daa;--color-syntax-other-preprocessor-macros:#78492a;--color-syntax-other-type-names:#703daa;--color-syntax-param-internal-name:#404040;--color-syntax-plain-text:#000;--color-syntax-preprocessor-statements:#78492a;--color-syntax-project-class-names:#3e8087;--color-syntax-project-constants:#2d6469;--color-syntax-project-function-and-method-names:#2d6469;--color-syntax-project-instance-variables-and-globals:#3e8087;--color-syntax-project-preprocessor-macros:#78492a;--color-syntax-project-type-names:#3e8087;--color-syntax-strings:#d12f1b;--color-syntax-type-declarations:#03638c;--color-syntax-urls:#1337ff;--color-tabnav-item-border-color:var(--color-fill-gray);--color-text:var(--color-figure-gray);--color-text-background:var(--color-fill);--color-tutorial-assessments-background:var(--color-fill-secondary);--color-tutorial-background:var(--color-fill);--color-tutorial-navbar-dropdown-background:var(--color-fill);--color-tutorial-navbar-dropdown-border:var(--color-fill-gray);--color-tutorial-quiz-border-active:var(--color-figure-blue);--color-tutorials-overview-background:#161616;--color-tutorials-overview-content:#fff;--color-tutorials-overview-content-alt:#fff;--color-tutorials-overview-eyebrow:#ccc;--color-tutorials-overview-icon:#b0b0b0;--color-tutorials-overview-link:#09f;--color-tutorials-overview-navigation-link:#ccc;--color-tutorials-overview-navigation-link-active:#fff;--color-tutorials-overview-navigation-link-hover:#fff;--color-tutorial-hero-text:#fff;--color-tutorial-hero-background:#000;--color-navigator-item-hover:rgba(0,0,255,0.05);--color-card-background:var(--color-fill);--color-card-content-text:var(--color-figure-gray);--color-card-eyebrow:var(--color-figure-gray-secondary-alt);--color-card-shadow:rgba(0,0,0,0.04);--color-link-block-card-border:rgba(0,0,0,0.04);--color-standard-red:#8b0000;--color-standard-orange:#8b4000;--color-standard-yellow:#8f7200;--color-standard-blue:#002d75;--color-standard-green:#023b2d;--color-standard-purple:#512b55;--color-standard-gray:#2a2a2a}@media screen{body[data-color-scheme=dark]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5);--color-card-shadow:hsla(0,0%,100%,0.04);--color-link-block-card-border:hsla(0,0%,100%,0.25)}}@media screen and (prefers-color-scheme:dark){body[data-color-scheme=auto]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5);--color-card-shadow:hsla(0,0%,100%,0.04);--color-link-block-card-border:hsla(0,0%,100%,0.25)}}#main{outline-style:none}:root{--app-height:100vh}[data-v-7d594ed9] :focus:not(input):not(textarea):not(select){outline:none}.fromkeyboard[data-v-7d594ed9] :focus:not(input):not(textarea):not(select){outline:4px solid var(--color-focus-color);outline-offset:1px}#app[data-v-7d594ed9]{display:flex;flex-flow:column;min-height:100%}#app[data-v-7d594ed9]>*{min-width:0}#app .router-content[data-v-7d594ed9]{flex:1}.container[data-v-1f05d9ec]{margin-left:auto;margin-right:auto;width:980px;outline-style:none;margin-top:92px;margin-bottom:140px}@media only screen and (max-width:1250px){.container[data-v-1f05d9ec]{width:692px}}@media only screen and (max-width:735px){.container[data-v-1f05d9ec]{width:87.5%}}@media only screen and (max-width:320px){.container[data-v-1f05d9ec]{width:215px}}.error-content[data-v-1f05d9ec]{box-sizing:border-box;width:502px;margin-left:auto;margin-right:auto;margin-bottom:54px}@media only screen and (max-width:1250px){.error-content[data-v-1f05d9ec]{width:420px;margin-bottom:45px}}@media only screen and (max-width:735px){.error-content[data-v-1f05d9ec]{max-width:330px;width:auto;margin-bottom:35px}}.title[data-v-1f05d9ec]{text-align:center;font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.title[data-v-1f05d9ec]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-1f05d9ec]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}} \ No newline at end of file diff --git a/docs/css/index.d5b499b0.css b/docs/css/index.d5b499b0.css deleted file mode 100644 index 41ab3dd..0000000 --- a/docs/css/index.d5b499b0.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.color-scheme-toggle[data-v-8890c4d6]{--toggle-color-fill:var(--color-button-background);--toggle-color-text:var(--color-fill-blue);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);border:1px solid var(--toggle-color-fill);border-radius:var(--toggle-border-radius-outer,var(--border-radius,4px));display:inline-flex;padding:1px}@media screen{[data-color-scheme=dark] .color-scheme-toggle[data-v-8890c4d6]{--toggle-color-text:var(--color-figure-blue)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .color-scheme-toggle[data-v-8890c4d6]{--toggle-color-text:var(--color-figure-blue)}}@media print{.color-scheme-toggle[data-v-8890c4d6]{display:none}}input[data-v-8890c4d6]{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.fromkeyboard label[data-v-8890c4d6]:focus-within{outline:4px solid var(--color-focus-color);outline-offset:1px}.text[data-v-8890c4d6]{border:1px solid transparent;border-radius:var(--toggle-border-radius-inner,2px);color:var(--toggle-color-text);display:inline-block;text-align:center;padding:1px 6px;min-width:42px;box-sizing:border-box}.text[data-v-8890c4d6]:hover{cursor:pointer}input:checked+.text[data-v-8890c4d6]{--toggle-color-text:var(--color-button-text);background:var(--toggle-color-fill);border-color:var(--toggle-color-fill)}.footer[data-v-72f2e2dc]{border-top:1px solid var(--color-grid)}.row[data-v-72f2e2dc]{margin-left:auto;margin-right:auto;width:980px;display:flex;flex-direction:row-reverse;padding:20px 0}@media only screen and (max-width:1250px){.row[data-v-72f2e2dc]{width:692px}}@media only screen and (max-width:735px){.row[data-v-72f2e2dc]{width:87.5%;width:100%;padding:20px .94118rem;box-sizing:border-box}}.InitialLoadingPlaceholder[data-v-35c356b6]{background:var(--colors-loading-placeholder-background,var(--color-loading-placeholder-background));height:100vh;width:100%}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;background-color:var(--colors-text-background,var(--color-text-background));height:100%}abbr,blockquote,body,button,dd,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hgroup,input,legend,li,ol,p,pre,ul{margin:0;padding:0}address,caption,code,figcaption,pre,th{font-size:1em;font-weight:400;font-style:normal}fieldset,iframe,img{border:0}caption,th{text-align:left}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}button{background:none;border:0;box-sizing:content-box;color:inherit;cursor:pointer;font:inherit;line-height:inherit;overflow:visible;vertical-align:inherit}button:disabled{cursor:default}:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}::-moz-focus-inner{border:0;padding:0}@media print{#content,#main,body{color:#000}a,a:link,a:visited{color:#000;text-decoration:none}.hide,.noprint{display:none}}body{height:100%;min-width:320px}html{font:var(--typography-html-font,17px "Helvetica Neue","Helvetica","Arial",sans-serif);quotes:"“" "”"}body{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);background-color:var(--color-text-background);color:var(--colors-text,var(--color-text));font-style:normal;word-wrap:break-word}body,button,input,select,textarea{font-synthesis:none;-moz-font-feature-settings:"kern";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}h1,h2,h3,h4,h5,h6{color:var(--colors-header-text,var(--color-header-text))}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}ol+h1,ol+h2,ol+h3,ol+h4,ol+h5,ol+h6,p+h1,p+h2,p+h3,p+h4,p+h5,p+h6,ul+h1,ul+h2,ul+h3,ul+h4,ul+h5,ul+h6{margin-top:1.6em}ol+*,p+*,ul+*{margin-top:.8em}ol,ul{margin-left:1.17647em}ol ol,ol ul,ul ol,ul ul{margin-top:0;margin-bottom:0}nav ol,nav ul{margin:0;list-style:none}li li{font-size:1em}a{color:var(--colors-link,var(--color-link))}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}p+a{display:inline-block}b,strong{font-weight:600}cite,dfn,em,i{font-style:italic}sup{font-size:.6em;vertical-align:top;position:relative;bottom:-.2em}h1 sup,h2 sup,h3 sup{font-size:.4em}sup a{vertical-align:inherit;color:inherit}sup a:hover{color:var(--figure-blue);text-decoration:none}sub{line-height:1}abbr{border:0}pre{overflow:auto;-webkit-overflow-scrolling:auto;white-space:pre;word-wrap:normal}code{font-family:var(--typography-html-font-mono,Menlo,monospace);font-weight:inherit;letter-spacing:0}.syntax-comment{color:var(--syntax-comment,var(--color-syntax-comments))}.syntax-quote{color:var(--syntax-quote,var(--color-syntax-comments))}.syntax-keyword{color:var(--syntax-keyword,var(--color-syntax-keywords))}.syntax-literal{color:var(--syntax-literal,var(--color-syntax-keywords))}.syntax-selector-tag{color:var(--syntax-selector-tag,var(--color-syntax-keywords))}.syntax-string{color:var(--syntax-string,var(--color-syntax-strings))}.syntax-bullet{color:var(--syntax-bullet,var(--color-syntax-characters))}.syntax-meta{color:var(--syntax-meta,var(--color-syntax-characters))}.syntax-number{color:var(--syntax-number,var(--color-syntax-characters))}.syntax-symbol{color:var(--syntax-symbol,var(--color-syntax-characters))}.syntax-tag{color:var(--syntax-tag,var(--color-syntax-characters))}.syntax-attr{color:var(--syntax-attr,var(--color-syntax-other-type-names))}.syntax-built_in{color:var(--syntax-built_in,var(--color-syntax-other-type-names))}.syntax-builtin-name{color:var(--syntax-builtin-name,var(--color-syntax-other-type-names))}.syntax-class{color:var(--syntax-class,var(--color-syntax-other-type-names))}.syntax-params{color:var(--syntax-params,var(--color-syntax-other-type-names))}.syntax-section{color:var(--syntax-section,var(--color-syntax-other-type-names))}.syntax-title{color:var(--syntax-title,var(--color-syntax-other-type-names))}.syntax-type{color:var(--syntax-type,var(--color-syntax-other-type-names))}.syntax-attribute{color:var(--syntax-attribute,var(--color-syntax-plain-text))}.syntax-identifier{color:var(--syntax-identifier,var(--color-syntax-plain-text))}.syntax-subst{color:var(--syntax-subst,var(--color-syntax-plain-text))}.syntax-doctag,.syntax-strong{font-weight:700}.syntax-emphasis,.syntax-link{font-style:italic}[data-syntax=swift] .syntax-meta{color:var(--syntax-meta,var(--color-syntax-keywords))}[data-syntax=swift] .syntax-class,[data-syntax=swift] .syntax-keyword+.syntax-params,[data-syntax=swift] .syntax-params+.syntax-params{color:unset}[data-syntax=json] .syntax-attr{color:var(--syntax-attr,var(--color-syntax-strings))}#skip-nav{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}#skip-nav:active,#skip-nav:focus{position:relative;float:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;color:var(--color-figure-blue);font-size:1em;padding:0 10px;z-index:100000;top:0;left:0;height:44px;line-height:44px;-webkit-clip-path:unset;clip-path:unset}.nav--in-breakpoint-range #skip-nav{display:none}.visuallyhidden{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}@-webkit-keyframes pulse{0%{opacity:0}33%{opacity:1}66%{opacity:1}to{opacity:0}}@keyframes pulse{0%{opacity:0}33%{opacity:1}66%{opacity:1}to{opacity:0}}.changed{border:1px solid var(--color-changes-modified);border-radius:var(--border-radius,4px);position:relative}.changed.has-multiple-lines,.has-multiple-lines .changed{border-radius:var(--border-radius,4px)}.changed:after{left:8px;background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:8px;position:absolute;top:0;width:1.17647rem;height:1.17647rem;margin-top:.61765rem;z-index:2}@media screen{[data-color-scheme=dark] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.changed-added{border-color:var(--color-changes-added)}.changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.changed-deprecated{border-color:var(--color-changes-deprecated)}.changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.changed.link-block:after,.changed.relationships-item:after,.link-block .changed:after{margin-top:10px}.change-added,.change-removed{padding:2px 0}.change-removed{background-color:var(--color-highlight-red)}.change-added{background-color:var(--color-highlight-green)}body{color-scheme:light dark}body[data-color-scheme=light]{color-scheme:light}body[data-color-scheme=dark]{color-scheme:dark}body{--color-fill:#fff;--color-fill-secondary:#f7f7f7;--color-fill-tertiary:#f0f0f0;--color-fill-quaternary:#282828;--color-fill-blue:#00f;--color-fill-light-blue-secondary:#d1d1ff;--color-fill-gray:#ccc;--color-fill-gray-secondary:#f5f5f5;--color-fill-gray-tertiary:#f0f0f0;--color-fill-gray-quaternary:#f0f0f0;--color-fill-green-secondary:#f0fff0;--color-fill-orange-secondary:#fffaf6;--color-fill-red-secondary:#fff0f5;--color-figure-blue:#36f;--color-figure-gray:#000;--color-figure-gray-secondary:#666;--color-figure-gray-secondary-alt:#666;--color-figure-gray-tertiary:#666;--color-figure-green:green;--color-figure-light-gray:#666;--color-figure-orange:#c30;--color-figure-red:red;--color-tutorials-teal:#000;--color-article-background:var(--color-fill-tertiary);--color-article-body-background:var(--color-fill);--color-aside-deprecated:var(--color-figure-gray);--color-aside-deprecated-background:var(--color-fill-orange-secondary);--color-aside-deprecated-border:var(--color-figure-orange);--color-aside-experiment:var(--color-figure-gray);--color-aside-experiment-background:var(--color-fill-gray-secondary);--color-aside-experiment-border:var(--color-figure-light-gray);--color-aside-important:var(--color-figure-gray);--color-aside-important-background:var(--color-fill-gray-secondary);--color-aside-important-border:var(--color-figure-light-gray);--color-aside-note:var(--color-figure-gray);--color-aside-note-background:var(--color-fill-gray-secondary);--color-aside-note-border:var(--color-figure-light-gray);--color-aside-tip:var(--color-figure-gray);--color-aside-tip-background:var(--color-fill-gray-secondary);--color-aside-tip-border:var(--color-figure-light-gray);--color-aside-warning:var(--color-figure-gray);--color-aside-warning-background:var(--color-fill-red-secondary);--color-aside-warning-border:var(--color-figure-red);--color-badge-default:var(--color-figure-light-gray);--color-badge-beta:var(--color-figure-gray-tertiary);--color-badge-deprecated:var(--color-figure-orange);--color-badge-dark-default:#fff;--color-badge-dark-beta:#b0b0b0;--color-badge-dark-deprecated:#f60;--color-button-background:var(--color-fill-blue);--color-button-background-active:#36f;--color-button-background-hover:var(--color-figure-blue);--color-button-text:#fff;--color-call-to-action-background:var(--color-fill-secondary);--color-changes-added:var(--color-figure-light-gray);--color-changes-added-hover:var(--color-figure-light-gray);--color-changes-deprecated:var(--color-figure-light-gray);--color-changes-deprecated-hover:var(--color-figure-light-gray);--color-changes-modified:var(--color-figure-light-gray);--color-changes-modified-hover:var(--color-figure-light-gray);--color-changes-modified-previous-background:var(--color-fill);--color-code-background:var(--color-fill-secondary);--color-code-collapsible-background:var(--color-fill-tertiary);--color-code-collapsible-text:var(--color-figure-gray-secondary-alt);--color-code-line-highlight:rgba(51,102,255,0.08);--color-code-line-highlight-border:var(--color-figure-blue);--color-code-plain:var(--color-figure-gray);--color-dropdown-background:hsla(0,0%,100%,0.8);--color-dropdown-border:#ccc;--color-dropdown-option-text:#666;--color-dropdown-text:#000;--color-dropdown-dark-background:hsla(0,0%,100%,0.1);--color-dropdown-dark-border:hsla(0,0%,94.1%,0.2);--color-dropdown-dark-option-text:#ccc;--color-dropdown-dark-text:#fff;--color-eyebrow:var(--color-figure-gray-secondary);--color-focus-border-color:var(--color-fill-blue);--color-focus-color:rgba(0,125,250,0.6);--color-form-error:var(--color-figure-red);--color-form-error-background:var(--color-fill-red-secondary);--color-form-valid:var(--color-figure-green);--color-form-valid-background:var(--color-fill-green-secondary);--color-generic-modal-background:var(--color-fill);--color-grid:var(--color-fill-gray);--color-header-text:var(--color-figure-gray);--color-hero-eyebrow:#ccc;--color-link:var(--color-figure-blue);--color-loading-placeholder-background:var(--color-fill);--color-nav-color:#666;--color-nav-current-link:rgba(0,0,0,0.6);--color-nav-expanded:#fff;--color-nav-hierarchy-collapse-background:#f0f0f0;--color-nav-hierarchy-collapse-borders:#ccc;--color-nav-hierarchy-item-borders:#ccc;--color-nav-keyline:rgba(0,0,0,0.2);--color-nav-link-color:#000;--color-nav-link-color-hover:#36f;--color-nav-outlines:#ccc;--color-nav-rule:hsla(0,0%,94.1%,0.5);--color-nav-solid-background:#fff;--color-nav-sticking-expanded-keyline:rgba(0,0,0,0.1);--color-nav-stuck:hsla(0,0%,100%,0.9);--color-nav-uiblur-expanded:hsla(0,0%,100%,0.9);--color-nav-uiblur-stuck:hsla(0,0%,100%,0.7);--color-nav-root-subhead:var(--color-tutorials-teal);--color-nav-dark-border-top-color:hsla(0,0%,100%,0.4);--color-nav-dark-color:#b0b0b0;--color-nav-dark-current-link:hsla(0,0%,100%,0.6);--color-nav-dark-expanded:#2a2a2a;--color-nav-dark-hierarchy-collapse-background:#424242;--color-nav-dark-hierarchy-collapse-borders:#666;--color-nav-dark-hierarchy-item-borders:#424242;--color-nav-dark-keyline:rgba(66,66,66,0.95);--color-nav-dark-link-color:#fff;--color-nav-dark-link-color-hover:#09f;--color-nav-dark-outlines:#575757;--color-nav-dark-rule:#575757;--color-nav-dark-solid-background:#000;--color-nav-dark-sticking-expanded-keyline:rgba(66,66,66,0.7);--color-nav-dark-stuck:rgba(42,42,42,0.9);--color-nav-dark-uiblur-expanded:rgba(42,42,42,0.9);--color-nav-dark-uiblur-stuck:rgba(42,42,42,0.7);--color-nav-dark-root-subhead:#fff;--color-runtime-preview-background:var(--color-fill-tertiary);--color-runtime-preview-disabled-text:hsla(0,0%,40%,0.6);--color-runtime-preview-text:var(--color-figure-gray-secondary);--color-secondary-label:var(--color-figure-gray-secondary);--color-step-background:var(--color-fill-secondary);--color-step-caption:var(--color-figure-gray-secondary);--color-step-focused:var(--color-figure-light-gray);--color-step-text:var(--color-figure-gray-secondary);--color-svg-icon:#666;--color-syntax-attributes:#947100;--color-syntax-characters:#272ad8;--color-syntax-comments:#707f8c;--color-syntax-documentation-markup:#506375;--color-syntax-documentation-markup-keywords:#506375;--color-syntax-heading:#ba2da2;--color-syntax-keywords:#ad3da4;--color-syntax-marks:#000;--color-syntax-numbers:#272ad8;--color-syntax-other-class-names:#703daa;--color-syntax-other-constants:#4b21b0;--color-syntax-other-declarations:#047cb0;--color-syntax-other-function-and-method-names:#4b21b0;--color-syntax-other-instance-variables-and-globals:#703daa;--color-syntax-other-preprocessor-macros:#78492a;--color-syntax-other-type-names:#703daa;--color-syntax-param-internal-name:#404040;--color-syntax-plain-text:#000;--color-syntax-preprocessor-statements:#78492a;--color-syntax-project-class-names:#3e8087;--color-syntax-project-constants:#2d6469;--color-syntax-project-function-and-method-names:#2d6469;--color-syntax-project-instance-variables-and-globals:#3e8087;--color-syntax-project-preprocessor-macros:#78492a;--color-syntax-project-type-names:#3e8087;--color-syntax-strings:#d12f1b;--color-syntax-type-declarations:#03638c;--color-syntax-urls:#1337ff;--color-tabnav-item-border-color:var(--color-fill-gray);--color-text:var(--color-figure-gray);--color-text-background:var(--color-fill);--color-tutorial-assessments-background:var(--color-fill-secondary);--color-tutorial-background:var(--color-fill);--color-tutorial-navbar-dropdown-background:var(--color-fill);--color-tutorial-navbar-dropdown-border:var(--color-fill-gray);--color-tutorial-quiz-border-active:var(--color-figure-blue);--color-tutorials-overview-background:#161616;--color-tutorials-overview-content:#fff;--color-tutorials-overview-content-alt:#fff;--color-tutorials-overview-eyebrow:#ccc;--color-tutorials-overview-icon:#b0b0b0;--color-tutorials-overview-link:#09f;--color-tutorials-overview-navigation-link:#ccc;--color-tutorials-overview-navigation-link-active:#fff;--color-tutorials-overview-navigation-link-hover:#fff;--color-tutorial-hero-text:#fff;--color-tutorial-hero-background:#000;--color-navigator-item-hover:rgba(0,0,255,0.05);--color-card-background:var(--color-fill);--color-card-content-text:var(--color-figure-gray);--color-card-eyebrow:var(--color-figure-gray-secondary-alt);--color-card-shadow:rgba(0,0,0,0.04)}@media screen{body[data-color-scheme=dark]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5);--color-card-shadow:hsla(0,0%,100%,0.04)}}@media screen and (prefers-color-scheme:dark){body[data-color-scheme=auto]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5);--color-card-shadow:hsla(0,0%,100%,0.04)}}#main{outline-style:none}:root{--app-height:100vh}[data-v-0a4c340a] :focus:not(input):not(textarea):not(select){outline:none}.fromkeyboard[data-v-0a4c340a] :focus:not(input):not(textarea):not(select){outline:4px solid var(--color-focus-color);outline-offset:1px}#app[data-v-0a4c340a]{display:flex;flex-flow:column;min-height:100%}#app[data-v-0a4c340a]>*{min-width:0}#app .router-content[data-v-0a4c340a]{flex:1}.container[data-v-790053de]{margin-left:auto;margin-right:auto;width:980px;outline-style:none;margin-top:92px;margin-bottom:140px}@media only screen and (max-width:1250px){.container[data-v-790053de]{width:692px}}@media only screen and (max-width:735px){.container[data-v-790053de]{width:87.5%}}.error-content[data-v-790053de]{box-sizing:border-box;width:502px;margin-left:auto;margin-right:auto;margin-bottom:54px}@media only screen and (max-width:1250px){.error-content[data-v-790053de]{width:420px;margin-bottom:45px}}@media only screen and (max-width:735px){.error-content[data-v-790053de]{max-width:330px;width:auto;margin-bottom:35px}}.title[data-v-790053de]{text-align:center;font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.title[data-v-790053de]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-790053de]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}} \ No newline at end of file diff --git a/docs/css/topic.726a35dc.css b/docs/css/topic.726a35dc.css deleted file mode 100644 index b2d8490..0000000 --- a/docs/css/topic.726a35dc.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.nav-title-content[data-v-854b4dd6]{max-width:100%}.title[data-v-854b4dd6]{color:var(--color-nav-root-title,currentColor);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-854b4dd6]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-854b4dd6]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-854b4dd6]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-854b4dd6]{color:var(--color-nav-dark-root-subhead)}.mobile-dropdown[data-v-154acfbd]{box-sizing:border-box}.nav--in-breakpoint-range .mobile-dropdown[data-v-154acfbd]{padding-left:.23529rem;padding-right:.23529rem}.mobile-dropdown ul[data-v-154acfbd]{list-style:none}.mobile-dropdown .option[data-v-154acfbd]{cursor:pointer;font-size:.70588rem;padding:.5rem 0;display:block;text-decoration:none;color:inherit}.mobile-dropdown .option[data-v-154acfbd]:focus{outline-offset:0}.mobile-dropdown .option.depth1[data-v-154acfbd]{padding-left:.47059rem}.active[data-v-154acfbd],.tutorial.router-link-active[data-v-154acfbd]{font-weight:600}.active[data-v-154acfbd]:focus,.tutorial.router-link-active[data-v-154acfbd]:focus{outline:none}.chapter-list[data-v-154acfbd]:not(:first-child){margin-top:1rem}.chapter-name[data-v-154acfbd],.tutorial[data-v-154acfbd]{padding:.5rem 0;font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.section-list[data-v-154acfbd],.tutorial-list[data-v-154acfbd]{padding:0 .58824rem}.chapter-list:last-child .tutorial-list[data-v-154acfbd]:last-child{padding-bottom:10em}.chapter-list[data-v-154acfbd]{display:inline-block}.form-element[data-v-998803d8]{position:relative}.form-dropdown[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:block;box-sizing:border-box;width:100%;height:3.3em;color:var(--color-dropdown-text);padding:1.11765rem 2.35294rem 0 .94118rem;text-align:left;border:1px solid var(--color-dropdown-border);border-radius:var(--border-radius,4px);background-clip:padding-box;margin-bottom:.82353rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;min-height:32px}.form-dropdown[data-v-998803d8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown.no-eyebrow[data-v-998803d8]{padding-top:0}.form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-text)}.form-dropdown[data-v-998803d8]::-ms-expand{opacity:0}.form-dropdown~.form-icon[data-v-998803d8]{position:absolute;display:block;pointer-events:none;fill:var(--color-figure-gray-tertiary);right:14px;width:13px;height:auto;top:50%;transform:translateY(-50%)}.is-open .form-dropdown~.form-icon[data-v-998803d8]{transform:translateY(-50%) scale(-1)}@media only screen and (max-width:735px){.form-dropdown~.form-icon[data-v-998803d8]{right:14px}}.form-dropdown~.form-label[data-v-998803d8]{font-size:.70588rem;line-height:1.75;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);position:absolute;top:.47059rem;left:17px;color:var(--color-figure-gray-secondary);pointer-events:none;padding:0;z-index:1}.form-dropdown[data-v-998803d8] option{color:var(--color-dropdown-text)}.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.form-dropdown-selectnone~.form-label[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);top:19px;left:17px;color:var(--color-figure-gray-tertiary)}.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.form-dropdown-selectnone[data-v-998803d8]::-ms-value{display:none}.theme-dark .form-dropdown[data-v-998803d8]{color:var(--color-dropdown-dark-text);background-color:var(--color-dropdown-dark-background);border-color:var(--color-dropdown-dark-border)}.theme-dark .form-dropdown~.form-label[data-v-998803d8]{color:#ccc}.theme-dark .form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-dark-text)}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.theme-dark .form-dropdown-selectnone~.form-label[data-v-998803d8]{color:#b0b0b0}.dropdown-small[data-v-12dd746a]{height:30px;display:flex;align-items:center;position:relative;background:var(--color-fill)}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]{line-height:1.5;font-size:12px;padding-top:0;padding-bottom:0;padding-left:20px;min-height:unset;height:30px;display:flex;align-items:center}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:none;border-color:var(--color-dropdown-border)}.fromkeyboard .dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:0 0 0 2px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown-toggle[data-v-12dd746a]{margin:0}.is-open .form-dropdown-toggle[data-v-12dd746a]{border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0;border-bottom:none;padding-bottom:1px}.fromkeyboard .is-open .form-dropdown-toggle[data-v-12dd746a]{box-shadow:1px -1px 0 1px var(--color-focus-color),-1px -1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color)}.form-dropdown-title[data-v-12dd746a]{margin:0;padding:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dropdown-custom[data-v-12dd746a]{border-radius:var(--border-radius,4px)}.dropdown-custom.is-open[data-v-12dd746a]{border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0}.dropdown-custom[data-v-12dd746a] .form-dropdown-content{background:var(--color-fill);position:absolute;right:0;left:0;top:100%;border-bottom-left-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px);border:1px solid var(--color-dropdown-border);border-top:none;display:none;overflow-y:auto}.dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{display:block}.fromkeyboard .dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{box-shadow:1px 1px 0 1px var(--color-focus-color),-1px 1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color);border-top-color:transparent}.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 116px - 3.05882rem)}.nav--is-sticking.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 3.05882rem - 72px)}.dropdown-custom[data-v-12dd746a] .options{list-style:none;margin:0;padding:0 0 20px}.dropdown-custom[data-v-12dd746a] .option{cursor:pointer;padding:5px 20px;font-size:12px;line-height:20px;outline:none}.dropdown-custom[data-v-12dd746a] .option:hover{background-color:var(--color-fill-tertiary)}.dropdown-custom[data-v-12dd746a] .option.option-active{font-weight:600}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:hover{background-color:transparent}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:focus{background-color:var(--color-fill-tertiary);outline:none}.tutorial-dropdown[data-v-4a151342]{grid-column:3}.section-tracker[data-v-4a151342]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);margin-left:15px}.tutorial-dropdown[data-v-78dc103f]{grid-column:1/2}.tutorial-dropdown .options[data-v-78dc103f]{padding-top:1rem;padding-bottom:0}.tutorial-dropdown .option[data-v-78dc103f]{padding:5px 20px 5px 30px}.chapter-list[data-v-78dc103f]{padding-bottom:20px}.chapter-name[data-v-78dc103f]{margin:0 20px 5px 20px;line-height:normal;color:var(--color-figure-gray-secondary)}.chevron-icon[data-v-af20c2a0]{padding:0;color:var(--color-nav-outlines);grid-column:2;height:20px;width:20px;margin:0 4px}@media only screen and (min-width:768px){.nav[data-v-af20c2a0] .nav-content{display:grid;grid-template-columns:auto auto 3fr;align-items:center}.nav[data-v-af20c2a0] .nav-menu{padding:0;grid-column:3/5}.nav[data-v-af20c2a0] .nav-menu-item{margin:0}}.dropdown-container[data-v-af20c2a0]{height:3.05882rem;display:grid;grid-template-columns:minmax(230px,285px) auto minmax(230px,1fr);align-items:center}@media only screen and (max-width:1023px){.dropdown-container[data-v-af20c2a0]{grid-template-columns:minmax(173px,216px) auto minmax(173px,1fr)}}.separator[data-v-af20c2a0]{height:20px;border-right:1px solid;border-color:var(--color-nav-outlines);margin:0 20px;grid-column:2}.mobile-dropdown-container[data-v-af20c2a0],.nav--in-breakpoint-range.nav .dropdown-container[data-v-af20c2a0],.nav--in-breakpoint-range.nav .separator[data-v-af20c2a0]{display:none}.nav--in-breakpoint-range.nav .mobile-dropdown-container[data-v-af20c2a0]{display:block}.nav--in-breakpoint-range.nav[data-v-af20c2a0] .nav-title{grid-area:title}.nav--in-breakpoint-range.nav[data-v-af20c2a0] .pre-title{display:none}.nav[data-v-af20c2a0] .nav-title{grid-column:1;width:90%;padding-top:0}.primary-dropdown[data-v-af20c2a0],.secondary-dropdown[data-v-af20c2a0]{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-af20c2a0] .form-dropdown,.primary-dropdown[data-v-af20c2a0] .form-dropdown:focus,.secondary-dropdown[data-v-af20c2a0] .form-dropdown,.secondary-dropdown[data-v-af20c2a0] .form-dropdown:focus{border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-af20c2a0] .options,.secondary-dropdown[data-v-af20c2a0] .options{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}[data-v-3cfe1c35] .code-listing+*,[data-v-3cfe1c35] aside+*,[data-v-3cfe1c35] h2+*,[data-v-3cfe1c35] h3+*,[data-v-3cfe1c35] ol+*,[data-v-3cfe1c35] p+*,[data-v-3cfe1c35] ul+*{margin-top:20px}[data-v-3cfe1c35] ol ol,[data-v-3cfe1c35] ol ul,[data-v-3cfe1c35] ul ol,[data-v-3cfe1c35] ul ul{margin-top:0}[data-v-3cfe1c35] h2{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h2{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-3cfe1c35] h2{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-3cfe1c35] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-3cfe1c35] .code-listing{background:var(--color-code-background);border-color:var(--colors-grid,var(--color-grid));border-style:solid;border-width:1px}[data-v-3cfe1c35] .code-listing pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);padding:20px 0}.columns[data-v-30edf911]{display:grid;grid-template-rows:repeat(2,auto)}.columns.cols-2[data-v-30edf911]{gap:20px 8.33333%;grid-template-columns:repeat(2,1fr)}.columns.cols-3[data-v-30edf911]{gap:20px 4.16667%;grid-template-columns:repeat(3,1fr)}.asset[data-v-30edf911]{align-self:end;grid-row:1}.content[data-v-30edf911]{grid-row:2}@media only screen and (max-width:735px){.columns.cols-2[data-v-30edf911],.columns.cols-3[data-v-30edf911]{grid-template-columns:unset}.asset[data-v-30edf911],.content[data-v-30edf911]{grid-row:auto}}.content-and-media[data-v-3fa44f9e]{display:flex}.content-and-media.media-leading[data-v-3fa44f9e]{flex-direction:row-reverse}.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:row}@media only screen and (min-width:736px){.content-and-media[data-v-3fa44f9e]{align-items:center;justify-content:center}}.content[data-v-3fa44f9e]{width:62.5%}.asset[data-v-3fa44f9e]{width:29.16667%}.media-leading .asset[data-v-3fa44f9e]{margin-right:8.33333%}.media-trailing .asset[data-v-3fa44f9e]{margin-left:8.33333%}@media only screen and (max-width:735px){.content-and-media.media-leading[data-v-3fa44f9e],.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:column}.asset[data-v-3fa44f9e],.content[data-v-3fa44f9e]{width:100%}.media-leading .asset[data-v-3fa44f9e],.media-trailing .asset[data-v-3fa44f9e]{margin:20px 0 0 0}}.group[id][data-v-1f2be54b]{margin-top:20px;padding-top:20px}[data-v-1f2be54b] img,[data-v-1f2be54b] video{display:block;margin:0 auto;max-width:100%}.layout+[data-v-4d5a806e]{margin-top:40px}@media only screen and (max-width:735px){.layout[data-v-4d5a806e]:first-child>:not(.group[id]){margin-top:40px}}.body[data-v-6499e2f2]{background:var(--colors-text-background,var(--color-article-body-background));margin-left:auto;margin-right:auto;width:980px;border-radius:10px;transform:translateY(-120px)}@media only screen and (max-width:1250px){.body[data-v-6499e2f2]{width:692px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{width:87.5%;border-radius:0;transform:none}}.body[data-v-6499e2f2]~*{margin-top:-40px}.body-content[data-v-6499e2f2]{padding:40px 8.33333% 80px 8.33333%}@media only screen and (max-width:735px){.body-content[data-v-6499e2f2]{padding:0 0 40px 0}}.call-to-action[data-v-2016b288]{padding:65px 0;background:var(--color-call-to-action-background)}.theme-dark .call-to-action[data-v-2016b288]{--color-call-to-action-background:#424242}.row[data-v-2016b288]{margin-left:auto;margin-right:auto;width:980px;display:flex;align-items:center}@media only screen and (max-width:1250px){.row[data-v-2016b288]{width:692px}}@media only screen and (max-width:735px){.row[data-v-2016b288]{width:87.5%}}[data-v-2016b288] img,[data-v-2016b288] video{max-height:560px}h2[data-v-2016b288]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){h2[data-v-2016b288]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){h2[data-v-2016b288]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.label[data-v-2016b288]{display:block;font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:.4em;color:var(--color-eyebrow)}@media only screen and (max-width:735px){.label[data-v-2016b288]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-2016b288]{margin-bottom:1.5rem}.right-column[data-v-2016b288]{margin-left:auto}@media only screen and (max-width:735px){.row[data-v-2016b288]{display:block}.col+.col[data-v-2016b288]{margin-top:40px}}@media only screen and (max-width:735px){.call-to-action[data-v-426a965c]{margin-top:0}}.headline[data-v-1898f592]{margin-bottom:.8em}.heading[data-v-1898f592]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-header-text)}@media only screen and (max-width:1250px){.heading[data-v-1898f592]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.heading[data-v-1898f592]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.dark .heading[data-v-1898f592]{color:#fff}.eyebrow[data-v-1898f592]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:block;margin-bottom:.4em;color:var(--color-eyebrow)}@media only screen and (max-width:1250px){.eyebrow[data-v-1898f592]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.metadata[data-v-2fa6f125]{display:flex}.item[data-v-2fa6f125]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;flex-direction:column;justify-content:flex-end;align-items:center;border-right:1px solid #fff;padding:0 27.5px}@media only screen and (max-width:735px){.item[data-v-2fa6f125]{font-size:.64706rem;line-height:1.63636;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:0 8px}}.item[data-v-2fa6f125]:first-of-type{padding-left:0}.item[data-v-2fa6f125]:last-of-type{border:none}@media only screen and (max-width:735px){.item[data-v-2fa6f125]:last-of-type{padding-right:0}}.content[data-v-2fa6f125]{color:#fff}.icon[data-v-2fa6f125]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.icon[data-v-2fa6f125]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.icon[data-v-2fa6f125]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.small-icon[data-v-2fa6f125]{width:1em;height:1em;margin-left:.2rem}.small-icon.xcode-icon[data-v-2fa6f125]{width:.8em;height:.8em}.content-link[data-v-2fa6f125]{display:flex;align-items:center}a[data-v-2fa6f125]{color:var(--colors-link,var(--color-tutorials-overview-link))}.duration[data-v-2fa6f125]{display:flex;align-items:baseline;font-size:2.35294rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.8rem}@media only screen and (max-width:735px){.duration[data-v-2fa6f125]{font-size:1.64706rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.3rem}}.minutes[data-v-2fa6f125]{display:inline-block;font-size:1.64706rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.3rem}@media only screen and (max-width:735px){.minutes[data-v-2fa6f125]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:.8rem}}.item-large-icon[data-v-2fa6f125]{height:2.3rem;max-width:100%}@media only screen and (max-width:735px){.item-large-icon[data-v-2fa6f125]{height:1.5rem;max-width:100%}}.bottom[data-v-2fa6f125]{margin-top:13px}@media only screen and (max-width:735px){.bottom[data-v-2fa6f125]{margin-top:8px}}.hero[data-v-1a8cd6d3]{color:var(--color-tutorial-hero-text);position:relative}.bg[data-v-1a8cd6d3],.hero[data-v-1a8cd6d3]{background-color:var(--color-tutorial-hero-background)}.bg[data-v-1a8cd6d3]{background-position:top;background-repeat:no-repeat;background-size:cover;content:"";height:100%;left:0;opacity:.3;position:absolute;top:0;width:100%}.row[data-v-1a8cd6d3]{margin-left:auto;margin-right:auto;width:980px;padding:80px 0}@media only screen and (max-width:1250px){.row[data-v-1a8cd6d3]{width:692px}}@media only screen and (max-width:735px){.row[data-v-1a8cd6d3]{width:87.5%}}.col[data-v-1a8cd6d3]{z-index:1}[data-v-1a8cd6d3] .eyebrow{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-hero-eyebrow)}@media only screen and (max-width:1250px){[data-v-1a8cd6d3] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.headline[data-v-1a8cd6d3]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:2rem}@media only screen and (max-width:1250px){.headline[data-v-1a8cd6d3]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.headline[data-v-1a8cd6d3]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.intro[data-v-1a8cd6d3]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.intro[data-v-1a8cd6d3]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content+p[data-v-1a8cd6d3]{margin-top:.8em}@media only screen and (max-width:735px){.content+p[data-v-1a8cd6d3]{margin-top:8px}}.call-to-action[data-v-1a8cd6d3]{display:flex;align-items:center}.call-to-action .cta-icon[data-v-1a8cd6d3]{margin-left:.4rem;width:1em;height:1em}.metadata[data-v-1a8cd6d3]{margin-top:2rem}.video-asset[data-v-1a8cd6d3]{display:grid;height:100vh;margin:0;place-items:center center}.video-asset[data-v-1a8cd6d3] video{max-width:1280px;min-width:320px;width:100%}@media only screen and (max-width:735px){.headline[data-v-1a8cd6d3]{margin-bottom:19px}}.tutorial-hero[data-v-35a9482f]{margin-bottom:80px}@media only screen and (max-width:735px){.tutorial-hero[data-v-35a9482f]{margin-bottom:0}}.title[data-v-8ec95972]{font-size:.70588rem;line-height:1.33333;color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-8ec95972],.title[data-v-455ff2a6]{font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.title[data-v-455ff2a6]{font-size:1.11765rem;line-height:1.21053;color:var(--colors-header-text,var(--color-header-text));margin:25px 0}.question-content[data-v-455ff2a6] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.choices[data-v-455ff2a6]{display:flex;flex-direction:column;padding:0;list-style:none;margin:25px 0}.choice[data-v-455ff2a6]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);flex:1;border-radius:var(--border-radius,4px);margin:8px 0;padding:1.5rem 40px;cursor:pointer;background:var(--colors-text-background,var(--color-text-background));display:flex;flex-direction:column;justify-content:center;border-width:1px;border-style:solid;border-color:var(--colors-grid,var(--color-grid));position:relative}.choice[data-v-455ff2a6] img{max-height:23.52941rem}.choice[data-v-455ff2a6]:first-of-type{margin-top:0}.choice[data-v-455ff2a6] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.controls[data-v-455ff2a6]{text-align:center;margin-bottom:40px}.controls .button-cta[data-v-455ff2a6]{margin:.5rem;margin-top:0;padding:.3rem 3rem;min-width:8rem}input[type=radio][data-v-455ff2a6]{position:absolute;width:100%;left:0;height:100%;opacity:0;z-index:-1}.active[data-v-455ff2a6]{border-color:var(--color-tutorial-quiz-border-active);box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.active [data-v-455ff2a6]{color:var(--colors-text,var(--color-text))}.correct[data-v-455ff2a6]{background:var(--color-form-valid-background);border-color:var(--color-form-valid)}.correct .choice-icon[data-v-455ff2a6]{fill:var(--color-form-valid)}.incorrect[data-v-455ff2a6]{background:var(--color-form-error-background);border-color:var(--color-form-error)}.incorrect .choice-icon[data-v-455ff2a6]{fill:var(--color-form-error)}.correct[data-v-455ff2a6],.incorrect[data-v-455ff2a6]{position:relative}.correct .choice-icon[data-v-455ff2a6],.incorrect .choice-icon[data-v-455ff2a6]{position:absolute;top:11px;left:10px;font-size:20px;width:1.05em}.disabled[data-v-455ff2a6]{pointer-events:none}.answer[data-v-455ff2a6]{margin:.5rem 1.5rem .5rem 0;font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.answer[data-v-455ff2a6]:last-of-type{margin-bottom:0}[data-v-455ff2a6] .question>.code-listing{padding:unset;border-radius:0}[data-v-455ff2a6] pre{padding:0}[data-v-455ff2a6] img{display:block;margin-left:auto;margin-right:auto;max-width:100%}.title[data-v-c1de71de]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-header-text,var(--color-header-text))}@media only screen and (max-width:1250px){.title[data-v-c1de71de]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-c1de71de]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title p[data-v-c1de71de]{color:var(--colors-text,var(--color-text))}.assessments[data-v-c1de71de]{box-sizing:content-box;padding:0 1rem;background:var(--color-tutorial-assessments-background);margin-left:auto;margin-right:auto;width:980px;margin-bottom:80px}@media only screen and (max-width:1250px){.assessments[data-v-c1de71de]{width:692px}}@media only screen and (max-width:735px){.assessments[data-v-c1de71de]{width:87.5%}}.banner[data-v-c1de71de]{padding:40px 0;border-bottom:1px solid;margin-bottom:40px;border-color:var(--colors-grid,var(--color-grid));text-align:center}.success[data-v-c1de71de]{text-align:center;padding-bottom:40px;font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-text,var(--color-text))}@media only screen and (max-width:1250px){.success[data-v-c1de71de]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.success[data-v-c1de71de]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.assessments-wrapper[data-v-c1de71de]{padding-top:80px}.assessments-wrapper[data-v-3c94366b]{padding-bottom:40px;padding-top:0}@media only screen and (max-width:735px){.assessments-wrapper[data-v-3c94366b]{padding-top:80px}}.article[data-v-d9f204d0]{background:var(--colors-article-background,var(--color-article-background))}@media only screen and (max-width:735px){.article[data-v-d9f204d0]{background:var(--colors-text-background,var(--color-article-body-background))}}.intro-container[data-v-54daa228]{margin-bottom:80px}.intro[data-v-54daa228]{display:flex;align-items:center}@media only screen and (max-width:735px){.intro[data-v-54daa228]{padding-bottom:0;flex-direction:column}}.intro.ide .media[data-v-54daa228] img{background-color:var(--colors-text-background,var(--color-text-background))}.col.left[data-v-54daa228]{padding-right:40px}@media only screen and (max-width:1250px){.col.left[data-v-54daa228]{padding-right:28px}}@media only screen and (max-width:735px){.col.left[data-v-54daa228]{margin-left:auto;margin-right:auto;width:980px;padding-right:0}}@media only screen and (max-width:735px) and (max-width:1250px){.col.left[data-v-54daa228]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.col.left[data-v-54daa228]{width:87.5%}}.col.right[data-v-54daa228]{padding-left:40px}@media only screen and (max-width:1250px){.col.right[data-v-54daa228]{padding-left:28px}}@media only screen and (max-width:735px){.col.right[data-v-54daa228]{padding-left:0}}.content[data-v-54daa228]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.media[data-v-54daa228] img{width:auto;max-height:560px;min-height:18.82353rem;-o-object-fit:scale-down;object-fit:scale-down}@media only screen and (max-width:735px){.media[data-v-54daa228]{margin:0;margin-top:40px}.media[data-v-54daa228] img,.media[data-v-54daa228] video{max-height:80vh}}.media[data-v-54daa228] .asset{padding:0 20px}.headline[data-v-54daa228]{color:var(--colors-header-text,var(--color-header-text))}[data-v-54daa228] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){[data-v-54daa228] .eyebrow{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-54daa228] .eyebrow a{color:inherit}[data-v-54daa228] .heading{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-54daa228] .heading{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-54daa228] .heading{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.expanded-intro[data-v-54daa228]{margin-left:auto;margin-right:auto;width:980px;margin-top:40px}@media only screen and (max-width:1250px){.expanded-intro[data-v-54daa228]{width:692px}}@media only screen and (max-width:735px){.expanded-intro[data-v-54daa228]{width:87.5%}}[data-v-54daa228] .cols-2{gap:20px 16.66667%}[data-v-54daa228] .cols-3 .column{gap:20px 12.5%}.code-preview[data-v-9acc0234]{position:sticky;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:var(--background,var(--color-step-background));height:calc(100vh - 3.05882rem)}.code-preview.ide[data-v-9acc0234]{height:100vh}.code-preview[data-v-9acc0234] .code-listing{color:var(--text,var(--color-code-plain))}.code-preview[data-v-9acc0234] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.header[data-v-9acc0234]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);position:relative;display:flex;justify-content:space-between;align-items:center;width:-webkit-fill-available;width:-moz-available;width:stretch;cursor:pointer;font-weight:600;padding:8px 12px;border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0;z-index:1;background:var(--color-runtime-preview-background);color:var(--colors-runtime-preview-text,var(--color-runtime-preview-text))}.header[data-v-9acc0234]:focus{outline-style:none}#app.fromkeyboard .header[data-v-9acc0234]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.runtime-preview[data-v-9acc0234]{--color-runtime-preview-shadow:rgba(0,0,0,0.4);position:absolute;top:0;right:0;background:var(--color-runtime-preview-background);border-radius:var(--border-radius,4px);margin:1rem;margin-left:0;transition:width .2s ease-in;box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow)}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-9acc0234]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .runtime-preview[data-v-9acc0234]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@supports not ((width:-webkit-fill-available) or (width:-moz-available) or (width:stretch)){.runtime-preview[data-v-9acc0234]{display:flex;flex-direction:column}}.runtime-preview .runtimve-preview__container[data-v-9acc0234]{border-radius:var(--border-radius,4px);overflow:hidden}.runtime-preview-ide[data-v-9acc0234]{top:0}.runtime-preview-ide .runtime-preview-asset[data-v-9acc0234] img{background-color:var(--color-runtime-preview-background)}.runtime-preview.collapsed[data-v-9acc0234]{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);width:102px}.runtime-preview.collapsed .header[data-v-9acc0234]{border-radius:var(--border-radius,4px)}.runtime-preview.disabled[data-v-9acc0234]{box-shadow:0 0 3px 0 transparent}.runtime-preview.disabled .header[data-v-9acc0234]{color:var(--color-runtime-preview-disabled-text);cursor:auto}.runtime-preview-asset[data-v-9acc0234]{border-radius:0 0 var(--border-radius,4px) var(--border-radius,4px)}.runtime-preview-asset[data-v-9acc0234] img{border-bottom-left-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px)}.preview-icon[data-v-9acc0234]{height:.8em;width:.8em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.preview-show[data-v-9acc0234]{transform:scale(-1)}[data-v-5ad4e037] pre{padding:10px 0}.toggle-preview[data-v-d0709828]{color:var(--color-runtime-preview-disabled-text);display:flex;align-items:center}a[data-v-d0709828]{color:var(--url,var(--color-link))}.toggle-text[data-v-d0709828]{display:flex;align-items:center}svg.toggle-icon[data-v-d0709828]{width:1em;height:1em;margin-left:.5em}.mobile-code-preview[data-v-3bee1128]{background-color:var(--background,var(--color-step-background));padding:14px 0}@media only screen and (max-width:735px){.mobile-code-preview[data-v-3bee1128]{display:flex;flex-direction:column}}.runtime-preview-modal-content[data-v-3bee1128]{padding:45px 60px 0 60px;min-width:200px}.runtime-preview-modal-content[data-v-3bee1128] img:not(.file-icon){border-radius:var(--border-radius,4px);box-shadow:0 0 3px rgba(0,0,0,.4);max-height:80vh;width:auto;display:block;margin-bottom:1rem}.runtime-preview-modal-content .runtime-preview-label[data-v-3bee1128]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-runtime-preview-text);display:block;text-align:center;padding:.5em}[data-v-3bee1128] .code-listing{color:var(--text,var(--color-code-plain))}[data-v-3bee1128] .full-code-listing{padding-top:60px;min-height:calc(100vh - 60px)}[data-v-3bee1128] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.preview-toggle-container[data-v-3bee1128]{align-self:flex-end;margin-right:20px}.step-container[data-v-295730d0]{margin:0}.step-container[data-v-295730d0]:not(:last-child){margin-bottom:100px}@media only screen and (max-width:735px){.step-container[data-v-295730d0]:not(:last-child){margin-bottom:80px}}.step[data-v-295730d0]{position:relative;border-radius:var(--tutorial-step-border-radius,var(--border-radius,4px));padding:1rem 2rem;background-color:var(--color-step-background);overflow:hidden;-webkit-mask-image:-webkit-radial-gradient(#fff,#000)}.step[data-v-295730d0]:before{content:"";position:absolute;top:0;left:0;border:1px solid var(--color-step-focused);background-color:var(--color-step-focused);height:calc(100% - 2px);width:4px;opacity:0;transition:opacity .15s ease-in}.step.focused[data-v-295730d0],.step[data-v-295730d0]:focus{outline:none}.step.focused[data-v-295730d0]:before,.step[data-v-295730d0]:focus:before{opacity:1}@media only screen and (max-width:735px){.step[data-v-295730d0]{padding-left:2rem}.step[data-v-295730d0]:before{opacity:1}}.step-label[data-v-295730d0]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-text,var(--color-step-text));margin-bottom:.4em}.caption[data-v-295730d0]{border-top:1px solid;border-color:var(--color-step-caption);padding:1rem 0 0 0;margin-top:1rem}.media-container[data-v-295730d0]{display:none}@media only screen and (max-width:735px){.step[data-v-295730d0]{margin:0 .58824rem 1.17647rem .58824rem}.step.focused[data-v-295730d0],.step[data-v-295730d0]:focus{outline:none}.media-container[data-v-295730d0]{display:block;position:relative}.media-container[data-v-295730d0] img,.media-container[data-v-295730d0] video{max-height:80vh}[data-v-295730d0] .asset{padding:0 20px}}.steps[data-v-25d30c2c]{position:relative;font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:735px){.steps[data-v-25d30c2c]{padding-top:80px}.steps[data-v-25d30c2c]:before{position:absolute;top:0;border-top:1px solid var(--color-fill-gray-tertiary);content:"";width:calc(100% - 2.35294rem);margin:0 1.17647rem}}.content-container[data-v-25d30c2c]{flex:none;margin-right:4.16667%;width:37.5%;margin-top:140px;margin-bottom:94vh}@media only screen and (max-width:735px){.content-container[data-v-25d30c2c]{margin-top:0;margin-bottom:0;height:100%;margin-left:0;margin-right:0;position:relative;width:100%}}.asset-container[data-v-25d30c2c]{flex:none;height:calc(100vh - 3.05882rem);background-color:var(--background,var(--color-step-background));max-width:921px;width:calc(50vw + 8.33333%);position:sticky;top:3.05882rem;transition:margin .1s ease-in-out}@media only screen and (max-width:767px){.asset-container[data-v-25d30c2c]{top:2.82353rem;height:calc(100vh - 2.82353rem)}}.asset-container[data-v-25d30c2c]:not(.for-step-code){overflow-y:auto;-webkit-overflow-scrolling:touch}.asset-container.ide[data-v-25d30c2c]{height:100vh;top:0}@media only screen and (min-width:736px){.asset-container[data-v-25d30c2c]{display:grid}.asset-container>[data-v-25d30c2c]{grid-row:1;grid-column:1;height:calc(100vh - 3.05882rem)}.asset-container.ide>[data-v-25d30c2c]{height:100vh}}.asset-container .step-asset[data-v-25d30c2c]{box-sizing:border-box;padding:0;padding-left:40px;min-height:320px;height:100%}.asset-container .step-asset[data-v-25d30c2c],.asset-container .step-asset[data-v-25d30c2c] picture{height:100%;display:flex;align-items:center}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container{height:100%;display:flex;flex-direction:column;justify-content:center}.asset-container .step-asset[data-v-25d30c2c] img,.asset-container .step-asset[data-v-25d30c2c] video{width:auto;max-height:calc(100vh - 3.05882rem - 80px);max-width:531.6634px;margin:0}@media only screen and (max-width:1250px){.asset-container .step-asset[data-v-25d30c2c] img,.asset-container .step-asset[data-v-25d30c2c] video{max-width:363.66436px}}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container,.asset-container .step-asset[data-v-25d30c2c] img{min-height:320px}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container video{min-height:280px}@media only screen and (max-width:735px){.asset-container[data-v-25d30c2c]{display:none}}.asset-wrapper[data-v-25d30c2c]{width:63.2%;align-self:center;transition:transform .25s ease-out;will-change:transform}.asset-wrapper.ide .step-asset[data-v-25d30c2c] img{background-color:var(--background,var(--color-step-background))}[data-v-25d30c2c] .runtime-preview-asset{display:grid}[data-v-25d30c2c] .runtime-preview-asset>*{grid-row:1;grid-column:1}.interstitial[data-v-25d30c2c]{padding:0 2rem}.interstitial[data-v-25d30c2c]:not(:first-child){margin-top:5.88235rem}.interstitial[data-v-25d30c2c]:not(:last-child){margin-bottom:30px}@media only screen and (max-width:735px){.interstitial[data-v-25d30c2c]{margin-left:auto;margin-right:auto;width:980px;padding:0}}@media only screen and (max-width:735px) and (max-width:1250px){.interstitial[data-v-25d30c2c]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.interstitial[data-v-25d30c2c]{width:87.5%}}@media only screen and (max-width:735px){.interstitial[data-v-25d30c2c]:not(:first-child){margin-top:0}}.fade-enter-active[data-v-25d30c2c],.fade-leave-active[data-v-25d30c2c]{transition:opacity .3s ease-in-out}.fade-enter[data-v-25d30c2c],.fade-leave-to[data-v-25d30c2c]{opacity:0}.section[data-v-6b3a0b3a]{padding-top:80px}.sections[data-v-79a75e9e]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.sections[data-v-79a75e9e]{width:692px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{width:87.5%;margin:0;width:100%}}.tutorial[data-v-0f871b08]{background-color:var(--colors-text-background,var(--color-tutorial-background))} \ No newline at end of file diff --git a/docs/css/topic.d8c126f3.css b/docs/css/topic.d8c126f3.css new file mode 100644 index 0000000..5d8319b --- /dev/null +++ b/docs/css/topic.d8c126f3.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.nav-title-content[data-v-854b4dd6]{max-width:100%}.title[data-v-854b4dd6]{color:var(--color-nav-root-title,currentColor);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-854b4dd6]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-854b4dd6]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-854b4dd6]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-854b4dd6]{color:var(--color-nav-dark-root-subhead)}.mobile-dropdown[data-v-154acfbd]{box-sizing:border-box}.nav--in-breakpoint-range .mobile-dropdown[data-v-154acfbd]{padding-left:.23529rem;padding-right:.23529rem}.mobile-dropdown ul[data-v-154acfbd]{list-style:none}.mobile-dropdown .option[data-v-154acfbd]{cursor:pointer;font-size:.70588rem;padding:.5rem 0;display:block;text-decoration:none;color:inherit}.mobile-dropdown .option[data-v-154acfbd]:focus{outline-offset:0}.mobile-dropdown .option.depth1[data-v-154acfbd]{padding-left:.47059rem}.active[data-v-154acfbd],.tutorial.router-link-active[data-v-154acfbd]{font-weight:600}.active[data-v-154acfbd]:focus,.tutorial.router-link-active[data-v-154acfbd]:focus{outline:none}.chapter-list[data-v-154acfbd]:not(:first-child){margin-top:1rem}.chapter-name[data-v-154acfbd],.tutorial[data-v-154acfbd]{padding:.5rem 0;font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.section-list[data-v-154acfbd],.tutorial-list[data-v-154acfbd]{padding:0 .58824rem}.chapter-list:last-child .tutorial-list[data-v-154acfbd]:last-child{padding-bottom:10em}.chapter-list[data-v-154acfbd]{display:inline-block}.form-element[data-v-998803d8]{position:relative}.form-dropdown[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:block;box-sizing:border-box;width:100%;height:3.3em;color:var(--color-dropdown-text);padding:1.11765rem 2.35294rem 0 .94118rem;text-align:left;border:1px solid var(--color-dropdown-border);border-radius:var(--border-radius,4px);background-clip:padding-box;margin-bottom:.82353rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;min-height:32px}.form-dropdown[data-v-998803d8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown.no-eyebrow[data-v-998803d8]{padding-top:0}.form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-text)}.form-dropdown[data-v-998803d8]::-ms-expand{opacity:0}.form-dropdown~.form-icon[data-v-998803d8]{position:absolute;display:block;pointer-events:none;fill:var(--color-figure-gray-tertiary);right:14px;width:13px;height:auto;top:50%;transform:translateY(-50%)}.is-open .form-dropdown~.form-icon[data-v-998803d8]{transform:translateY(-50%) scale(-1)}@media only screen and (max-width:735px){.form-dropdown~.form-icon[data-v-998803d8]{right:14px}}.form-dropdown~.form-label[data-v-998803d8]{font-size:.70588rem;line-height:1.75;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);position:absolute;top:.47059rem;left:17px;color:var(--color-figure-gray-secondary);pointer-events:none;padding:0;z-index:1}.form-dropdown[data-v-998803d8] option{color:var(--color-dropdown-text)}.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.form-dropdown-selectnone~.form-label[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);top:19px;left:17px;color:var(--color-figure-gray-tertiary)}.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.form-dropdown-selectnone[data-v-998803d8]::-ms-value{display:none}.theme-dark .form-dropdown[data-v-998803d8]{color:var(--color-dropdown-dark-text);background-color:var(--color-dropdown-dark-background);border-color:var(--color-dropdown-dark-border)}.theme-dark .form-dropdown~.form-label[data-v-998803d8]{color:#ccc}.theme-dark .form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-dark-text)}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.theme-dark .form-dropdown-selectnone~.form-label[data-v-998803d8]{color:#b0b0b0}.dropdown-small[data-v-12dd746a]{height:30px;display:flex;align-items:center;position:relative;background:var(--color-fill)}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]{line-height:1.5;font-size:12px;padding-top:0;padding-bottom:0;padding-left:20px;min-height:unset;height:30px;display:flex;align-items:center}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:none;border-color:var(--color-dropdown-border)}.fromkeyboard .dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:0 0 0 2px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown-toggle[data-v-12dd746a]{margin:0}.is-open .form-dropdown-toggle[data-v-12dd746a]{border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0;border-bottom:none;padding-bottom:1px}.fromkeyboard .is-open .form-dropdown-toggle[data-v-12dd746a]{box-shadow:1px -1px 0 1px var(--color-focus-color),-1px -1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color)}.form-dropdown-title[data-v-12dd746a]{margin:0;padding:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dropdown-custom[data-v-12dd746a]{border-radius:var(--border-radius,4px)}.dropdown-custom.is-open[data-v-12dd746a]{border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0}.dropdown-custom[data-v-12dd746a] .form-dropdown-content{background:var(--color-fill);position:absolute;right:0;left:0;top:100%;border-bottom-left-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px);border:1px solid var(--color-dropdown-border);border-top:none;display:none;overflow-y:auto}.dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{display:block}.fromkeyboard .dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{box-shadow:1px 1px 0 1px var(--color-focus-color),-1px 1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color);border-top-color:transparent}.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 116px - 3.05882rem)}.nav--is-sticking.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 3.05882rem - 72px)}.dropdown-custom[data-v-12dd746a] .options{list-style:none;margin:0;padding:0 0 20px}.dropdown-custom[data-v-12dd746a] .option{cursor:pointer;padding:5px 20px;font-size:12px;line-height:20px;outline:none}.dropdown-custom[data-v-12dd746a] .option:hover{background-color:var(--color-fill-tertiary)}.dropdown-custom[data-v-12dd746a] .option.option-active{font-weight:600}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:hover{background-color:transparent}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:focus{background-color:var(--color-fill-tertiary);outline:none}.tutorial-dropdown[data-v-554d62b6]{grid-column:3}.section-tracker[data-v-554d62b6]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);margin-left:15px}.tutorial-dropdown[data-v-4bddb6e6]{grid-column:1/2}.tutorial-dropdown .options[data-v-4bddb6e6]{padding-top:1rem;padding-bottom:0}.tutorial-dropdown .option[data-v-4bddb6e6]{padding:5px 20px 5px 30px}.chapter-list[data-v-4bddb6e6]{padding-bottom:20px}.chapter-name[data-v-4bddb6e6]{margin:0 20px 5px 20px;line-height:normal;color:var(--color-figure-gray-secondary)}.chevron-icon[data-v-717bc942]{padding:0;color:var(--color-nav-outlines);grid-column:2;height:20px;width:20px;margin:0 4px}@media only screen and (min-width:768px){.nav[data-v-717bc942] .nav-content{display:grid;grid-template-columns:auto auto 3fr;align-items:center}.nav[data-v-717bc942] .nav-menu{padding:0;grid-column:3/5}.nav[data-v-717bc942] .nav-menu-item{margin:0}}.dropdown-container[data-v-717bc942]{height:3.05882rem;display:grid;grid-template-columns:minmax(230px,285px) auto minmax(230px,1fr);align-items:center}@media only screen and (max-width:1023px){.dropdown-container[data-v-717bc942]{grid-template-columns:minmax(173px,216px) auto minmax(173px,1fr)}}.separator[data-v-717bc942]{height:20px;border-right:1px solid;border-color:var(--color-nav-outlines);margin:0 20px;grid-column:2}.mobile-dropdown-container[data-v-717bc942],.nav--in-breakpoint-range.nav .dropdown-container[data-v-717bc942],.nav--in-breakpoint-range.nav .separator[data-v-717bc942]{display:none}.nav--in-breakpoint-range.nav .mobile-dropdown-container[data-v-717bc942]{display:block}.nav--in-breakpoint-range.nav[data-v-717bc942] .nav-title{grid-area:title}.nav--in-breakpoint-range.nav[data-v-717bc942] .pre-title{display:none}.nav[data-v-717bc942] .nav-title{grid-column:1;width:90%;padding-top:0}.primary-dropdown[data-v-717bc942],.secondary-dropdown[data-v-717bc942]{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-717bc942] .form-dropdown,.primary-dropdown[data-v-717bc942] .form-dropdown:focus,.secondary-dropdown[data-v-717bc942] .form-dropdown,.secondary-dropdown[data-v-717bc942] .form-dropdown:focus{border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-717bc942] .options,.secondary-dropdown[data-v-717bc942] .options{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}[data-v-3cfe1c35] .code-listing+*,[data-v-3cfe1c35] aside+*,[data-v-3cfe1c35] h2+*,[data-v-3cfe1c35] h3+*,[data-v-3cfe1c35] ol+*,[data-v-3cfe1c35] p+*,[data-v-3cfe1c35] ul+*{margin-top:20px}[data-v-3cfe1c35] ol ol,[data-v-3cfe1c35] ol ul,[data-v-3cfe1c35] ul ol,[data-v-3cfe1c35] ul ul{margin-top:0}[data-v-3cfe1c35] h2{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h2{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-3cfe1c35] h2{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-3cfe1c35] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-3cfe1c35] .code-listing{background:var(--color-code-background);border-color:var(--colors-grid,var(--color-grid));border-style:solid;border-width:1px}[data-v-3cfe1c35] .code-listing pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);padding:20px 0}.columns[data-v-30edf911]{display:grid;grid-template-rows:repeat(2,auto)}.columns.cols-2[data-v-30edf911]{gap:20px 8.33333%;grid-template-columns:repeat(2,1fr)}.columns.cols-3[data-v-30edf911]{gap:20px 4.16667%;grid-template-columns:repeat(3,1fr)}.asset[data-v-30edf911]{align-self:end;grid-row:1}.content[data-v-30edf911]{grid-row:2}@media only screen and (max-width:735px){.columns.cols-2[data-v-30edf911],.columns.cols-3[data-v-30edf911]{grid-template-columns:unset}.asset[data-v-30edf911],.content[data-v-30edf911]{grid-row:auto}}.content-and-media[data-v-3fa44f9e]{display:flex}.content-and-media.media-leading[data-v-3fa44f9e]{flex-direction:row-reverse}.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:row}@media only screen and (min-width:736px){.content-and-media[data-v-3fa44f9e]{align-items:center;justify-content:center}}.content[data-v-3fa44f9e]{width:62.5%}.asset[data-v-3fa44f9e]{width:29.16667%}.media-leading .asset[data-v-3fa44f9e]{margin-right:8.33333%}.media-trailing .asset[data-v-3fa44f9e]{margin-left:8.33333%}@media only screen and (max-width:735px){.content-and-media.media-leading[data-v-3fa44f9e],.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:column}.asset[data-v-3fa44f9e],.content[data-v-3fa44f9e]{width:100%}.media-leading .asset[data-v-3fa44f9e],.media-trailing .asset[data-v-3fa44f9e]{margin:20px 0 0 0}}.group[id][data-v-1f2be54b]{margin-top:20px;padding-top:20px}[data-v-1f2be54b] img,[data-v-1f2be54b] video{display:block;margin:0 auto;max-width:100%}.layout+[data-v-4d5a806e]{margin-top:40px}@media only screen and (max-width:735px){.layout[data-v-4d5a806e]:first-child>:not(.group[id]){margin-top:40px}}.body[data-v-6499e2f2]{background:var(--colors-text-background,var(--color-article-body-background));margin-left:auto;margin-right:auto;width:980px;border-radius:10px;transform:translateY(-120px)}@media only screen and (max-width:1250px){.body[data-v-6499e2f2]{width:692px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{width:87.5%}}@media only screen and (max-width:320px){.body[data-v-6499e2f2]{width:215px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{border-radius:0;transform:none}}.body[data-v-6499e2f2]~*{margin-top:-40px}.body-content[data-v-6499e2f2]{padding:40px 8.33333% 80px 8.33333%}@media only screen and (max-width:735px){.body-content[data-v-6499e2f2]{padding:0 0 40px 0}}.call-to-action[data-v-042a0474]{padding:65px 0;background:var(--color-call-to-action-background)}.theme-dark .call-to-action[data-v-042a0474]{--color-call-to-action-background:#424242}.row[data-v-042a0474]{margin-left:auto;margin-right:auto;width:980px;display:flex;align-items:center}@media only screen and (max-width:1250px){.row[data-v-042a0474]{width:692px}}@media only screen and (max-width:735px){.row[data-v-042a0474]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-042a0474]{width:215px}}[data-v-042a0474] img,[data-v-042a0474] video{max-height:560px}h2[data-v-042a0474]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){h2[data-v-042a0474]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){h2[data-v-042a0474]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.label[data-v-042a0474]{display:block;font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:var(--spacing-stacked-margin-small);color:var(--color-eyebrow)}@media only screen and (max-width:735px){.label[data-v-042a0474]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-042a0474]{margin-bottom:1.5rem}.right-column[data-v-042a0474]{margin-left:auto}@media only screen and (max-width:735px){.row[data-v-042a0474]{display:block}.col+.col[data-v-042a0474]{margin-top:40px}}@media only screen and (max-width:735px){.call-to-action[data-v-426a965c]{margin-top:0}}.headline[data-v-d46a1474]{margin-bottom:var(--spacing-stacked-margin-large)}.heading[data-v-d46a1474]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-header-text)}@media only screen and (max-width:1250px){.heading[data-v-d46a1474]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.heading[data-v-d46a1474]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.dark .heading[data-v-d46a1474]{color:#fff}.eyebrow[data-v-d46a1474]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:block;margin-bottom:var(--spacing-stacked-margin-small);color:var(--color-eyebrow)}@media only screen and (max-width:1250px){.eyebrow[data-v-d46a1474]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.metadata[data-v-94ff76c0]{display:flex}.item[data-v-94ff76c0]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;flex-direction:column;justify-content:flex-end;align-items:center;border-right:1px solid #fff;padding:0 27.5px}@media only screen and (max-width:735px){.item[data-v-94ff76c0]{font-size:.64706rem;line-height:1.63636;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:0 8px}}.item[data-v-94ff76c0]:first-of-type{padding-left:0}.item[data-v-94ff76c0]:last-of-type{border:none}@media only screen and (max-width:735px){.item[data-v-94ff76c0]:last-of-type{padding-right:0}}.content[data-v-94ff76c0]{color:#fff}.icon[data-v-94ff76c0]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.icon[data-v-94ff76c0]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.icon[data-v-94ff76c0]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.small-icon[data-v-94ff76c0]{width:1em;height:1em;margin-left:.2rem}.small-icon.xcode-icon[data-v-94ff76c0]{width:.8em;height:.8em}.content-link[data-v-94ff76c0]{display:flex;align-items:center}a[data-v-94ff76c0]{color:var(--colors-link,var(--color-tutorials-overview-link))}.duration[data-v-94ff76c0]{display:flex;align-items:baseline;font-size:2.35294rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.8rem}@media only screen and (max-width:735px){.duration[data-v-94ff76c0]{font-size:1.64706rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.3rem}}.minutes[data-v-94ff76c0]{display:inline-block;font-size:1.64706rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.3rem}@media only screen and (max-width:735px){.minutes[data-v-94ff76c0]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:.8rem}}.item-large-icon[data-v-94ff76c0]{height:2.3rem;max-width:100%}@media only screen and (max-width:735px){.item-large-icon[data-v-94ff76c0]{height:1.5rem;max-width:100%}}.bottom[data-v-94ff76c0]{margin-top:13px}@media only screen and (max-width:735px){.bottom[data-v-94ff76c0]{margin-top:8px}}.hero[data-v-55543c5a]{color:var(--color-tutorial-hero-text);position:relative}.bg[data-v-55543c5a],.hero[data-v-55543c5a]{background-color:var(--color-tutorial-hero-background)}.bg[data-v-55543c5a]{background-position:top;background-repeat:no-repeat;background-size:cover;content:"";height:100%;left:0;opacity:.3;position:absolute;top:0;width:100%}.row[data-v-55543c5a]{margin-left:auto;margin-right:auto;width:980px;padding:80px 0}@media only screen and (max-width:1250px){.row[data-v-55543c5a]{width:692px}}@media only screen and (max-width:735px){.row[data-v-55543c5a]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-55543c5a]{width:215px}}.col[data-v-55543c5a]{z-index:1}[data-v-55543c5a] .eyebrow{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-hero-eyebrow)}@media only screen and (max-width:1250px){[data-v-55543c5a] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.headline[data-v-55543c5a]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:2rem}@media only screen and (max-width:1250px){.headline[data-v-55543c5a]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.headline[data-v-55543c5a]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.intro[data-v-55543c5a]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.intro[data-v-55543c5a]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content+p[data-v-55543c5a]{margin-top:var(--spacing-stacked-margin-large)}@media only screen and (max-width:735px){.content+p[data-v-55543c5a]{margin-top:8px}}.call-to-action[data-v-55543c5a]{display:flex;align-items:center}.call-to-action .cta-icon[data-v-55543c5a]{margin-left:.4rem;width:1em;height:1em}.metadata[data-v-55543c5a]{margin-top:2rem}.video-asset[data-v-55543c5a]{display:grid;height:100vh;margin:0;place-items:center center}.video-asset[data-v-55543c5a] video{max-width:1280px;min-width:320px;width:100%}@media only screen and (max-width:735px){.headline[data-v-55543c5a]{margin-bottom:19px}}.tutorial-hero[data-v-35a9482f]{margin-bottom:80px}@media only screen and (max-width:735px){.tutorial-hero[data-v-35a9482f]{margin-bottom:0}}.title[data-v-28135d78]{font-size:.70588rem;line-height:1.33333;color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-19ed40e2],.title[data-v-28135d78]{font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.title[data-v-19ed40e2]{font-size:1.11765rem;line-height:1.21053;color:var(--colors-header-text,var(--color-header-text));margin:25px 0}.question-content[data-v-19ed40e2] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.choices[data-v-19ed40e2]{display:flex;flex-direction:column;padding:0;list-style:none;margin:25px 0}.choice[data-v-19ed40e2]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);flex:1;border-radius:var(--border-radius,4px);margin:8px 0;padding:1.5rem 40px;cursor:pointer;background:var(--colors-text-background,var(--color-text-background));display:flex;flex-direction:column;justify-content:center;border-width:1px;border-style:solid;border-color:var(--colors-grid,var(--color-grid));position:relative}.choice[data-v-19ed40e2] img{max-height:23.52941rem}.choice[data-v-19ed40e2]:first-of-type{margin-top:0}.choice[data-v-19ed40e2] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.controls[data-v-19ed40e2]{text-align:center;margin-bottom:40px}.controls .button-cta[data-v-19ed40e2]{margin:.5rem;margin-top:0;padding:.3rem 3rem;min-width:8rem}input[type=radio][data-v-19ed40e2]{position:absolute;width:100%;left:0;height:100%;opacity:0;z-index:-1}.active[data-v-19ed40e2]{border-color:var(--color-tutorial-quiz-border-active);box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.active [data-v-19ed40e2]{color:var(--colors-text,var(--color-text))}.correct[data-v-19ed40e2]{background:var(--color-form-valid-background);border-color:var(--color-form-valid)}.correct .choice-icon[data-v-19ed40e2]{fill:var(--color-form-valid)}.incorrect[data-v-19ed40e2]{background:var(--color-form-error-background);border-color:var(--color-form-error)}.incorrect .choice-icon[data-v-19ed40e2]{fill:var(--color-form-error)}.correct[data-v-19ed40e2],.incorrect[data-v-19ed40e2]{position:relative}.correct .choice-icon[data-v-19ed40e2],.incorrect .choice-icon[data-v-19ed40e2]{position:absolute;top:11px;left:10px;font-size:20px;width:1.05em}.disabled[data-v-19ed40e2]{pointer-events:none}.answer[data-v-19ed40e2]{margin:.5rem 1.5rem .5rem 0;font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.answer[data-v-19ed40e2]:last-of-type{margin-bottom:0}[data-v-19ed40e2] .question>.code-listing{padding:unset;border-radius:0}[data-v-19ed40e2] pre{padding:0}[data-v-19ed40e2] img{display:block;margin-left:auto;margin-right:auto;max-width:100%}.title[data-v-65e3c02c]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-header-text,var(--color-header-text))}@media only screen and (max-width:1250px){.title[data-v-65e3c02c]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-65e3c02c]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title p[data-v-65e3c02c]{color:var(--colors-text,var(--color-text))}.assessments[data-v-65e3c02c]{box-sizing:content-box;padding:0 1rem;background:var(--color-tutorial-assessments-background);margin-left:auto;margin-right:auto;width:980px;margin-bottom:80px}@media only screen and (max-width:1250px){.assessments[data-v-65e3c02c]{width:692px}}@media only screen and (max-width:735px){.assessments[data-v-65e3c02c]{width:87.5%}}@media only screen and (max-width:320px){.assessments[data-v-65e3c02c]{width:215px}}.banner[data-v-65e3c02c]{padding:40px 0;border-bottom:1px solid;margin-bottom:40px;border-color:var(--colors-grid,var(--color-grid));text-align:center}.success[data-v-65e3c02c]{text-align:center;padding-bottom:40px;font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-text,var(--color-text))}@media only screen and (max-width:1250px){.success[data-v-65e3c02c]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.success[data-v-65e3c02c]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.assessments-wrapper[data-v-65e3c02c]{padding-top:80px}.assessments-wrapper[data-v-3c94366b]{padding-bottom:40px;padding-top:0}@media only screen and (max-width:735px){.assessments-wrapper[data-v-3c94366b]{padding-top:80px}}.article[data-v-7d4562ea]{background:var(--colors-article-background,var(--color-article-background))}@media only screen and (max-width:735px){.article[data-v-7d4562ea]{background:var(--colors-text-background,var(--color-article-body-background))}}.intro-container[data-v-7f9a8f65]{margin-bottom:80px}.intro[data-v-7f9a8f65]{display:flex;align-items:center}@media only screen and (max-width:735px){.intro[data-v-7f9a8f65]{padding-bottom:0;flex-direction:column}}.intro.ide .media[data-v-7f9a8f65] img{background-color:var(--colors-text-background,var(--color-text-background))}.col.left[data-v-7f9a8f65]{padding-right:40px}@media only screen and (max-width:1250px){.col.left[data-v-7f9a8f65]{padding-right:28px}}@media only screen and (max-width:735px){.col.left[data-v-7f9a8f65]{margin-left:auto;margin-right:auto;width:980px;padding-right:0}}@media only screen and (max-width:735px) and (max-width:1250px){.col.left[data-v-7f9a8f65]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.col.left[data-v-7f9a8f65]{width:87.5%}}@media only screen and (max-width:735px) and (max-width:320px){.col.left[data-v-7f9a8f65]{width:215px}}.col.right[data-v-7f9a8f65]{padding-left:40px}@media only screen and (max-width:1250px){.col.right[data-v-7f9a8f65]{padding-left:28px}}@media only screen and (max-width:735px){.col.right[data-v-7f9a8f65]{padding-left:0}}.content[data-v-7f9a8f65]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.media[data-v-7f9a8f65] img{width:auto;max-height:560px;min-height:18.82353rem;-o-object-fit:scale-down;object-fit:scale-down}@media only screen and (max-width:735px){.media[data-v-7f9a8f65]{margin:0;margin-top:40px}.media[data-v-7f9a8f65] img,.media[data-v-7f9a8f65] video{max-height:80vh}}.media[data-v-7f9a8f65] .asset{padding:0 20px}.headline[data-v-7f9a8f65]{color:var(--colors-header-text,var(--color-header-text))}[data-v-7f9a8f65] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){[data-v-7f9a8f65] .eyebrow{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-7f9a8f65] .eyebrow a{color:inherit}[data-v-7f9a8f65] .heading{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-7f9a8f65] .heading{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-7f9a8f65] .heading{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.expanded-intro[data-v-7f9a8f65]{margin-left:auto;margin-right:auto;width:980px;margin-top:40px}@media only screen and (max-width:1250px){.expanded-intro[data-v-7f9a8f65]{width:692px}}@media only screen and (max-width:735px){.expanded-intro[data-v-7f9a8f65]{width:87.5%}}@media only screen and (max-width:320px){.expanded-intro[data-v-7f9a8f65]{width:215px}}[data-v-7f9a8f65] .cols-2{gap:20px 16.66667%}[data-v-7f9a8f65] .cols-3 .column{gap:20px 12.5%}.code-preview[data-v-4f53426a]{position:sticky;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:var(--background,var(--color-step-background));height:calc(100vh - 3.05882rem)}.code-preview.ide[data-v-4f53426a]{height:100vh}.code-preview[data-v-4f53426a] .code-listing{color:var(--text,var(--color-code-plain))}.code-preview[data-v-4f53426a] .code-listing .code-line-container{padding-right:14px}.code-preview[data-v-4f53426a] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.header[data-v-4f53426a]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);position:relative;display:flex;justify-content:space-between;align-items:center;width:-webkit-fill-available;width:-moz-available;width:stretch;cursor:pointer;font-weight:600;padding:8px 12px;border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0;z-index:1;background:var(--color-runtime-preview-background);color:var(--colors-runtime-preview-text,var(--color-runtime-preview-text))}.header[data-v-4f53426a]:focus{outline-style:none}#app.fromkeyboard .header[data-v-4f53426a]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:rgba(0,0,0,0.4);position:absolute;top:0;right:0;background:var(--color-runtime-preview-background);border-radius:var(--border-radius,4px);margin:1rem;margin-left:0;transition:width .2s ease-in;box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow)}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@supports not ((width:-webkit-fill-available) or (width:-moz-available) or (width:stretch)){.runtime-preview[data-v-4f53426a]{display:flex;flex-direction:column}}.runtime-preview .runtimve-preview__container[data-v-4f53426a]{border-radius:var(--border-radius,4px);overflow:hidden}.runtime-preview-ide[data-v-4f53426a]{top:0}.runtime-preview-ide .runtime-preview-asset[data-v-4f53426a] img{background-color:var(--color-runtime-preview-background)}.runtime-preview.collapsed[data-v-4f53426a]{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);width:102px}.runtime-preview.collapsed .header[data-v-4f53426a]{border-radius:var(--border-radius,4px)}.runtime-preview.disabled[data-v-4f53426a]{box-shadow:0 0 3px 0 transparent}.runtime-preview.disabled .header[data-v-4f53426a]{color:var(--color-runtime-preview-disabled-text);cursor:auto}.runtime-preview-asset[data-v-4f53426a]{border-radius:0 0 var(--border-radius,4px) var(--border-radius,4px)}.runtime-preview-asset[data-v-4f53426a] img{border-bottom-left-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px)}.preview-icon[data-v-4f53426a]{height:.8em;width:.8em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.preview-show[data-v-4f53426a]{transform:scale(-1)}[data-v-5ad4e037] pre{padding:10px 0}.toggle-preview[data-v-78763c14]{color:var(--color-runtime-preview-disabled-text);display:flex;align-items:center}a[data-v-78763c14]{color:var(--url,var(--color-link))}.toggle-text[data-v-78763c14]{display:flex;align-items:center}svg.toggle-icon[data-v-78763c14]{width:1em;height:1em;margin-left:.5em}.mobile-code-preview[data-v-1aed4baa]{background-color:var(--background,var(--color-step-background));padding:14px 0}@media only screen and (max-width:735px){.mobile-code-preview[data-v-1aed4baa]{display:flex;flex-direction:column}}.runtime-preview-modal-content[data-v-1aed4baa]{padding:45px 60px 0 60px;min-width:200px}.runtime-preview-modal-content[data-v-1aed4baa] img:not(.file-icon){border-radius:var(--border-radius,4px);box-shadow:0 0 3px rgba(0,0,0,.4);max-height:80vh;width:auto;display:block;margin-bottom:1rem}.runtime-preview-modal-content .runtime-preview-label[data-v-1aed4baa]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-runtime-preview-text);display:block;text-align:center;padding:.5em}[data-v-1aed4baa] .code-listing{color:var(--text,var(--color-code-plain))}[data-v-1aed4baa] .full-code-listing{padding-top:60px;min-height:calc(100vh - 60px)}[data-v-1aed4baa] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.preview-toggle-container[data-v-1aed4baa]{align-self:flex-end;margin-right:20px}.step-container[data-v-eb45ec92]{margin:0}.step-container[data-v-eb45ec92]:not(:last-child){margin-bottom:100px}@media only screen and (max-width:735px){.step-container[data-v-eb45ec92]:not(:last-child){margin-bottom:80px}}.step[data-v-eb45ec92]{position:relative;border-radius:var(--tutorial-step-border-radius,var(--border-radius,4px));padding:1rem 2rem;background-color:var(--color-step-background);overflow:hidden;filter:blur(0)}.step[data-v-eb45ec92]:before{content:"";position:absolute;top:0;left:0;border:1px solid var(--color-step-focused);background-color:var(--color-step-focused);height:calc(100% - 2px);width:4px;opacity:0;transition:opacity .15s ease-in}.step.focused[data-v-eb45ec92],.step[data-v-eb45ec92]:focus{outline:none}.step.focused[data-v-eb45ec92]:before,.step[data-v-eb45ec92]:focus:before{opacity:1}@media only screen and (max-width:735px){.step[data-v-eb45ec92]{padding-left:2rem}.step[data-v-eb45ec92]:before{opacity:1}}.step-label[data-v-eb45ec92]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-text,var(--color-step-text));margin-bottom:var(--spacing-stacked-margin-small)}.caption[data-v-eb45ec92]{border-top:1px solid;border-color:var(--color-step-caption);padding:1rem 0 0 0;margin-top:1rem}.media-container[data-v-eb45ec92]{display:none}@media only screen and (max-width:735px){.step[data-v-eb45ec92]{margin:0 .58824rem 1.17647rem .58824rem}.step.focused[data-v-eb45ec92],.step[data-v-eb45ec92]:focus{outline:none}.media-container[data-v-eb45ec92]{display:block;position:relative}.media-container[data-v-eb45ec92] img,.media-container[data-v-eb45ec92] video{max-height:80vh}[data-v-eb45ec92] .asset{padding:0 20px}}.steps[data-v-2786be2a]{position:relative;font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:735px){.steps[data-v-2786be2a]{padding-top:80px}.steps[data-v-2786be2a]:before{position:absolute;top:0;border-top:1px solid var(--color-fill-gray-tertiary);content:"";width:calc(100% - 2.35294rem);margin:0 1.17647rem}}.steps[data-v-2786be2a] aside{background:unset;border:unset;box-shadow:unset;-moz-column-break-inside:unset;break-inside:unset;padding:unset}.steps[data-v-2786be2a] aside .label{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content-container[data-v-2786be2a]{flex:none;margin-right:4.16667%;width:37.5%;margin-top:140px;margin-bottom:94vh}@media only screen and (max-width:735px){.content-container[data-v-2786be2a]{margin-top:0;margin-bottom:0;height:100%;margin-left:0;margin-right:0;position:relative;width:100%}}.asset-container[data-v-2786be2a]{flex:none;height:calc(100vh - 3.05882rem);background-color:var(--background,var(--color-step-background));max-width:921px;width:calc(50vw + 8.33333%);position:sticky;top:3.05882rem;transition:margin .1s ease-in-out}@media only screen and (max-width:767px){.asset-container[data-v-2786be2a]{top:2.82353rem;height:calc(100vh - 2.82353rem)}}.asset-container[data-v-2786be2a]:not(.for-step-code){overflow-y:auto;-webkit-overflow-scrolling:touch}.asset-container.ide[data-v-2786be2a]{height:100vh;top:0}@media only screen and (min-width:736px){.asset-container[data-v-2786be2a]{display:grid}.asset-container>[data-v-2786be2a]{grid-row:1;grid-column:1;height:calc(100vh - 3.05882rem)}.asset-container.ide>[data-v-2786be2a]{height:100vh}}.asset-container .step-asset[data-v-2786be2a]{box-sizing:border-box;padding:0;padding-left:40px;min-height:320px;height:100%}.asset-container .step-asset[data-v-2786be2a],.asset-container .step-asset[data-v-2786be2a] picture{height:100%;display:flex;align-items:center}.asset-container .step-asset[data-v-2786be2a] .video-replay-container{height:100%;display:flex;flex-direction:column;justify-content:center}.asset-container .step-asset[data-v-2786be2a] img,.asset-container .step-asset[data-v-2786be2a] video{width:auto;max-height:calc(100vh - 3.05882rem - 80px);max-width:531.6634px;margin:0}@media only screen and (max-width:1250px){.asset-container .step-asset[data-v-2786be2a] img,.asset-container .step-asset[data-v-2786be2a] video{max-width:363.66436px}}.asset-container .step-asset[data-v-2786be2a] .video-replay-container,.asset-container .step-asset[data-v-2786be2a] img{min-height:320px}.asset-container .step-asset[data-v-2786be2a] .video-replay-container video{min-height:280px}@media only screen and (max-width:735px){.asset-container[data-v-2786be2a]{display:none}}.asset-wrapper[data-v-2786be2a]{width:63.2%;align-self:center;transition:transform .25s ease-out;will-change:transform}.asset-wrapper.ide .step-asset[data-v-2786be2a] img{background-color:var(--background,var(--color-step-background))}[data-v-2786be2a] .runtime-preview-asset{display:grid}[data-v-2786be2a] .runtime-preview-asset>*{grid-row:1;grid-column:1}.interstitial[data-v-2786be2a]{padding:0 2rem}.interstitial[data-v-2786be2a]:not(:first-child){margin-top:5.88235rem}.interstitial[data-v-2786be2a]:not(:last-child){margin-bottom:30px}@media only screen and (max-width:735px){.interstitial[data-v-2786be2a]{margin-left:auto;margin-right:auto;width:980px;padding:0}}@media only screen and (max-width:735px) and (max-width:1250px){.interstitial[data-v-2786be2a]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.interstitial[data-v-2786be2a]{width:87.5%}}@media only screen and (max-width:735px) and (max-width:320px){.interstitial[data-v-2786be2a]{width:215px}}@media only screen and (max-width:735px){.interstitial[data-v-2786be2a]:not(:first-child){margin-top:0}}.fade-enter-active[data-v-2786be2a],.fade-leave-active[data-v-2786be2a]{transition:opacity .3s ease-in-out}.fade-enter[data-v-2786be2a],.fade-leave-to[data-v-2786be2a]{opacity:0}.section[data-v-6b3a0b3a]{padding-top:80px}.sections[data-v-79a75e9e]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.sections[data-v-79a75e9e]{width:692px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{width:87.5%}}@media only screen and (max-width:320px){.sections[data-v-79a75e9e]{width:215px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{margin:0;width:100%}}.tutorial[data-v-611d0574]{background-color:var(--colors-text-background,var(--color-tutorial-background))} \ No newline at end of file diff --git a/docs/css/tutorials-overview.2a582c39.css b/docs/css/tutorials-overview.2a582c39.css deleted file mode 100644 index f4e1be7..0000000 --- a/docs/css/tutorials-overview.2a582c39.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */.tutorials-navigation-link[data-v-e9f9b59c]{color:var(--color-tutorials-overview-navigation-link);transition:color .3s linear}.tutorials-navigation-link[data-v-e9f9b59c]:hover{text-decoration:none;transition:none;color:var(--color-tutorials-overview-navigation-link-hover)}.tutorials-navigation-link.active[data-v-e9f9b59c]{color:var(--color-tutorials-overview-navigation-link-active)}.tutorials-navigation-list[data-v-6f2800d1]{list-style-type:none;margin:0}.tutorials-navigation-list li+li[data-v-6f2800d1]:not(.volume--named){margin-top:24px}.tutorials-navigation-list .volume--named+.volume--named[data-v-6f2800d1]{margin-top:12px}.expand-enter-active,.expand-leave-active{transition:height .3s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.toggle[data-v-6513d652]{color:#f0f0f0;line-height:21px;display:flex;align-items:center;width:100%;font-weight:600;padding:6px 6px 6px 0;border-bottom:1px solid #2a2a2a;text-decoration:none;box-sizing:border-box}@media only screen and (max-width:767px){.toggle[data-v-6513d652]{padding-right:6px;border-bottom-color:hsla(0,0%,100%,.1)}}.toggle .text[data-v-6513d652]{word-break:break-word}.toggle[data-v-6513d652]:hover{text-decoration:none}.toggle .toggle-icon[data-v-6513d652]{display:inline-block;transition:transform .2s ease-in;height:.4em;width:.4em;margin-left:auto;margin-right:.2em}.collapsed .toggle .toggle-icon[data-v-6513d652]{transform:rotate(45deg)}.collapsed .toggle[data-v-6513d652],.collapsed .toggle[data-v-6513d652]:hover{color:#b0b0b0}.tutorials-navigation-menu-content[data-v-6513d652]{opacity:1;transition:height .2s ease-in,opacity .2s ease-in}.collapsed .tutorials-navigation-menu-content[data-v-6513d652]{height:0;opacity:0}.tutorials-navigation-menu-content .tutorials-navigation-list[data-v-6513d652]{padding:24px 0 12px 0}.tutorials-navigation[data-v-0cbd8adb]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.nav-title-content[data-v-854b4dd6]{max-width:100%}.title[data-v-854b4dd6]{color:var(--color-nav-root-title,currentColor);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-854b4dd6]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-854b4dd6]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-854b4dd6]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-854b4dd6]{color:var(--color-nav-dark-root-subhead)}.nav[data-v-1001350c] .nav-menu{padding-top:0}.nav[data-v-1001350c] .nav-menu .nav-menu-items{margin-left:auto}@media only screen and (min-width:768px){.nav[data-v-1001350c] .nav-menu .nav-menu-items .in-page-navigation{display:none}}@media only screen and (min-width:320px) and (max-width:735px){.nav[data-v-1001350c] .nav-menu .nav-menu-items{padding:18px 0 40px}}.hero[data-v-549fca98]{margin-left:auto;margin-right:auto;width:980px;padding-bottom:4.70588rem;padding-top:4.70588rem}@media only screen and (max-width:1250px){.hero[data-v-549fca98]{width:692px}}@media only screen and (max-width:735px){.hero[data-v-549fca98]{width:87.5%}}.copy-container[data-v-549fca98]{margin:0 auto;text-align:center;width:720px}.title[data-v-549fca98]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content)}@media only screen and (max-width:1250px){.title[data-v-549fca98]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-549fca98]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-549fca98]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content)}@media only screen and (max-width:735px){.content[data-v-549fca98]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.meta[data-v-549fca98]{color:var(--color-tutorials-overview-content-alt);align-items:center;display:flex;justify-content:center}.meta-content[data-v-549fca98]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.meta .timer-icon[data-v-549fca98]{margin-right:.35294rem;height:16px;width:16px;fill:var(--color-tutorials-overview-icon)}@media only screen and (max-width:735px){.meta .timer-icon[data-v-549fca98]{margin-right:.29412rem;height:.82353rem;width:.82353rem}}.meta .time[data-v-549fca98]{font-size:1.11765rem;line-height:1.21053;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.meta .time[data-v-549fca98]{font-size:1rem;line-height:1.11765;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title+.content[data-v-549fca98]{margin-top:1.47059rem}.content+.meta[data-v-549fca98]{margin-top:1.17647rem}.button-cta[data-v-549fca98]{margin-top:1.76471rem}*+.asset[data-v-549fca98]{margin-top:4.11765rem}@media only screen and (max-width:1250px){.copy-container[data-v-549fca98]{width:636px}}@media only screen and (max-width:735px){.hero[data-v-549fca98]{padding-bottom:1.76471rem;padding-top:2.35294rem}.copy-container[data-v-549fca98]{width:100%}.title+.content[data-v-549fca98]{margin-top:.88235rem}.button-cta[data-v-549fca98]{margin-top:1.41176rem}*+.asset[data-v-549fca98]{margin-top:2.23529rem}}.image[data-v-569db166]{margin-bottom:10px}.name[data-v-569db166]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-header-text,#f0f0f0);word-break:break-word}@media only screen and (max-width:1250px){.name[data-v-569db166]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.name[data-v-569db166]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-569db166]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content-alt);margin-top:10px}.volume-name[data-v-569db166]{padding:50px 60px;text-align:center;background:var(--color-tutorials-overview-fill-secondary,#161616);margin:2px 0}@media only screen and (max-width:735px){.volume-name[data-v-569db166]{padding:40px 20px}}.document-icon[data-v-3a80772b]{margin-left:-3px}.tile[data-v-96abac22]{background:var(--color-tutorials-overview-fill-secondary,#161616);padding:40px 30px;color:var(--color-tutorials-overview-content-alt)}.content[data-v-96abac22] a,a[data-v-96abac22]{color:var(--colors-link,var(--color-tutorials-overview-link))}.icon[data-v-96abac22]{display:block;height:1.47059rem;line-height:1.47059rem;margin-bottom:.58824rem;width:1.47059rem}.icon[data-v-96abac22] svg.svg-icon{width:100%;max-height:100%;fill:var(--color-tutorials-overview-icon)}.icon[data-v-96abac22] svg.svg-icon .svg-icon-stroke{stroke:var(--color-tutorials-overview-content-alt)}.title[data-v-96abac22]{font-size:1.23529rem;line-height:1.19048;font-weight:600;margin-bottom:.8em}.content[data-v-96abac22],.link[data-v-96abac22],.title[data-v-96abac22]{font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content[data-v-96abac22],.link[data-v-96abac22]{font-size:.82353rem;line-height:1.42857;font-weight:400}.content[data-v-96abac22]{color:var(--color-tutorials-overview-content-alt)}.link[data-v-96abac22]{display:block;margin-top:1.17647rem}.link .link-icon[data-v-96abac22]{margin-left:.2em;width:.6em;height:.6em}[data-v-96abac22] .content ul{list-style-type:none;margin-left:0;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}[data-v-96abac22] .content ul li:before{content:"\200B";position:absolute}[data-v-96abac22] .content li+li{margin-top:8px}@media only screen and (max-width:735px){.tile[data-v-96abac22]{padding:1.76471rem 1.17647rem}}.tile-group[data-v-015f9f13]{display:grid;grid-column-gap:2px;grid-row-gap:2px}.tile-group.count-1[data-v-015f9f13]{grid-template-columns:1fr;text-align:center}.tile-group.count-1[data-v-015f9f13] .icon{margin-left:auto;margin-right:auto}.tile-group.count-2[data-v-015f9f13]{grid-template-columns:repeat(2,1fr)}.tile-group.count-3[data-v-015f9f13]{grid-template-columns:repeat(3,1fr)}.tile-group.count-4[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5[data-v-015f9f13]{grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5 .tile[data-v-015f9f13]{grid-column-end:span 2}.tile-group.count-5 .tile[data-v-015f9f13]:nth-of-type(-n+2){grid-column-end:span 3}.tile-group.count-6[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,auto)}@media only screen and (min-width:768px) and (max-width:1250px){.tile-group.tile-group[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}@media only screen and (max-width:735px){.tile-group.count-1[data-v-015f9f13],.tile-group.count-2[data-v-015f9f13],.tile-group.count-3[data-v-015f9f13],.tile-group.count-4[data-v-015f9f13],.tile-group.count-5[data-v-015f9f13],.tile-group.count-6[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}.title[data-v-49ba6f62]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:#f0f0f0}@media only screen and (max-width:1250px){.title[data-v-49ba6f62]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-49ba6f62]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-49ba6f62]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:#b0b0b0;margin-top:10px}.topic-list[data-v-da979188]{list-style-type:none;margin:50px 0 0 0;position:relative}.topic-list li[data-v-da979188]:before{content:"\200B";position:absolute}.topic-list[data-v-da979188]:before{content:"";border-left:1px solid var(--color-fill-quaternary);display:block;height:calc(100% - .88235rem);left:.88235rem;position:absolute;top:50%;transform:translateY(-50%);width:0}.topic[data-v-da979188]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;align-items:flex-start}@media only screen and (max-width:735px){.topic[data-v-da979188]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.topic+.topic[data-v-da979188]{margin-top:.58824rem}.topic .topic-icon[data-v-da979188]{background-color:var(--color-fill-quaternary);border-radius:50%;flex-shrink:0;height:1.76471rem;width:1.76471rem;margin-right:1.17647rem;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:.47059rem;box-sizing:border-box;display:flex;justify-content:center;align-items:center}.topic .topic-icon svg[data-v-da979188]{fill:var(--color-tutorials-overview-icon);max-width:100%;max-height:100%;width:100%}.container[data-v-da979188]{align-items:baseline;display:flex;justify-content:space-between;width:100%;padding-top:.11765rem}.container[data-v-da979188]:hover{text-decoration:none}.container:hover .link[data-v-da979188]{text-decoration:underline}.timer-icon[data-v-da979188]{margin-right:.29412rem;height:.70588rem;width:.70588rem;fill:var(--color-tutorials-overview-icon)}.time[data-v-da979188]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content-alt);align-items:center;display:inline-flex}.link[data-v-da979188]{padding-right:.58824rem;color:var(--colors-link,var(--color-tutorials-overview-link))}@media only screen and (min-width:768px) and (max-width:1250px){.topic-list[data-v-da979188]{margin-top:2.35294rem}}@media only screen and (max-width:735px){.topic-list[data-v-da979188]{margin-top:1.76471rem}.topic[data-v-da979188]{height:auto;align-items:flex-start}.topic.no-time-estimate[data-v-da979188]{align-items:center}.topic.no-time-estimate .topic-icon[data-v-da979188]{align-self:flex-start;top:0}.topic+.topic[data-v-da979188]{margin-top:1.17647rem}.topic .topic-icon[data-v-da979188]{top:.29412rem;margin-right:.76471rem}.container[data-v-da979188]{flex-wrap:wrap;padding-top:0}.link[data-v-da979188],.time[data-v-da979188]{flex-basis:100%}.time[data-v-da979188]{margin-top:.29412rem}}.chapter[data-v-512b66f6]:focus{outline:none!important}.info[data-v-512b66f6]{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.name[data-v-512b66f6]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-header-text,#f0f0f0)}.name-text[data-v-512b66f6]{word-break:break-word}.eyebrow[data-v-512b66f6]{font-size:1rem;line-height:1.23529;font-weight:400;color:var(--color-tutorials-overview-eyebrow);display:block;font-weight:600;margin-bottom:5px}.content[data-v-512b66f6],.eyebrow[data-v-512b66f6]{font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content[data-v-512b66f6]{font-size:.82353rem;line-height:1.42857;font-weight:400;color:var(--color-tutorials-overview-content-alt)}.asset[data-v-512b66f6]{flex:0 0 190px}.intro[data-v-512b66f6]{flex:0 1 360px}@media only screen and (min-width:768px) and (max-width:1250px){.asset[data-v-512b66f6]{flex:0 0 130px}.intro[data-v-512b66f6]{flex:0 1 260px}}@media only screen and (max-width:767px){.intro[data-v-512b66f6]{flex:0 1 340px}}@media only screen and (max-width:735px){.info[data-v-512b66f6]{display:block;text-align:center}.asset[data-v-512b66f6]{margin:0 45px}.eyebrow[data-v-512b66f6]{margin-bottom:7px}.intro[data-v-512b66f6]{margin-top:40px}}.tile[data-v-2d1dbe98]{background:var(--color-tutorials-overview-fill-secondary,#161616);margin:2px 0;padding:50px 60px}.asset[data-v-2d1dbe98]{margin-bottom:10px}@media only screen and (min-width:768px) and (max-width:1250px){.tile[data-v-2d1dbe98]{padding:40px 30px}}@media only screen and (max-width:735px){.volume[data-v-2d1dbe98]{border-radius:0}.tile[data-v-2d1dbe98]{padding:40px 20px}}.learning-path[data-v-18755bc2]{background:var(--color-tutorials-overview-fill,#000);padding:4.70588rem 0}.main-container[data-v-18755bc2]{margin-left:auto;margin-right:auto;width:980px;align-items:stretch;display:flex;justify-content:space-between}@media only screen and (max-width:1250px){.main-container[data-v-18755bc2]{width:692px}}@media only screen and (max-width:735px){.main-container[data-v-18755bc2]{width:87.5%}}.ide .main-container[data-v-18755bc2]{justify-content:center}.secondary-content-container[data-v-18755bc2]{flex:0 0 200px;width:200px}.tutorials-navigation[data-v-18755bc2]{position:sticky;top:7.76471rem}.primary-content-container[data-v-18755bc2]{flex:0 1 720px;max-width:100%}.content-sections-container .content-section[data-v-18755bc2]{border-radius:12px;overflow:hidden}.content-sections-container .content-section+.content-section[data-v-18755bc2]{margin-top:1.17647rem}@media only screen and (min-width:768px) and (max-width:1250px){.learning-path[data-v-18755bc2]{padding:2.35294rem 0}.primary-content-container[data-v-18755bc2]{flex-basis:auto;margin-left:1.29412rem}.secondary-content-container[data-v-18755bc2]{flex:0 0 180px;width:180px}}@media only screen and (max-width:767px){.secondary-content-container[data-v-18755bc2]{display:none}}@media only screen and (max-width:735px){.content-sections-container .content-section[data-v-18755bc2]{border-radius:0}.content-sections-container .content-section.volume[data-v-18755bc2]{margin-top:1.17647rem}.learning-path[data-v-18755bc2]{padding:0}.main-container[data-v-18755bc2]{width:100%}}.tutorials-overview[data-v-2d1816cc]{height:100%}.tutorials-overview .radial-gradient[data-v-2d1816cc]{margin-top:-3.05882rem;padding-top:3.05882rem;background:var(--color-tutorials-overview-fill-secondary,var(--color-tutorials-overview-background))}@media only screen and (max-width:735px){.tutorials-overview .radial-gradient[data-v-2d1816cc]{margin-top:-2.82353rem;padding-top:2.82353rem}}@-moz-document url-prefix(){.tutorials-overview .radial-gradient{background:#111!important}} \ No newline at end of file diff --git a/docs/css/tutorials-overview.c249c765.css b/docs/css/tutorials-overview.c249c765.css new file mode 100644 index 0000000..01d1d25 --- /dev/null +++ b/docs/css/tutorials-overview.c249c765.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.tutorials-navigation-link[data-v-e9f9b59c]{color:var(--color-tutorials-overview-navigation-link);transition:color .3s linear}.tutorials-navigation-link[data-v-e9f9b59c]:hover{text-decoration:none;transition:none;color:var(--color-tutorials-overview-navigation-link-hover)}.tutorials-navigation-link.active[data-v-e9f9b59c]{color:var(--color-tutorials-overview-navigation-link-active)}.tutorials-navigation-list[data-v-6f2800d1]{list-style-type:none;margin:0}.tutorials-navigation-list li+li[data-v-6f2800d1]:not(.volume--named){margin-top:24px}.tutorials-navigation-list .volume--named+.volume--named[data-v-6f2800d1]{margin-top:12px}.expand-enter-active,.expand-leave-active{transition:height .3s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.toggle[data-v-489416f8]{color:#f0f0f0;line-height:21px;display:flex;align-items:center;width:100%;font-weight:600;padding:6px 6px 6px 0;border-bottom:1px solid #2a2a2a;text-decoration:none;box-sizing:border-box}@media only screen and (max-width:767px){.toggle[data-v-489416f8]{padding-right:6px;border-bottom-color:hsla(0,0%,100%,.1)}}.toggle .text[data-v-489416f8]{word-break:break-word}.toggle[data-v-489416f8]:hover{text-decoration:none}.toggle .toggle-icon[data-v-489416f8]{display:inline-block;transition:transform .2s ease-in;height:.4em;width:.4em;margin-left:auto;margin-right:.2em}.collapsed .toggle .toggle-icon[data-v-489416f8]{transform:rotate(45deg)}.collapsed .toggle[data-v-489416f8],.collapsed .toggle[data-v-489416f8]:hover{color:#b0b0b0}.tutorials-navigation-menu-content[data-v-489416f8]{opacity:1;transition:height .2s ease-in,opacity .2s ease-in}.collapsed .tutorials-navigation-menu-content[data-v-489416f8]{height:0;opacity:0}.tutorials-navigation-menu-content .tutorials-navigation-list[data-v-489416f8]{padding:24px 0 12px 0}.tutorials-navigation[data-v-79093ed6]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.nav-title-content[data-v-854b4dd6]{max-width:100%}.title[data-v-854b4dd6]{color:var(--color-nav-root-title,currentColor);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-854b4dd6]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-854b4dd6]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-854b4dd6]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-854b4dd6]{color:var(--color-nav-dark-root-subhead)}.nav[data-v-b806ee20] .nav-menu{padding-top:0}.nav[data-v-b806ee20] .nav-menu .nav-menu-items{margin-left:auto}@media only screen and (min-width:768px){.nav[data-v-b806ee20] .nav-menu .nav-menu-items .in-page-navigation{display:none}}@media only screen and (min-width:320px) and (max-width:735px){.nav[data-v-b806ee20] .nav-menu .nav-menu-items{padding:18px 0 40px}}.hero[data-v-383dab71]{margin-left:auto;margin-right:auto;width:980px;padding-bottom:4.70588rem;padding-top:4.70588rem}@media only screen and (max-width:1250px){.hero[data-v-383dab71]{width:692px}}@media only screen and (max-width:735px){.hero[data-v-383dab71]{width:87.5%}}@media only screen and (max-width:320px){.hero[data-v-383dab71]{width:215px}}.copy-container[data-v-383dab71]{margin:0 auto;text-align:center;width:720px}.title[data-v-383dab71]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content)}@media only screen and (max-width:1250px){.title[data-v-383dab71]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-383dab71]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-383dab71]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content)}@media only screen and (max-width:735px){.content[data-v-383dab71]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.meta[data-v-383dab71]{color:var(--color-tutorials-overview-content-alt);align-items:center;display:flex;justify-content:center}.meta-content[data-v-383dab71]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.meta .timer-icon[data-v-383dab71]{margin-right:.35294rem;height:16px;width:16px;fill:var(--color-tutorials-overview-icon)}@media only screen and (max-width:735px){.meta .timer-icon[data-v-383dab71]{margin-right:.29412rem;height:.82353rem;width:.82353rem}}.meta .time[data-v-383dab71]{font-size:1.11765rem;line-height:1.21053;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.meta .time[data-v-383dab71]{font-size:1rem;line-height:1.11765;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title+.content[data-v-383dab71]{margin-top:1.47059rem}.content+.meta[data-v-383dab71]{margin-top:1.17647rem}.button-cta[data-v-383dab71]{margin-top:1.76471rem}*+.asset[data-v-383dab71]{margin-top:4.11765rem}@media only screen and (max-width:1250px){.copy-container[data-v-383dab71]{width:636px}}@media only screen and (max-width:735px){.hero[data-v-383dab71]{padding-bottom:1.76471rem;padding-top:2.35294rem}.copy-container[data-v-383dab71]{width:100%}.title+.content[data-v-383dab71]{margin-top:.88235rem}.button-cta[data-v-383dab71]{margin-top:1.41176rem}*+.asset[data-v-383dab71]{margin-top:2.23529rem}}.image[data-v-569db166]{margin-bottom:10px}.name[data-v-569db166]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-header-text,#f0f0f0);word-break:break-word}@media only screen and (max-width:1250px){.name[data-v-569db166]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.name[data-v-569db166]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-569db166]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content-alt);margin-top:10px}.volume-name[data-v-569db166]{padding:50px 60px;text-align:center;background:var(--color-tutorials-overview-fill-secondary,#161616);margin:2px 0}@media only screen and (max-width:735px){.volume-name[data-v-569db166]{padding:40px 20px}}.document-icon[data-v-3a80772b]{margin-left:-3px}.tile[data-v-96abac22]{background:var(--color-tutorials-overview-fill-secondary,#161616);padding:40px 30px;color:var(--color-tutorials-overview-content-alt)}.content[data-v-96abac22] a,a[data-v-96abac22]{color:var(--colors-link,var(--color-tutorials-overview-link))}.icon[data-v-96abac22]{display:block;height:1.47059rem;line-height:1.47059rem;margin-bottom:.58824rem;width:1.47059rem}.icon[data-v-96abac22] svg.svg-icon{width:100%;max-height:100%;fill:var(--color-tutorials-overview-icon)}.icon[data-v-96abac22] svg.svg-icon .svg-icon-stroke{stroke:var(--color-tutorials-overview-content-alt)}.title[data-v-96abac22]{font-size:1.23529rem;line-height:1.19048;font-weight:600;margin-bottom:.8em}.content[data-v-96abac22],.link[data-v-96abac22],.title[data-v-96abac22]{font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content[data-v-96abac22],.link[data-v-96abac22]{font-size:.82353rem;line-height:1.42857;font-weight:400}.content[data-v-96abac22]{color:var(--color-tutorials-overview-content-alt)}.link[data-v-96abac22]{display:block;margin-top:1.17647rem}.link .link-icon[data-v-96abac22]{margin-left:.2em;width:.6em;height:.6em}[data-v-96abac22] .content ul{list-style-type:none;margin-left:0;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}[data-v-96abac22] .content ul li:before{content:"\200B";position:absolute}[data-v-96abac22] .content li+li{margin-top:8px}@media only screen and (max-width:735px){.tile[data-v-96abac22]{padding:1.76471rem 1.17647rem}}.tile-group[data-v-015f9f13]{display:grid;grid-column-gap:2px;grid-row-gap:2px}.tile-group.count-1[data-v-015f9f13]{grid-template-columns:1fr;text-align:center}.tile-group.count-1[data-v-015f9f13] .icon{margin-left:auto;margin-right:auto}.tile-group.count-2[data-v-015f9f13]{grid-template-columns:repeat(2,1fr)}.tile-group.count-3[data-v-015f9f13]{grid-template-columns:repeat(3,1fr)}.tile-group.count-4[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5[data-v-015f9f13]{grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5 .tile[data-v-015f9f13]{grid-column-end:span 2}.tile-group.count-5 .tile[data-v-015f9f13]:nth-of-type(-n+2){grid-column-end:span 3}.tile-group.count-6[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,auto)}@media only screen and (min-width:768px) and (max-width:1250px){.tile-group.tile-group[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}@media only screen and (max-width:735px){.tile-group.count-1[data-v-015f9f13],.tile-group.count-2[data-v-015f9f13],.tile-group.count-3[data-v-015f9f13],.tile-group.count-4[data-v-015f9f13],.tile-group.count-5[data-v-015f9f13],.tile-group.count-6[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}.title[data-v-7f8022c1]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:#f0f0f0}@media only screen and (max-width:1250px){.title[data-v-7f8022c1]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-7f8022c1]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-7f8022c1]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:#b0b0b0;margin-top:10px}.topic-list[data-v-45ec37c5]{list-style-type:none;margin:50px 0 0 0;position:relative}.topic-list li[data-v-45ec37c5]:before{content:"\200B";position:absolute}.topic-list[data-v-45ec37c5]:before{content:"";border-left:1px solid var(--color-fill-quaternary);display:block;height:calc(100% - .88235rem);left:.88235rem;position:absolute;top:50%;transform:translateY(-50%);width:0}.topic[data-v-45ec37c5]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;align-items:flex-start}@media only screen and (max-width:735px){.topic[data-v-45ec37c5]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.topic+.topic[data-v-45ec37c5]{margin-top:.58824rem}.topic .topic-icon[data-v-45ec37c5]{background-color:var(--color-fill-quaternary);border-radius:50%;flex-shrink:0;height:1.76471rem;width:1.76471rem;margin-right:1.17647rem;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:.47059rem;box-sizing:border-box;display:flex;justify-content:center;align-items:center}.topic .topic-icon svg[data-v-45ec37c5]{fill:var(--color-tutorials-overview-icon);max-width:100%;max-height:100%;width:100%}.container[data-v-45ec37c5]{align-items:baseline;display:flex;justify-content:space-between;width:100%;padding-top:.11765rem}.container[data-v-45ec37c5]:hover{text-decoration:none}.container:hover .link[data-v-45ec37c5]{text-decoration:underline}.timer-icon[data-v-45ec37c5]{margin-right:.29412rem;height:.70588rem;width:.70588rem;fill:var(--color-tutorials-overview-icon)}.time[data-v-45ec37c5]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content-alt);align-items:center;display:inline-flex}.link[data-v-45ec37c5]{padding-right:.58824rem;color:var(--colors-link,var(--color-tutorials-overview-link))}@media only screen and (min-width:768px) and (max-width:1250px){.topic-list[data-v-45ec37c5]{margin-top:2.35294rem}}@media only screen and (max-width:735px){.topic-list[data-v-45ec37c5]{margin-top:1.76471rem}.topic[data-v-45ec37c5]{height:auto;align-items:flex-start}.topic.no-time-estimate[data-v-45ec37c5]{align-items:center}.topic.no-time-estimate .topic-icon[data-v-45ec37c5]{align-self:flex-start;top:0}.topic+.topic[data-v-45ec37c5]{margin-top:1.17647rem}.topic .topic-icon[data-v-45ec37c5]{top:.29412rem;margin-right:.76471rem}.container[data-v-45ec37c5]{flex-wrap:wrap;padding-top:0}.link[data-v-45ec37c5],.time[data-v-45ec37c5]{flex-basis:100%}.time[data-v-45ec37c5]{margin-top:.29412rem}}.chapter[data-v-7468bc5e]:focus{outline:none!important}.info[data-v-7468bc5e]{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.name[data-v-7468bc5e]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-header-text,#f0f0f0)}.name-text[data-v-7468bc5e]{word-break:break-word}.eyebrow[data-v-7468bc5e]{font-size:1rem;line-height:1.23529;font-weight:400;color:var(--color-tutorials-overview-eyebrow);display:block;font-weight:600;margin-bottom:5px}.content[data-v-7468bc5e],.eyebrow[data-v-7468bc5e]{font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content[data-v-7468bc5e]{font-size:.82353rem;line-height:1.42857;font-weight:400;color:var(--color-tutorials-overview-content-alt)}.asset[data-v-7468bc5e]{flex:0 0 190px}.intro[data-v-7468bc5e]{flex:0 1 360px}@media only screen and (min-width:768px) and (max-width:1250px){.asset[data-v-7468bc5e]{flex:0 0 130px}.intro[data-v-7468bc5e]{flex:0 1 260px}}@media only screen and (max-width:767px){.intro[data-v-7468bc5e]{flex:0 1 340px}}@media only screen and (max-width:735px){.info[data-v-7468bc5e]{display:block;text-align:center}.asset[data-v-7468bc5e]{margin:0 45px}.eyebrow[data-v-7468bc5e]{margin-bottom:7px}.intro[data-v-7468bc5e]{margin-top:40px}}.tile[data-v-540dbf10]{background:var(--color-tutorials-overview-fill-secondary,#161616);margin:2px 0;padding:50px 60px}.asset[data-v-540dbf10]{margin-bottom:10px}@media only screen and (min-width:768px) and (max-width:1250px){.tile[data-v-540dbf10]{padding:40px 30px}}@media only screen and (max-width:735px){.volume[data-v-540dbf10]{border-radius:0}.tile[data-v-540dbf10]{padding:40px 20px}}.learning-path[data-v-69a72bbc]{background:var(--color-tutorials-overview-fill,#000);padding:4.70588rem 0}.main-container[data-v-69a72bbc]{margin-left:auto;margin-right:auto;width:980px;align-items:stretch;display:flex;justify-content:space-between}@media only screen and (max-width:1250px){.main-container[data-v-69a72bbc]{width:692px}}@media only screen and (max-width:735px){.main-container[data-v-69a72bbc]{width:87.5%}}@media only screen and (max-width:320px){.main-container[data-v-69a72bbc]{width:215px}}.ide .main-container[data-v-69a72bbc]{justify-content:center}.secondary-content-container[data-v-69a72bbc]{flex:0 0 200px;width:200px}.tutorials-navigation[data-v-69a72bbc]{position:sticky;top:7.76471rem}.primary-content-container[data-v-69a72bbc]{flex:0 1 720px;max-width:100%}.content-sections-container .content-section[data-v-69a72bbc]{border-radius:12px;overflow:hidden}.content-sections-container .content-section+.content-section[data-v-69a72bbc]{margin-top:1.17647rem}@media only screen and (min-width:768px) and (max-width:1250px){.learning-path[data-v-69a72bbc]{padding:2.35294rem 0}.primary-content-container[data-v-69a72bbc]{flex-basis:auto;margin-left:1.29412rem}.secondary-content-container[data-v-69a72bbc]{flex:0 0 180px;width:180px}}@media only screen and (max-width:767px){.secondary-content-container[data-v-69a72bbc]{display:none}}@media only screen and (max-width:735px){.content-sections-container .content-section[data-v-69a72bbc]{border-radius:0}.content-sections-container .content-section.volume[data-v-69a72bbc]{margin-top:1.17647rem}.learning-path[data-v-69a72bbc]{padding:0}.main-container[data-v-69a72bbc]{width:100%}}.tutorials-overview[data-v-29ed9b58]{height:100%}.tutorials-overview .radial-gradient[data-v-29ed9b58]{margin-top:-3.05882rem;padding-top:3.05882rem;background:var(--color-tutorials-overview-fill-secondary,var(--color-tutorials-overview-background))}@media only screen and (max-width:735px){.tutorials-overview .radial-gradient[data-v-29ed9b58]{margin-top:-2.82353rem;padding-top:2.82353rem}}@-moz-document url-prefix(){.tutorials-overview .radial-gradient{background:#111!important}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock.json b/docs/data/documentation/corebluetoothmock.json index 724f709..e0d1912 100644 --- a/docs/data/documentation/corebluetoothmock.json +++ b/docs/data/documentation/corebluetoothmock.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"content","content":[{"anchor":"Overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"type":"text","text":" library provides an intuitive API for mocking physical"},{"type":"text","text":" "},{"type":"text","text":"Bluetooth LE devices using an implementation in Swift. This allows:"}]},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Testing Bluetooth LE connectivity on a simulator,"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Simulating a Bluetooth LE device during the development phase,"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Reliable method for automating tests and taking screenshots."}]}]}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Current version supports testing only central manager features."},{"type":"text","text":" "},{"type":"text","text":"The peripheral manager functionality is planned."}]}],"type":"aside","name":"Note"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"kind":"symbol","metadata":{"roleHeading":"Framework","externalID":"CoreBluetoothMock","title":"CoreBluetoothMock","symbolKind":"module","role":"collection","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[[]]},"topicSections":[{"title":"How to migrate a project to CoreBluetooth Mock framework","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide"]},{"title":"How to create mock peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Mocking-peripherals"]},{"title":"How to simulate test events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Simulation"]},{"title":"Known issues","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Known-issues"]},{"title":"Mocking Bluetooth LE Devices","abstract":[{"type":"text","text":"The following objects can be used to create mock implementation of Bluetooth LE"},{"type":"text","text":" "},{"type":"text","text":"devices. Such mock peripherals will be available using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"},{"type":"text","text":"."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]},{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"]},{"title":"Central Manager Initialization Options","abstract":[{"type":"text","text":"Keys used to pass options when initializing a central manager."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey"]},{"title":"Central Manager State Restoration Options","abstract":[{"type":"text","text":"Keys used to pass state restoration options to the central manager initializer."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey"]},{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"]},{"title":"Peripheral Connection Options","abstract":[{"type":"text","text":"Keys used to pass options when connecting to a peripheral."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"]},{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"]},{"title":"Scanning options","abstract":[{"type":"text","text":"Keys used to pass options when scanning for peripherals."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"]},{"title":"Advertisement Data Retrieval Keys","abstract":[{"type":"text","text":"Keys used to specify items in a dictionary of peripheral advertisement data."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"]},{"title":"Other","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Mocking-peripherals":{"role":"article","title":"Mocking Bluetooth LE Devices","abstract":[{"type":"text","text":"How to create mock peripherals to be used in tests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Mocking-peripherals","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/mocking-peripherals"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"role":"symbol","title":"CBMCentralManagerRestoredStatePeripheralsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStatePeripheralsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of peripherals for use when restoring the state of a central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","title":"CBMCentralManagerOptionRestoreIdentifierKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A string containing a unique identifier (UID) for the central manager to instantiate."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Simulation":{"role":"article","title":"Simulation","abstract":[{"type":"text","text":"Set of methods for simulating various Bluetooth LE events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Simulation","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/simulation"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Migration-guide":{"role":"article","title":"Migration guide","abstract":[{"type":"text","text":"Migration guide from "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" to "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothFramework"}]},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/migration-guide"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"role":"symbol","title":"CBMCentralManagerRestoredStateScanOptionsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanOptionsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary of peripheral scan options for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"role":"symbol","title":"CBMError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMError"}],"url":"\/documentation\/corebluetoothmock\/cbmerror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"role":"symbol","title":"CBMATTError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMATTError"}],"url":"\/documentation\/corebluetoothmock\/cbmatterror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"role":"symbol","title":"CBMConnectPeripheralOptionStartDelayKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionStartDelayKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs that you want to scan for."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"type":"text","text":" "},{"type":"text","text":"notification sent by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Known-issues":{"role":"article","title":"Known issues","abstract":[{"type":"text","text":"Known issues when using "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"type":"text","text":" framework instead of native "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Known-issues","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/known-issues"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionAllowDuplicatesKey":{"role":"symbol","title":"CBMCentralManagerScanOptionAllowDuplicatesKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionAllowDuplicatesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the scan should run without duplicate filtering."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionShowPowerAlertKey":{"role":"symbol","title":"CBMCentralManagerOptionShowPowerAlertKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system warns the user if the app instantiates"},{"type":"text","text":" "},{"type":"text","text":"the central manager when Bluetooth service isn’t available."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"}}} \ No newline at end of file +{"sections":[],"topicSections":[{"title":"How to migrate a project to CoreBluetooth Mock framework","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide"]},{"title":"How to create mock peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Mocking-peripherals"]},{"title":"How to simulate test events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Simulation"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Known-issues"],"title":"Known issues"},{"title":"Mocking Bluetooth LE Devices","abstract":[{"type":"text","text":"The following objects can be used to create mock implementation of Bluetooth LE"},{"type":"text","text":" "},{"type":"text","text":"devices. Such mock peripherals will be available using "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","isActive":true},{"type":"text","text":"."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]},{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey"],"abstract":[{"type":"text","text":"Keys used to pass options when initializing a central manager."}],"title":"Central Manager Initialization Options"},{"abstract":[{"text":"Keys used to pass state restoration options to the central manager initializer.","type":"text"}],"title":"Central Manager State Restoration Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey"]},{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"],"title":"Peripheral Connection Options","abstract":[{"type":"text","text":"Keys used to pass options when connecting to a peripheral."}]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"title":"Attributes"},{"abstract":[{"text":"Keys used to pass options when scanning for peripherals.","type":"text"}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"],"title":"Scanning options"},{"abstract":[{"text":"Keys used to specify items in a dictionary of peripheral advertisement data.","type":"text"}],"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"]},{"title":"Other","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock"]}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Framework","title":"CoreBluetoothMock","symbolKind":"module","role":"collection","externalID":"CoreBluetoothMock"},"hierarchy":{"paths":[[]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"kind":"content","content":[{"text":"Overview","type":"heading","level":2,"anchor":"Overview"},{"inlineContent":[{"text":"The ","type":"text"},{"type":"strong","inlineContent":[{"text":"CoreBluetoothMock","type":"text"}]},{"text":" library provides an intuitive API for mocking physical","type":"text"},{"type":"text","text":" "},{"type":"text","text":"Bluetooth LE devices using an implementation in Swift. This allows:"}],"type":"paragraph"},{"items":[{"content":[{"inlineContent":[{"type":"text","text":"Testing Bluetooth LE connectivity on a simulator,"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Simulating a Bluetooth LE device during the development phase,"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Reliable method for automating tests and taking screenshots."}]}]}],"type":"unorderedList"},{"type":"aside","style":"note","content":[{"inlineContent":[{"text":"Current version supports testing only central manager features.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"The peripheral manager functionality is planned."}],"type":"paragraph"}],"name":"Note"}]}],"abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMError","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"url":"\/documentation\/corebluetoothmock\/cbmerror","navigatorTitle":[{"text":"CBMError","kind":"identifier"}],"title":"CBMError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Known-issues":{"role":"article","type":"topic","title":"Known issues","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Known-issues","url":"\/documentation\/corebluetoothmock\/known-issues","abstract":[{"text":"Known issues when using ","type":"text"},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"text":" framework instead of native ","type":"text"},{"type":"strong","inlineContent":[{"text":"CoreBluetooth","type":"text"}]},{"type":"text","text":"."}],"kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Migration-guide":{"url":"\/documentation\/corebluetoothmock\/migration-guide","role":"article","title":"Migration guide","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide","kind":"article","abstract":[{"text":"Migration guide from ","type":"text"},{"inlineContent":[{"type":"text","text":"CoreBluetooth"}],"type":"strong"},{"text":" to ","type":"text"},{"inlineContent":[{"type":"text","text":"CoreBluetoothFramework"}],"type":"strong"},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStatePeripheralsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey","role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStatePeripheralsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","abstract":[{"text":"An array of peripherals for use when restoring the state of a central manager.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionShowPowerAlertKey":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey","abstract":[{"text":"A Boolean value that specifies whether the system warns the user if the app instantiates","type":"text"},{"text":" ","type":"text"},{"text":"the central manager when Bluetooth service isn’t available.","type":"text"}],"role":"symbol","type":"topic","title":"CBMCentralManagerOptionShowPowerAlertKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey","title":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","abstract":[{"text":"An array of service UUIDs that you want to scan for.","type":"text"}],"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","type":"topic","title":"CBMCentralManagerOptionRestoreIdentifierKey","abstract":[{"text":"A string containing a unique identifier (UID) for the central manager to instantiate.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionAllowDuplicatesKey":{"type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerScanOptionAllowDuplicatesKey","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","abstract":[{"type":"text","text":"A Boolean value that specifies whether the scan should run without duplicate filtering."}],"title":"CBMCentralManagerScanOptionAllowDuplicatesKey","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"url":"\/documentation\/corebluetoothmock\/cbmatterror","navigatorTitle":[{"text":"CBMATTError","kind":"identifier"}],"title":"CBMATTError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStateScanOptionsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStateScanOptionsKey","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","abstract":[{"text":"A dictionary of peripheral scan options for use when restoring state.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey","abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionStartDelayKey","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"title":"CBMConnectPeripheralOptionStartDelayKey","role":"symbol","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"type":"topic","abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"text":" ","type":"text"},{"text":"notification sent by a peripheral.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Mocking-peripherals":{"role":"article","type":"topic","title":"Mocking Bluetooth LE Devices","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Mocking-peripherals","url":"\/documentation\/corebluetoothmock\/mocking-peripherals","abstract":[{"type":"text","text":"How to create mock peripherals to be used in tests."}],"kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Simulation":{"role":"article","type":"topic","title":"Simulation","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Simulation","url":"\/documentation\/corebluetoothmock\/simulation","abstract":[{"type":"text","text":"Set of methods for simulating various Bluetooth LE events."}],"kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig.json index 59aa3cb..d219640 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Mocking Bluetooth LE Devices","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"title":"CBMAdvertisementConfig","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}]},"abstract":[{"type":"text","text":"Advertisement configuration."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/init(data:interval:delay:isAdvertisingWhenConnected:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/data","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/delay","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/interval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected"]},{"title":"Default Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations"],"generated":true}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This config includes the advertisement data, interval, initial delay and a flag"},{"type":"text","text":" "},{"type":"text","text":"indicating thether the advertisement is also broadcasted when the device is in"},{"type":"text","text":" "},{"type":"text","text":"connected state."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The advertisement config is set in "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)"},{"type":"text","text":" "},{"type":"text","text":"and can be changed during simulation using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)"},{"type":"text","text":"."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The device’s advertising data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/data","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/data"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/init(data:interval:delay:isAdvertisingWhenConnected:)":{"role":"symbol","title":"init(data:interval:delay:isAdvertisingWhenConnected:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates an advertising configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/init(data:interval:delay:isAdvertisingWhenConnected:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/init(data:interval:delay:isadvertisingwhenconnected:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Hashable-Implementations":{"role":"collectionGroup","title":"Hashable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hashable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/interval":{"role":"symbol","title":"interval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"}],"abstract":[{"type":"text","text":"The advertising interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/interval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/interval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)":{"role":"symbol","title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"kind":"text","text":"("},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"withInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"type":"text","text":" "},{"type":"text","text":"interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/delay":{"role":"symbol","title":"delay","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"}],"abstract":[{"type":"text","text":"The delay of the first advertising packet of that type."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/delay","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/delay"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/isAdvertisingWhenConnected":{"role":"symbol","title":"isAdvertisingWhenConnected","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s"},{"type":"text","text":" "},{"type":"text","text":"connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/init(data:interval:delay:isAdvertisingWhenConnected:)"],"title":"Initializers"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/data","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/delay","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/interval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected"],"title":"Instance Properties"},{"generated":true,"title":"Default Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","interfaceLanguage":"swift"},"relationshipsSections":[{"kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","seeAlsoSections":[{"title":"Mocking Bluetooth LE Devices","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"],"generated":true}],"metadata":{"roleHeading":"Structure","navigatorTitle":[{"text":"CBMAdvertisementConfig","kind":"identifier"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"CBMAdvertisementConfig","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"symbolKind":"struct","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"level":2,"text":"Overview","type":"heading","anchor":"overview"},{"inlineContent":[{"text":"This config includes the advertisement data, interval, initial delay and a flag","type":"text"},{"type":"text","text":" "},{"text":"indicating whether the advertisement is also broadcasted when the device is in","type":"text"},{"type":"text","text":" "},{"text":"connected state.","type":"text"}],"type":"paragraph"},{"inlineContent":[{"text":"The advertisement config is set in ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","isActive":true,"type":"reference"},{"type":"text","text":" "},{"text":"and can be changed during simulation using","type":"text"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig"]}],"abstract":[{"text":"Advertisement configuration.","type":"text"}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/data":{"title":"data","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/data","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/data","type":"topic","abstract":[{"text":"The device’s advertising data.","type":"text"}],"role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"data"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"text":"(","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"], ","kind":"text"},{"text":"withInterval","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"kind":"symbol","role":"symbol","title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"text":" ","type":"text"},{"text":"interval.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/interval":{"type":"topic","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/interval","abstract":[{"type":"text","text":"The advertising interval."}],"title":"interval","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/interval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Equatable-Implementations":{"title":"Equatable Implementations","kind":"article","type":"topic","role":"collectionGroup","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/delay":{"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/delay","kind":"symbol","title":"delay","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/delay","role":"symbol","abstract":[{"type":"text","text":"The delay of the first advertising packet of that type."}],"type":"topic","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"delay","kind":"identifier"},{"kind":"text","text":": "},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Hashable-Implementations":{"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hashable-implementations","kind":"article","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations","title":"Hashable Implementations","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/init(data:interval:delay:isAdvertisingWhenConnected:)":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"interval"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"delay"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"text":", ","kind":"text"},{"text":"isAdvertisingWhenConnected","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates an advertising configuration."}],"type":"topic","title":"init(data:interval:delay:isAdvertisingWhenConnected:)","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/init(data:interval:delay:isadvertisingwhenconnected:)","kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/init(data:interval:delay:isAdvertisingWhenConnected:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/isAdvertisingWhenConnected":{"role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"type":"topic","title":"isAdvertisingWhenConnected","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected","abstract":[{"text":"Should the mock peripheral appear in scan results when it’s","type":"text"},{"type":"text","text":" "},{"text":"connected.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:).json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:).json index a1fbd85..4f08e41 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:17CoreBluetoothMock22CBMAdvertisementConfigV","extendedModule":"Swift","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/!=(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"modules":[{"relatedModules":["Swift"],"name":"CoreBluetoothMock"}],"extendedModule":"Swift","role":"symbol","symbolKind":"op","title":"!=(_:_:)","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:17CoreBluetoothMock22CBMAdvertisementConfigV","roleHeading":"Operator"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/!=(_:_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Equatable.!=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations"]]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/!=(_:_:)":{"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/!=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/!=(_:_:)","type":"topic","role":"symbol","title":"!=(_:_:)","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Equatable-Implementations":{"title":"Equatable Implementations","kind":"article","type":"topic","role":"collectionGroup","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:).json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:).json index 95d48bf..7526ff5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/==(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"==(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV2eeoiySbAC_ACtFZ","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/==(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/==(_:_:)","interfaceLanguage":"swift"},"metadata":{"title":"==(_:_:)","modules":[{"name":"CoreBluetoothMock"}],"extendedModule":"CoreBluetoothMock","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"CBMAdvertisementConfig","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"text":", ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV2eeoiySbAC_ACtFZ","roleHeading":"Operator"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/==(_:_:)":{"title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier","text":"CBMAdvertisementConfig"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/==(_:_:)","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/==(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Equatable-Implementations":{"title":"Equatable Implementations","kind":"article","type":"topic","role":"collectionGroup","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/data.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/data.json index 3a8310f..1d77fd9 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/data.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/data.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/data"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/data","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The device’s advertising data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]"}],"title":"data","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV4dataSDySSypGvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/data":{"role":"symbol","title":"data","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The device’s advertising data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/data","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/data"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"data","kind":"identifier"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/data"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"The device’s advertising data.","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/data","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"title":"data","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV4dataSDySSypGvp","symbolKind":"property","role":"symbol","roleHeading":"Instance Property","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"data"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"]","kind":"text"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/data":{"title":"data","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/data","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/data","type":"topic","abstract":[{"text":"The device’s advertising data.","type":"text"}],"role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"data"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/delay.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/delay.json index 5c0a4a9..268cf79 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/delay.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/delay.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the delay is 0, the library will mock advertisements in regular intervals."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The delay is counted from the time the mock peripheral was added to the simulation"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)"},{"type":"text","text":"."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The devices are advertising also when there are no central managers scanning."}]}],"type":"aside","name":"Note"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/delay"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/delay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The delay of the first advertising packet of that type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"}],"title":"delay","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV5delaySdvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"role":"symbol","title":"simulatePeripherals(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripherals"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/delay":{"role":"symbol","title":"delay","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"}],"abstract":[{"type":"text","text":"The delay of the first advertising packet of that type."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/delay","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/delay"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/delay"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"delay","kind":"identifier"},{"text":": ","kind":"text"},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"}],"languages":["swift"]}]},{"kind":"content","content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the delay is 0, the library will mock advertisements in regular intervals."}]},{"inlineContent":[{"type":"text","text":"The delay is counted from the time the mock peripheral was added to the simulation"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","isActive":true,"type":"reference"},{"type":"text","text":"."}],"type":"paragraph"},{"content":[{"type":"paragraph","inlineContent":[{"text":"The devices are advertising also when there are no central managers scanning.","type":"text"}]}],"type":"aside","name":"Note","style":"note"}]}],"metadata":{"roleHeading":"Instance Property","symbolKind":"property","role":"symbol","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV5delaySdvp","title":"delay","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"delay"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@T@NSTimeInterval","kind":"typeIdentifier","text":"TimeInterval"}],"modules":[{"name":"CoreBluetoothMock"}]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/delay","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The delay of the first advertising packet of that type."}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)","kind":"symbol","title":"simulatePeripherals(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","role":"symbol","type":"topic","abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulatePeripherals","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":"])","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/delay":{"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/delay","kind":"symbol","title":"delay","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/delay","role":"symbol","abstract":[{"type":"text","text":"The delay of the first advertising packet of that type."}],"type":"topic","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"delay","kind":"identifier"},{"kind":"text","text":": "},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations.json index 1e5df0b..18ea7e7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/!=(_:_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/==(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/==(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/!=(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/!=(_:_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/==(_:_:)"],"generated":true}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"Equatable Implementations"},"kind":"article","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/!=(_:_:)":{"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/!=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/!=(_:_:)","type":"topic","role":"symbol","title":"!=(_:_:)","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/==(_:_:)":{"title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier","text":"CBMAdvertisementConfig"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/==(_:_:)","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/==(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:).json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:).json index 06141de..c60a8fe 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:).json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Hashable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV4hash4intoys6HasherVz_tF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Hashable-Implementations":{"role":"collectionGroup","title":"Hashable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hashable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/hash(into:)":{"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hash(into:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Hashable.hash(into:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"text":"into","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"hasher","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV","text":"Hasher"},{"text":")","kind":"text"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/hash(into:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations"]]},"kind":"symbol","metadata":{"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV4hash4intoys6HasherVz_tF","extendedModule":"CoreBluetoothMock","role":"symbol","title":"hash(into:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:s6HasherV","text":"Hasher","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hash(into:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/hash(into:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/hash(into:)","type":"topic","title":"hash(into:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hash(into:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/Hashable-Implementations":{"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hashable-implementations","kind":"article","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations","title":"Hashable Implementations","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations.json index 65e285a..7d7edc7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hashable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"Hashable Implementations"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/hash(into:)":{"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hash(into:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"sections":[],"topicSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/hash(into:)"],"title":"Instance Methods"}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"Hashable Implementations"},"kind":"article","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/Hashable-Implementations","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hashable-implementations"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/hash(into:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/hash(into:)","type":"topic","title":"hash(into:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hash(into:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:).json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:).json index 1d3be49..f460d71 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:).json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":" = 0.0, "},{"kind":"externalParam","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The data that will be advertised. Only the iOS-supported keys are available."}]}]},{"name":"interval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The advertising ingterval in seconds."}]}]},{"name":"delay","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The delay to the first packet, in seconds."}]}]},{"name":"isAdvertisingWhenConnected","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Whether the device advertises also when in"},{"type":"text","text":" "},{"type":"text","text":"connected state."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/init(data:interval:delay:isadvertisingwhenconnected:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/init(data:interval:delay:isAdvertisingWhenConnected:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates an advertising configuration."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"title":"init(data:interval:delay:isAdvertisingWhenConnected:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV4data8interval5delay26isAdvertisingWhenConnectedACSDySSypG_S2dSbtcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/init(data:interval:delay:isAdvertisingWhenConnected:)":{"role":"symbol","title":"init(data:interval:delay:isAdvertisingWhenConnected:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates an advertising configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/init(data:interval:delay:isAdvertisingWhenConnected:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/init(data:interval:delay:isadvertisingwhenconnected:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"interval"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"text":" = 0.0, ","kind":"text"},{"text":"isAdvertisingWhenConnected","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":" = false)"}]}],"kind":"declarations"},{"parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The data that will be advertised. Only the iOS-supported keys are available.","type":"text"}]}],"name":"data"},{"name":"interval","content":[{"inlineContent":[{"text":"The advertising interval in seconds.","type":"text"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The delay to the first packet, in seconds."}]}],"name":"delay"},{"name":"isAdvertisingWhenConnected","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Whether the device advertises also when in"},{"type":"text","text":" "},{"text":"connected state.","type":"text"}]}]}],"kind":"parameters"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/init(data:interval:delay:isadvertisingwhenconnected:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Creates an advertising configuration.","type":"text"}],"kind":"symbol","metadata":{"externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV4data8interval5delay26isAdvertisingWhenConnectedACSDySSypG_S2dSbtcfc","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"init(data:interval:delay:isAdvertisingWhenConnected:)","symbolKind":"init","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"interval"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":", ","kind":"text"},{"text":"delay","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isAdvertisingWhenConnected"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":")"}]},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/init(data:interval:delay:isAdvertisingWhenConnected:)","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/init(data:interval:delay:isAdvertisingWhenConnected:)":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"data"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"interval"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"delay"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"text":", ","kind":"text"},{"text":"isAdvertisingWhenConnected","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates an advertising configuration."}],"type":"topic","title":"init(data:interval:delay:isAdvertisingWhenConnected:)","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/init(data:interval:delay:isadvertisingwhenconnected:)","kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/init(data:interval:delay:isAdvertisingWhenConnected:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/interval.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/interval.json index f43a948..bacebae 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/interval.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/interval.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the intetval is 0, the advertisement will be fired only once. In that case use the "},{"type":"codeVoice","code":"delay"},{"type":"text","text":" "},{"type":"text","text":"parameter to specify when the advertisement is to be sent."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/interval"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/interval","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The advertising interval."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"}],"title":"interval","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV8intervalSdvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/interval":{"role":"symbol","title":"interval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"}],"abstract":[{"type":"text","text":"The advertising interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/interval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/interval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"}}} \ No newline at end of file +{"sections":[],"metadata":{"roleHeading":"Instance Property","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"interval","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@T@NSTimeInterval","kind":"typeIdentifier","text":"TimeInterval"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"interval","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV8intervalSdvp","role":"symbol","symbolKind":"property"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"interval"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"}]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"If the interval is 0, the advertisement will be fired only once. In that case use the ","type":"text"},{"code":"delay","type":"codeVoice"},{"type":"text","text":" "},{"type":"text","text":"parameter to specify when the advertisement is to be sent."}]}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/interval","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"The advertising interval.","type":"text"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/interval"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/interval":{"type":"topic","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/interval","abstract":[{"type":"text","text":"The advertising interval."}],"title":"interval","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/interval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected.json index 584ead7..8abbb16 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s"},{"type":"text","text":" "},{"type":"text","text":"connected."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isAdvertisingWhenConnected","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV26isAdvertisingWhenConnectedSbvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/isAdvertisingWhenConnected":{"role":"symbol","title":"isAdvertisingWhenConnected","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s"},{"type":"text","text":" "},{"type":"text","text":"connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Property","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isAdvertisingWhenConnected","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"isAdvertisingWhenConnected","externalID":"s:17CoreBluetoothMock22CBMAdvertisementConfigV26isAdvertisingWhenConnectedSbvp","role":"symbol","symbolKind":"property"},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","interfaceLanguage":"swift"},"abstract":[{"text":"Should the mock peripheral appear in scan results when it’s","type":"text"},{"type":"text","text":" "},{"type":"text","text":"connected."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"isAdvertisingWhenConnected","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/isAdvertisingWhenConnected":{"role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"type":"topic","title":"isAdvertisingWhenConnected","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected","abstract":[{"text":"Should the mock peripheral appear in scan results when it’s","type":"text"},{"type":"text","text":" "},{"text":"connected.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementdataisconnectable.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementdataisconnectable.json index d5e8234..b955779 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementdataisconnectable.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementdataisconnectable.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value for this key is an "},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":" object. You can use this value to determine"},{"type":"text","text":" "},{"type":"text","text":"whether your app can currently connect to a peripheral."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataIsConnectable","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock33CBMAdvertisementDataIsConnectableSSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Global Variable","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementDataIsConnectable","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"CBMAdvertisementDataIsConnectable","externalID":"s:17CoreBluetoothMock33CBMAdvertisementDataIsConnectableSSvp","role":"symbol","symbolKind":"var"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementDataIsConnectable","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}]}]},{"kind":"content","content":[{"type":"heading","level":2,"text":"Discussion","anchor":"discussion"},{"inlineContent":[{"text":"The value for this key is an ","type":"text"},{"code":"NSNumber","type":"codeVoice"},{"type":"text","text":" object. You can use this value to determine"},{"type":"text","text":" "},{"text":"whether your app can currently connect to a peripheral.","type":"text"}],"type":"paragraph"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey.json index 958e838..de30f2d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an "},{"type":"codeVoice","code":"NSString"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The local name of a peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataLocalNameKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock32CBMAdvertisementDataLocalNameKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"}}} \ No newline at end of file +{"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey"},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"externalID":"s:17CoreBluetoothMock32CBMAdvertisementDataLocalNameKeySSvp","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataLocalNameKey","role":"symbol","symbolKind":"var","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Global Variable"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMAdvertisementDataLocalNameKey","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"languages":["swift"]}]},{"kind":"content","content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"inlineContent":[{"type":"text","text":"The value associated with this key is an "},{"type":"codeVoice","code":"NSString"},{"type":"text","text":"."}],"type":"paragraph"}]}],"abstract":[{"text":"The local name of a peripheral.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey.json index dc0b3d0..d70d72d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an "},{"type":"codeVoice","code":"NSData"},{"type":"text","text":" object."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataManufacturerDataKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock032CBMAdvertisementDataManufacturerE3KeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"}}} \ No newline at end of file +{"seeAlsoSections":[{"generated":true,"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"]}],"metadata":{"symbolKind":"var","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","roleHeading":"Global Variable","externalID":"s:17CoreBluetoothMock032CBMAdvertisementDataManufacturerE3KeySSvp","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementDataManufacturerDataKey","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"The value associated with this key is an ","type":"text"},{"type":"codeVoice","code":"NSData"},{"text":" object.","type":"text"}]}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey"},"kind":"symbol","sections":[],"abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey.json index 4bd5827..8a5a587 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an array of one or more "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects,"},{"type":"text","text":" "},{"type":"text","text":"representing "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" UUIDs."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Because data stored in this area results from not fitting in the main advertisement,"},{"type":"text","text":" "},{"type":"text","text":"UUIDs listed here are “best effort” and may not always be accurate. For details"},{"type":"text","text":" "},{"type":"text","text":"about the overflow area of advertisement data, see the "},{"type":"codeVoice","code":"startAdvertising(_:)"},{"type":"text","text":" "},{"type":"text","text":"method in "},{"type":"codeVoice","code":"CBPeripheralManager"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataOverflowServiceUUIDsKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock43CBMAdvertisementDataOverflowServiceUUIDsKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"inlineContent":[{"type":"text","text":"The value associated with this key is an array of one or more "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","type":"reference","isActive":true},{"type":"text","text":" objects,"},{"text":" ","type":"text"},{"type":"text","text":"representing "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true,"type":"reference"},{"text":" UUIDs.","type":"text"}],"type":"paragraph"},{"inlineContent":[{"type":"text","text":"Because data stored in this area results from not fitting in the main advertisement,"},{"text":" ","type":"text"},{"type":"text","text":"UUIDs listed here are “best effort” and may not always be accurate. For details"},{"text":" ","type":"text"},{"type":"text","text":"about the overflow area of advertisement data, see the "},{"type":"codeVoice","code":"startAdvertising(_:)"},{"type":"text","text":" "},{"type":"text","text":"method in "},{"type":"codeVoice","code":"CBPeripheralManager"},{"type":"text","text":"."}],"type":"paragraph"}]}],"metadata":{"symbolKind":"var","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"roleHeading":"Global Variable","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock43CBMAdvertisementDataOverflowServiceUUIDsKeySSvp","title":"CBMAdvertisementDataOverflowServiceUUIDsKey"},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey.json index 5601396..042f265 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"he keys ("},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects) represent "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" UUIDs, and the values"},{"type":"text","text":" "},{"type":"text","text":"("},{"type":"codeVoice","code":"NSData"},{"type":"text","text":" objects) represent service-specific data."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataServiceDataKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock027CBMAdvertisementDataServiceE3KeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:17CoreBluetoothMock027CBMAdvertisementDataServiceE3KeySSvp","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"CBMAdvertisementDataServiceDataKey","symbolKind":"var","roleHeading":"Global Variable","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMAdvertisementDataServiceDataKey","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}]}]},{"content":[{"type":"heading","level":2,"text":"Discussion","anchor":"discussion"},{"inlineContent":[{"type":"text","text":"he keys ("},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","type":"reference"},{"type":"text","text":" objects) represent "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":" UUIDs, and the values","type":"text"},{"type":"text","text":" "},{"type":"text","text":"("},{"code":"NSData","type":"codeVoice"},{"type":"text","text":" objects) represent service-specific data."}],"type":"paragraph"}],"kind":"content"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey"},"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true,"title":"Advertisement Data Retrieval Keys"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey.json index 43417e4..a1cb703 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An array of service UUIDs."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataServiceUUIDsKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock35CBMAdvertisementDataServiceUUIDsKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"]}],"metadata":{"externalID":"s:17CoreBluetoothMock35CBMAdvertisementDataServiceUUIDsKeySSvp","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementDataServiceUUIDsKey","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"roleHeading":"Global Variable","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"var","title":"CBMAdvertisementDataServiceUUIDsKey","role":"symbol"},"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"title":"Advertisement Data Retrieval Keys"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"An array of service UUIDs."}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey.json index 6b6632f..2d348fd 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an array of one or more "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects,"},{"type":"text","text":" "},{"type":"text","text":"representing "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" UUIDs."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock44CBMAdvertisementDataSolicitedServiceUUIDsKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:17CoreBluetoothMock44CBMAdvertisementDataSolicitedServiceUUIDsKeySSvp","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","roleHeading":"Global Variable","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"symbolKind":"var","modules":[{"name":"CoreBluetoothMock"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"]}],"abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"languages":["swift"]}]},{"content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"text":"The value associated with this key is an array of one or more ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"text":" objects,","type":"text"},{"type":"text","text":" "},{"type":"text","text":"representing "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" UUIDs."}]}],"kind":"content"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","interfaceLanguage":"swift"},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey.json b/docs/data/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey.json index 1f75d7f..63e0752 100644 --- a/docs/data/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey.json +++ b/docs/data/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an instance of "},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"This key and value are available if the peripheral provides its transmitting power level"},{"type":"text","text":" "},{"type":"text","text":"in its advertising packet. You can calculate the path loss by comparing the RSSI"},{"type":"text","text":" "},{"type":"text","text":"value with the transmitting power level."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMAdvertisementDataTxPowerLevelKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock35CBMAdvertisementDataTxPowerLevelKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Advertisement Data Retrieval Keys","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of UUIDs found in the overflow area of the advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"role":"symbol","title":"CBMAdvertisementDataIsConnectable","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the advertising event type is connectable."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"role":"symbol","title":"CBMAdvertisementDataManufacturerDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The manufacturer data of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of solicited service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"role":"symbol","title":"CBMAdvertisementDataServiceDataKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary that contains service-specific advertisement data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"role":"symbol","title":"CBMAdvertisementDataServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey"],"title":"Advertisement Data Retrieval Keys","generated":true}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}]}]},{"content":[{"anchor":"discussion","type":"heading","level":2,"text":"Discussion"},{"inlineContent":[{"text":"The value associated with this key is an instance of ","type":"text"},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":"."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This key and value are available if the peripheral provides its transmitting power level"},{"text":" ","type":"text"},{"text":"in its advertising packet. You can calculate the path loss by comparing the RSSI","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"value with the transmitting power level."}]}],"kind":"content"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey"},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"The transmit power of a peripheral."}],"metadata":{"roleHeading":"Global Variable","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"externalID":"s:17CoreBluetoothMock35CBMAdvertisementDataTxPowerLevelKeySSvp","symbolKind":"var","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"CBMAdvertisementDataTxPowerLevelKey"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataTxPowerLevelKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataTxPowerLevelKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataTxPowerLevelKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"CBMAdvertisementDataTxPowerLevelKey","kind":"symbol","abstract":[{"text":"The transmit power of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceDataKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"CBMAdvertisementDataServiceDataKey","abstract":[{"text":"A dictionary that contains service-specific advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"CBMAdvertisementDataServiceUUIDsKey","kind":"symbol","abstract":[{"text":"An array of service UUIDs.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataSolicitedServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataSolicitedServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataSolicitedServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"CBMAdvertisementDataSolicitedServiceUUIDsKey","abstract":[{"text":"An array of solicited service UUIDs.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataOverflowServiceUUIDsKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataOverflowServiceUUIDsKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataOverflowServiceUUIDsKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"CBMAdvertisementDataOverflowServiceUUIDsKey","abstract":[{"text":"An array of UUIDs found in the overflow area of the advertisement data.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataIsConnectable":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataIsConnectable"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataIsConnectable","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"CBMAdvertisementDataIsConnectable","abstract":[{"text":"A Boolean value that indicates whether the advertising event type is connectable.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataManufacturerDataKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataManufacturerDataKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataManufacturerDataKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"CBMAdvertisementDataManufacturerDataKey","kind":"symbol","abstract":[{"text":"The manufacturer data of a peripheral.","type":"text"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmatterror.json b/docs/data/documentation/corebluetoothmock/cbmatterror.json index a62fb8c..48a93d2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmatterror.json +++ b/docs/data/documentation/corebluetoothmock/cbmatterror.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBATTError","preciseIdentifier":"s:SC10CBATTErrorLeV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmatterror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"title":"CBMATTError","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock11CBMATTErrora","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMATTError"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Other","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"role":"symbol","title":"CBMError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMError"}],"url":"\/documentation\/corebluetoothmock\/cbmerror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"role":"symbol","title":"CBMATTError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMATTError"}],"url":"\/documentation\/corebluetoothmock\/cbmatterror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMATTError","kind":"identifier"},{"text":" = ","kind":"text"},{"preciseIdentifier":"s:SC10CBATTErrorLeV","kind":"typeIdentifier","text":"CBATTError"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmatterror"]}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","interfaceLanguage":"swift"},"seeAlsoSections":[{"title":"Other","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError"],"generated":true}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"metadata":{"externalID":"s:17CoreBluetoothMock11CBMATTErrora","title":"CBMATTError","roleHeading":"Type Alias","navigatorTitle":[{"text":"CBMATTError","kind":"identifier"}],"role":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMATTError","kind":"identifier"}],"symbolKind":"typealias","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMError","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"url":"\/documentation\/corebluetoothmock\/cbmerror","navigatorTitle":[{"text":"CBMError","kind":"identifier"}],"title":"CBMError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"url":"\/documentation\/corebluetoothmock\/cbmatterror","navigatorTitle":[{"text":"CBMATTError","kind":"identifier"}],"title":"CBMATTError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmattribute.json b/docs/data/documentation/corebluetoothmock/cbmattribute.json index 8fe9933..6874aea 100644 --- a/docs/data/documentation/corebluetoothmock/cbmattribute.json +++ b/docs/data/documentation/corebluetoothmock/cbmattribute.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Concrete subclasses of "},{"type":"codeVoice","code":"CBMAttribute"},{"type":"text","text":" (and their mutable counterparts) represent the services a peripheral"},{"type":"text","text":" "},{"type":"text","text":"offers, the characteristics of those services, and the descriptors attached to those characteristics. The concrete"},{"type":"text","text":" "},{"type":"text","text":"subclasses are:"}]},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"}]}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmattribute"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"title":"CBMAttribute","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMAttribute","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"}}} \ No newline at end of file +{"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true,"title":"Attributes"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute"},"sections":[],"metadata":{"roleHeading":"Class","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMAttribute","kind":"identifier"}],"modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"title":"CBMAttribute","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMAttribute","role":"symbol","symbolKind":"class"},"abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"title":"Inherits From","type":"inheritsFrom","kind":"relationships"},{"type":"inheritedBy","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"],"title":"Inherited By","kind":"relationships"},{"title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","type":"conformsTo"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMAttribute","kind":"identifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"content":[{"type":"heading","level":2,"anchor":"overview","text":"Overview"},{"inlineContent":[{"text":"Concrete subclasses of ","type":"text"},{"type":"codeVoice","code":"CBMAttribute"},{"text":" (and their mutable counterparts) represent the services a peripheral","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"offers, the characteristics of those services, and the descriptors attached to those characteristics. The concrete"},{"text":" ","type":"text"},{"type":"text","text":"subclasses are:"}],"type":"paragraph"},{"type":"unorderedList","items":[{"content":[{"inlineContent":[{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","type":"reference","isActive":true}]}]}]}],"kind":"content"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmattribute"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/s7CVarArgP":{"identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","type":"unresolvable","title":"Swift.CVarArg"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","type":"unresolvable","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SH":{"identifier":"doc:\/\/CoreBluetoothMock\/SH","type":"unresolvable","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/objc(cs)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject","type":"unresolvable","title":"ObjectiveC.NSObject"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","type":"unresolvable","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/SQ":{"identifier":"doc:\/\/CoreBluetoothMock\/SQ","type":"unresolvable","title":"Swift.Equatable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","type":"unresolvable","title":"Swift.CustomStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcccdescriptormock.json b/docs/data/documentation/corebluetoothmock/cbmcccdescriptormock.json index 21e9570..0c83c8c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcccdescriptormock.json +++ b/docs/data/documentation/corebluetoothmock/cbmcccdescriptormock.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMClientCharacteristicConfigurationDescriptorMock","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcccdescriptormock"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"title":"CBMCCCDescriptorMock","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock016CBMCCCDescriptorC0a","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCCCDescriptorMock"},{"text":" = ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMClientCharacteristicConfigurationDescriptorMock","text":"CBMClientCharacteristicConfigurationDescriptorMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcccdescriptormock"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"title":"CBMCCCDescriptorMock","externalID":"s:17CoreBluetoothMock016CBMCCCDescriptorC0a","roleHeading":"Type Alias","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"symbolKind":"typealias"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"A type alias of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true,"type":"reference"},{"text":".","type":"text"}],"kind":"symbol","seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"],"title":"Attributes","generated":true}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager.json index b0c38ea..1dc2ce8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"title":"CBMCentralManager","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}]},"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initialization","abstract":[{"type":"text","text":"Do not create instances of the manager using this method."},{"type":"text","text":" "},{"type":"text","text":"Instead, use "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"},{"type":"text","text":"."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/init(_:)"]},{"title":"Establishing or Canceling Connections with Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"]},{"title":"Retrieving Lists of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"]},{"title":"Scanning or Stopping Scans of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning"]},{"title":"Monitoring Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property"]},{"title":"Receiving Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption"]},{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.property"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"CBMCentralManager"},{"type":"text","text":" objects manage discovered or connected remote peripheral devices"},{"type":"text","text":" "},{"type":"text","text":"(represented by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects), including scanning for, discovering, and connecting"},{"type":"text","text":" "},{"type":"text","text":"to advertising peripherals."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Before calling the "},{"type":"codeVoice","code":"CBMCentralManager"},{"type":"text","text":" methods, set the state of the central manager object to"},{"type":"text","text":" "},{"type":"text","text":"powered on, as indicated by the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":" constant. This state"},{"type":"text","text":" "},{"type":"text","text":"indicates that the central device (your iPhone or iPad, for instance) supports Bluetooth low energy"},{"type":"text","text":" "},{"type":"text","text":"and that Bluetooth is on and available for use."}]},{"anchor":"Initialization","level":2,"type":"heading","text":"Initialization"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The CoreBluetoothMock library provides two implementations of "},{"type":"codeVoice","code":"CBMCentralManager"},{"type":"text","text":":"}]},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"}]}]}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Because of this, instance of the manager has to be created using a"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"},{"type":"text","text":"."}]},{"type":"codeListing","syntax":"swift","code":["let manager = CBMCentralManagerFactory.initiate(delegate: self, queue: ...)"]}]}],"references":{"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate object that will receive central events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.type.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"role":"symbol","title":"CBMManagerState.unknown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/scanForPeripherals(withServices:options:)":{"role":"symbol","title":"scanForPeripherals(withServices:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.property"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","title":"CBMManagerState.poweredOn","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/isScanning":{"role":"symbol","title":"isScanning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"role":"symbol","title":"CBMConnectionEvent","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEvent"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectionevent"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/init(_:)":{"role":"symbol","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"A dummy initializer that allows overriding "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" class and also"},{"type":"text","text":" "},{"type":"text","text":"gives a warning when trying to migrate from native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" "},{"type":"text","text":"to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":". This method does nothing."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/init(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/stopScan()":{"role":"symbol","title":"stopScan()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Asks the central manager to stop scanning for peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEventMatchingOption":{"role":"symbol","title":"CBMConnectionEventMatchingOption","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"abstract":[{"type":"text","text":"A set of options to use when registering for connection events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"}}} \ No newline at end of file +{"sections":[],"metadata":{"roleHeading":"Class","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"title":"CBMCentralManager","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","role":"symbol","symbolKind":"class"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Overview","type":"heading","anchor":"overview","level":2},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"CBMCentralManager"},{"type":"text","text":" objects manage discovered or connected remote peripheral devices"},{"type":"text","text":" "},{"type":"text","text":"(represented by "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","type":"reference"},{"type":"text","text":" objects), including scanning for, discovering, and connecting"},{"type":"text","text":" "},{"type":"text","text":"to advertising peripherals."}]},{"inlineContent":[{"type":"text","text":"Before calling the "},{"code":"CBMCentralManager","type":"codeVoice"},{"type":"text","text":" methods, set the state of the central manager object to"},{"type":"text","text":" "},{"type":"text","text":"powered on, as indicated by the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"reference","isActive":true},{"text":" constant. This state","type":"text"},{"type":"text","text":" "},{"type":"text","text":"indicates that the central device (your iPhone or iPad, for instance) supports Bluetooth low energy"},{"type":"text","text":" "},{"type":"text","text":"and that Bluetooth is on and available for use."}],"type":"paragraph"},{"level":2,"anchor":"Initialization","type":"heading","text":"Initialization"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The CoreBluetoothMock library provides two implementations of "},{"code":"CBMCentralManager","type":"codeVoice"},{"text":":","type":"text"}]},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","type":"reference","isActive":true}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","isActive":true}]}]}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Because of this, instance of the manager has to be created using a"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","isActive":true,"type":"reference"},{"type":"text","text":"."}]},{"code":["let manager = CBMCentralManagerFactory.initiate(delegate: self, queue: ...)"],"syntax":"swift","type":"codeListing"}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"kind":"relationships","type":"inheritsFrom","title":"Inherits From"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"type":"conformsTo","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"topicSections":[{"abstract":[{"text":"Do not create instances of the manager using this method.","type":"text"},{"text":" ","type":"text"},{"text":"Instead, use ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"},{"text":".","type":"text"}],"title":"Initialization","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/init(_:)"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"],"title":"Establishing or Canceling Connections with Peripherals"},{"title":"Retrieving Lists of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning"],"title":"Scanning or Stopping Scans of Peripherals"},{"title":"Monitoring Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property"]},{"title":"Receiving Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption"]},{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.property"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"title":"cancelPeripheralConnection(_:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.type.property":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","abstract":[{"text":"The current authorization status for using Bluetooth.","type":"text"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"title":"authorization","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property","kind":"symbol","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/init(_:)":{"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":")","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/init(_:)","abstract":[{"type":"text","text":"A dummy initializer that allows overriding "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":" class and also","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"gives a warning when trying to migrate from native "},{"type":"codeVoice","code":"CBCentralManager"},{"text":" ","type":"text"},{"text":"to ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"text":". This method does nothing.","type":"text"}],"title":"init(_:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/init(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/isScanning":{"kind":"symbol","title":"isScanning","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isScanning","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning","role":"symbol"},"doc://CoreBluetoothMock/SH":{"identifier":"doc:\/\/CoreBluetoothMock\/SH","type":"unresolvable","title":"Swift.Hashable"},"doc://CoreBluetoothMock/SQ":{"identifier":"doc:\/\/CoreBluetoothMock\/SQ","type":"unresolvable","title":"Swift.Equatable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","type":"unresolvable","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","url":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","abstract":[{"text":"A change to the connection state of a peer.","type":"text"}],"role":"symbol","navigatorTitle":[{"text":"CBMConnectionEvent","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEvent"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/scanForPeripherals(withServices:options:)":{"kind":"symbol","title":"scanForPeripherals(withServices:options:)","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scanForPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)","abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"role":"symbol"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","type":"unresolvable","title":"Swift.CustomStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"role":"symbol","title":"CBMManagerState.unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"kind":"symbol","role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","abstract":[{"text":"Returns a list of the peripherals connected to the system whose","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"services match a given set of criteria."}]},"doc://CoreBluetoothMock/objc(pl)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","type":"unresolvable","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/state":{"kind":"symbol","title":"state","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","type":"reference","isActive":true},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/delegate":{"kind":"symbol","title":"delegate","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"delegate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate","abstract":[{"text":"The delegate object that will receive central events.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/stopScan()":{"kind":"symbol","title":"stopScan()","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"stopScan","kind":"identifier"},{"kind":"text","text":"()"}],"abstract":[{"text":"Asks the central manager to stop scanning for peripherals.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"poweredOn","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"topic","title":"CBMManagerState.poweredOn","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEventMatchingOption":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption","title":"CBMConnectionEventMatchingOption","url":"\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption","abstract":[{"type":"text","text":"A set of options to use when registering for connection events."}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMConnectionEventMatchingOption","kind":"identifier"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"title":"ObjectiveC.NSObject","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.property":{"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.property","type":"topic","title":"authorization","abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.property","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property.json index 789120f..32e9f83 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"kind":"symbol","metadata":{"role":"symbol","title":"authorization","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC13authorizationSo22CBManagerAuthorizationVvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"deprecatedAt":"13.1","beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"deprecatedAt":"13.1","beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"deprecatedAt":"6.1","beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.property","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.property"]}],"sections":[],"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}],"kind":"declarations"}],"metadata":{"title":"authorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"role":"symbol","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC13authorizationSo22CBManagerAuthorizationVvp","symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"deprecated":false,"deprecatedAt":"13.1","introducedAt":"13.0","beta":false,"unavailable":false,"name":"iOS"},{"deprecated":false,"name":"macOS","unavailable":false,"introducedAt":"10.15","beta":false},{"deprecatedAt":"13.1","deprecated":false,"beta":false,"name":"tvOS","introducedAt":"13.0","unavailable":false},{"name":"watchOS","introducedAt":"6.0","deprecatedAt":"6.1","unavailable":false,"beta":false,"deprecated":false}],"roleHeading":"Instance Property"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.property":{"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.property","type":"topic","title":"authorization","abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.property","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property.json index 049c513..d5b36eb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Check this property in your implementation of the delegate methods"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)"},{"type":"text","text":" "},{"type":"text","text":"and "},{"type":"codeVoice","code":"CBPeripheralManager.peripheralManagerDidUpdateState(_:)"},{"type":"text","text":" "},{"type":"text","text":"to determine whether your app can use Core Bluetooth. You can also"},{"type":"text","text":" "},{"type":"text","text":"use it to check the app’s authorization status before creating a "},{"type":"codeVoice","code":"CBManager"},{"type":"text","text":" instance."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The initial value of this property is "},{"type":"codeVoice","code":"CBMManagerAuthorization.notDetermined"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"kind":"symbol","metadata":{"role":"symbol","title":"authorization","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC13authorizationSo22CBManagerAuthorizationVvpZ","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.1","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.1","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.1","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Monitoring Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate object that will receive central events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","title":"CBMManagerState.poweredOn","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"role":"symbol","title":"CBMManagerState.unknown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"role":"symbol","title":"CBMManagerState.poweredOff","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.type.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManagerDidUpdateState(_:)":{"role":"symbol","title":"centralManagerDidUpdateState(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Invoked whenever the central manager’s state has been updated. Commands"},{"type":"text","text":" "},{"type":"text","text":"should only be issued when the state is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"type":"text","text":"manager become invalid and must be retrieved or discovered again."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)"}}} \ No newline at end of file +{"metadata":{"externalID":"s:17CoreBluetoothMock17CBMCentralManagerC13authorizationSo22CBManagerAuthorizationVvpZ","platforms":[{"unavailable":false,"deprecated":false,"beta":false,"name":"iOS","introducedAt":"13.1"},{"deprecated":false,"introducedAt":"10.15","name":"macOS","unavailable":false,"beta":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.1","name":"tvOS"},{"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"6.1","beta":false}],"title":"authorization","symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"}],"role":"symbol","roleHeading":"Type Property"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property"]}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state"],"generated":true,"title":"Monitoring Properties"}],"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","type":"heading","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"Check this property in your implementation of the delegate methods"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","isActive":true,"type":"reference"},{"type":"text","text":" "},{"type":"text","text":"and "},{"type":"codeVoice","code":"CBPeripheralManager.peripheralManagerDidUpdateState(_:)"},{"type":"text","text":" "},{"type":"text","text":"to determine whether your app can use Core Bluetooth. You can also"},{"type":"text","text":" "},{"text":"use it to check the app’s authorization status before creating a ","type":"text"},{"type":"codeVoice","code":"CBManager"},{"type":"text","text":" instance."}]},{"inlineContent":[{"type":"text","text":"The initial value of this property is "},{"type":"codeVoice","code":"CBMManagerAuthorization.notDetermined"},{"text":".","type":"text"}],"type":"paragraph"}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"role":"symbol","title":"CBMManagerState.unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"poweredOn","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"topic","title":"CBMManagerState.poweredOn","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.type.property":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","abstract":[{"text":"The current authorization status for using Bluetooth.","type":"text"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"title":"authorization","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property","kind":"symbol","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOff","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"CBMManagerState.poweredOff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/delegate":{"kind":"symbol","title":"delegate","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"delegate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate","abstract":[{"text":"The delegate object that will receive central events.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/state":{"kind":"symbol","title":"state","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","type":"reference","isActive":true},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManagerDidUpdateState(_:)":{"type":"topic","role":"symbol","title":"centralManagerDidUpdateState(_:)","abstract":[{"text":"Invoked whenever the central manager’s state has been updated. Commands","type":"text"},{"type":"text","text":" "},{"text":"should only be issued when the state is ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","isActive":true},{"text":".","type":"text"},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"reference"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"text":"manager become invalid and must be retrieved or discovered again.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","required":true,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManagerDidUpdateState","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:).json index b77ddbc..ee07dd2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral to which the central manager"},{"type":"text","text":" "},{"type":"text","text":"is either trying to connect or has already"},{"type":"text","text":" "},{"type":"text","text":"connected."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This method is non-blocking, and any "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" class commands"},{"type":"text","text":" "},{"type":"text","text":"that are still pending to peripheral may not complete. Because"},{"type":"text","text":" "},{"type":"text","text":"other apps may still have a connection to the peripheral, canceling"},{"type":"text","text":" "},{"type":"text","text":"a local connection doesn’t guarantee that the underlying physical"},{"type":"text","text":" "},{"type":"text","text":"link is immediately disconnected. From the app’s perspective,"},{"type":"text","text":" "},{"type":"text","text":"however, the peripheral is effectively disconnected, and the"},{"type":"text","text":" "},{"type":"text","text":"central manager object calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48"},{"type":"text","text":" method of its"},{"type":"text","text":" "},{"type":"text","text":"delegate object."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"title":"cancelPeripheralConnection(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC26cancelPeripheralConnectionyyAA13CBMPeripheral_pF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Establishing or Canceling Connections with Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked upon the disconnection of a peripheral that was"},{"type":"text","text":" "},{"type":"text","text":"connected by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If the disconnection was not initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"type":"text","text":" "},{"type":"text","text":"Once this method has been called, no more methods will be"},{"type":"text","text":" "},{"type":"text","text":"invoked on peripheral’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"}}} \ No newline at end of file +{"sections":[],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"],"generated":true,"title":"Establishing or Canceling Connections with Peripherals"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","title":"cancelPeripheralConnection(_:)","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC26cancelPeripheralConnectionyyAA13CBMPeripheral_pF","role":"symbol"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"text":"The peripheral to which the central manager","type":"text"},{"type":"text","text":" "},{"text":"is either trying to connect or has already","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"connected."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","type":"heading","level":2,"text":"Discussion"},{"inlineContent":[{"type":"text","text":"This method is non-blocking, and any "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","type":"reference","isActive":true},{"type":"text","text":" class commands"},{"type":"text","text":" "},{"type":"text","text":"that are still pending to peripheral may not complete. Because"},{"text":" ","type":"text"},{"type":"text","text":"other apps may still have a connection to the peripheral, canceling"},{"type":"text","text":" "},{"type":"text","text":"a local connection doesn’t guarantee that the underlying physical"},{"text":" ","type":"text"},{"type":"text","text":"link is immediately disconnected. From the app’s perspective,"},{"type":"text","text":" "},{"text":"however, the peripheral is effectively disconnected, and the","type":"text"},{"type":"text","text":" "},{"text":"central manager object calls the","type":"text"},{"text":" ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","isActive":true},{"type":"text","text":" method of its"},{"type":"text","text":" "},{"type":"text","text":"delegate object."}],"type":"paragraph"}]}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"title":"cancelPeripheralConnection(_:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48","kind":"symbol","required":true,"abstract":[{"text":"This method is invoked upon the disconnection of a peripheral that was","type":"text"},{"text":" ","type":"text"},{"text":"connected by ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":".","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"If the disconnection was not initiated by"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"text":" ","type":"text"},{"text":"Once this method has been called, no more methods will be","type":"text"},{"text":" ","type":"text"},{"text":"invoked on peripheral’s ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","isActive":true,"type":"reference"},{"type":"text","text":"."}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"role":"symbol","defaultImplementations":1,"type":"topic","title":"centralManager(_:didDisconnectPeripheral:error:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:).json index a50a785..e03bc09 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral to which the central is attempting"},{"type":"text","text":" "},{"type":"text","text":"to connect."}]}]},{"name":"options","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A dictionary to customize the behavior of the"},{"type":"text","text":" "},{"type":"text","text":"connection. For available options, see Peripheral"},{"type":"text","text":" "},{"type":"text","text":"Connection Options."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"After successfully establishing a local connection to a peripheral,"},{"type":"text","text":" "},{"type":"text","text":"the central manager object calls the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh"},{"type":"text","text":" "},{"type":"text","text":"method of its delegate object. If the connection attempt fails, the"},{"type":"text","text":" "},{"type":"text","text":"central manager object calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb"},{"type":"text","text":" "},{"type":"text","text":"method of its delegate object instead."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Attempts to connect to a peripheral don’t time out."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"To explicitly cancel a pending connection to a peripheral, call the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":" method."},{"type":"text","text":" "},{"type":"text","text":"Deallocating peripheral also implicitly calls "},{"type":"codeVoice","code":"cancelPeripheralConnection(_:)"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"title":"connect(_:options:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC7connect_7optionsyAA13CBMPeripheral_p_SDySSypGSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Establishing or Canceling Connections with Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"type":"text","text":" "},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-6tlfh":{"role":"symbol","title":"centralManager(_:didConnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]? = nil)","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The peripheral to which the central is attempting","type":"text"},{"type":"text","text":" "},{"type":"text","text":"to connect."}]}],"name":"peripheral"},{"name":"options","content":[{"inlineContent":[{"text":"A dictionary to customize the behavior of the","type":"text"},{"text":" ","type":"text"},{"text":"connection. For available options, see Peripheral","type":"text"},{"type":"text","text":" "},{"text":"Connection Options.","type":"text"}],"type":"paragraph"}]}]},{"kind":"content","content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"inlineContent":[{"text":"After successfully establishing a local connection to a peripheral,","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"the central manager object calls the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","isActive":true,"type":"reference"},{"text":" ","type":"text"},{"type":"text","text":"method of its delegate object. If the connection attempt fails, the"},{"text":" ","type":"text"},{"type":"text","text":"central manager object calls the"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","isActive":true,"type":"reference"},{"text":" ","type":"text"},{"text":"method of its delegate object instead.","type":"text"}],"type":"paragraph"},{"inlineContent":[{"type":"text","text":"Attempts to connect to a peripheral don’t time out."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"text":"To explicitly cancel a pending connection to a peripheral, call the","type":"text"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":" method."},{"type":"text","text":" "},{"text":"Deallocating peripheral also implicitly calls ","type":"text"},{"code":"cancelPeripheralConnection(_:)","type":"codeVoice"},{"text":".","type":"text"}]}]}],"seeAlsoSections":[{"title":"Establishing or Canceling Connections with Peripherals","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"metadata":{"title":"connect(_:options:)","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"role":"symbol","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC7connect_7optionsyAA13CBMPeripheral_p_SDySSypGSgtF"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"]}],"kind":"symbol","abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"title":"cancelPeripheralConnection(_:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"text":" ","type":"text"},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"role":"symbol","defaultImplementations":1,"title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didFailToConnect","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-6tlfh":{"title":"centralManager(_:didConnect:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"abstract":[],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/delegate.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/delegate.json index ff60338..56da38f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/delegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/delegate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The delegate object that will receive central events."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC8delegateAA0dE8Delegate_pSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Monitoring Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate object that will receive central events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.type.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"role":"symbol","title":"CBMManagerState.unknown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property"],"generated":true,"title":"Monitoring Properties"}],"abstract":[{"text":"The delegate object that will receive central events.","type":"text"}],"metadata":{"role":"symbol","title":"delegate","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC8delegateAA0dE8Delegate_pSgvp","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"symbolKind":"property","roleHeading":"Instance Property"},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"role":"symbol","title":"CBMManagerState.unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/delegate":{"kind":"symbol","title":"delegate","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"delegate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate","abstract":[{"text":"The delegate object that will receive central events.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.type.property":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","abstract":[{"text":"The current authorization status for using Bluetooth.","type":"text"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"title":"authorization","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property","kind":"symbol","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/state":{"kind":"symbol","title":"state","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","type":"reference","isActive":true},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/init(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/init(_:).json index 82a38e6..f453871 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/init(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/init(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"dummy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"dummy","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This can be anything."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If you need to create your own implementation of central manager, call it. See also"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/55"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"If you migrated to CoreBluetooth Mock and are getting an error with"},{"type":"text","text":" "},{"type":"text","text":"instantiating a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" instance, use"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)"},{"type":"text","text":" instead."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/init(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/init(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A dummy initializer that allows overriding "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" class and also"},{"type":"text","text":" "},{"type":"text","text":"gives a warning when trying to migrate from native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" "},{"type":"text","text":"to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":". This method does nothing."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"title":"init(_:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock17CBMCentralManagerCyACSbcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:forceMock:)":{"role":"symbol","title":"instance(delegate:queue:forceMock:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/issues/55":{"title":"Issue #55","titleInlineContent":[{"type":"text","text":"Issue #55"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/55","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/55"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/init(_:)":{"role":"symbol","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"A dummy initializer that allows overriding "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" class and also"},{"type":"text","text":" "},{"type":"text","text":"gives a warning when trying to migrate from native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" "},{"type":"text","text":"to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":". This method does nothing."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/init(_:)"}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"abstract":[{"type":"text","text":"A dummy initializer that allows overriding "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference"},{"type":"text","text":" class and also"},{"text":" ","type":"text"},{"text":"gives a warning when trying to migrate from native ","type":"text"},{"code":"CBCentralManager","type":"codeVoice"},{"text":" ","type":"text"},{"text":"to ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":". This method does nothing."}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"dummy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"This can be anything.","type":"text"}]}],"name":"dummy"}]},{"content":[{"anchor":"discussion","type":"heading","level":2,"text":"Discussion"},{"inlineContent":[{"text":"If you need to create your own implementation of central manager, call it. See also","type":"text"},{"type":"text","text":" "},{"type":"reference","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/55","isActive":true},{"text":".","type":"text"}],"type":"paragraph"},{"inlineContent":[{"type":"text","text":"If you migrated to CoreBluetooth Mock and are getting an error with"},{"type":"text","text":" "},{"type":"text","text":"instantiating a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"text":" instance, use","type":"text"},{"type":"text","text":" "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","type":"reference"},{"text":" instead.","type":"text"}],"type":"paragraph"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/init(_:)"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/init(_:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"role":"symbol","roleHeading":"Initializer","modules":[{"name":"CoreBluetoothMock"}],"title":"init(_:)","symbolKind":"init","externalID":"s:17CoreBluetoothMock17CBMCentralManagerCyACSbcfc","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/issues/55":{"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/55","title":"Issue #55","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/55","titleInlineContent":[{"type":"text","text":"Issue #55"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:forceMock:)":{"title":"instance(delegate:queue:forceMock:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"instance"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)OS_dispatch_queue","kind":"typeIdentifier","text":"DispatchQueue"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"forceMock"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"}],"abstract":[{"text":"Returns the implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":", depending on the environment.","type":"text"},{"text":" ","type":"text"},{"text":"On a simulator, or when the ","type":"text"},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/init(_:)":{"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":")","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/init(_:)","abstract":[{"type":"text","text":"A dummy initializer that allows overriding "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":" class and also","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"gives a warning when trying to migrate from native "},{"type":"codeVoice","code":"CBCentralManager"},{"text":" ","type":"text"},{"text":"to ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"text":". This method does nothing.","type":"text"}],"title":"init(_:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/init(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/isscanning.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/isscanning.json index 1221c1c..b9b4c15 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/isscanning.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/isscanning.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"dynamic"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"kind":"symbol","metadata":{"role":"symbol","title":"isScanning","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager(py)isScanning","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"9.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Scanning or Stopping Scans of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/isScanning":{"role":"symbol","title":"isScanning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/scanForPeripherals(withServices:options:)":{"role":"symbol","title":"scanForPeripherals(withServices:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/stopScan()":{"role":"symbol","title":"stopScan()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Asks the central manager to stop scanning for peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"sections":[],"metadata":{"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager(py)isScanning","platforms":[{"beta":false,"introducedAt":"9.0","unavailable":false,"name":"iOS","deprecated":false}],"title":"isScanning","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","roleHeading":"Instance Property","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()"],"title":"Scanning or Stopping Scans of Peripherals","generated":true}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"@objc","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"keyword","text":"dynamic"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" { get }","kind":"text"}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/scanForPeripherals(withServices:options:)":{"kind":"symbol","title":"scanForPeripherals(withServices:options:)","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scanForPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)","abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/stopScan()":{"kind":"symbol","title":"stopScan()","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"stopScan","kind":"identifier"},{"kind":"text","text":"()"}],"abstract":[{"text":"Asks the central manager to stop scanning for peripherals.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/isScanning":{"kind":"symbol","title":"isScanning","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isScanning","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:).json index eab706a..1ad6115 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"serviceUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of service UUIDs, represented by"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBMUUID"},{"type":"text","text":" objects."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of the peripherals that are currently connected"},{"type":"text","text":" "},{"type":"text","text":"to the system and that contain any of the services"},{"type":"text","text":" "},{"type":"text","text":"specified in the "},{"type":"codeVoice","code":"serviceUUID"},{"type":"text","text":" parameter."}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The list of connected peripherals can include those that other apps"},{"type":"text","text":" "},{"type":"text","text":"have connected. You need to connect these peripherals locally using"},{"type":"text","text":" "},{"type":"text","text":"the "},{"type":"codeVoice","code":"connect(_:options:)"},{"type":"text","text":" method before using them."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"kind":"symbol","metadata":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC28retrieveConnectedPeripherals12withServicesSayAA13CBMPeripheral_pGSaySo6CBUUIDCG_tF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"7.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Retrieving Lists of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"text":"services match a given set of criteria.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":"]","kind":"text"}]}]},{"kind":"parameters","parameters":[{"name":"serviceUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of service UUIDs, represented by"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBMUUID"},{"text":" objects.","type":"text"}]}]}]},{"kind":"content","content":[{"type":"heading","text":"Return Value","anchor":"return-value","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of the peripherals that are currently connected"},{"type":"text","text":" "},{"text":"to the system and that contain any of the services","type":"text"},{"text":" ","type":"text"},{"text":"specified in the ","type":"text"},{"code":"serviceUUID","type":"codeVoice"},{"type":"text","text":" parameter."}]}]},{"kind":"content","content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"type":"paragraph","inlineContent":[{"text":"The list of connected peripherals can include those that other apps","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"have connected. You need to connect these peripherals locally using"},{"text":" ","type":"text"},{"text":"the ","type":"text"},{"code":"connect(_:options:)","type":"codeVoice"},{"type":"text","text":" method before using them."}]}]}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"],"title":"Retrieving Lists of Peripherals","generated":true}],"metadata":{"platforms":[{"unavailable":false,"deprecated":false,"introducedAt":"7.0","beta":false,"name":"iOS"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC28retrieveConnectedPeripherals12withServicesSayAA13CBMPeripheral_pGSaySo6CBUUIDCG_tF","title":"retrieveConnectedPeripherals(withServices:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"kind":"symbol","role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","abstract":[{"text":"Returns a list of the peripherals connected to the system whose","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"services match a given set of criteria."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:).json index c963757..022af99 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":" "},{"kind":"internalParam","text":"identifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"identifiers","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of peripheral identifiers"},{"type":"text","text":" "},{"type":"text","text":"(represented by "},{"type":"codeVoice","code":"NSUUID"},{"type":"text","text":" objects) from which"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects can be retrieved."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of peripherals that the central manager is able"},{"type":"text","text":" "},{"type":"text","text":"to match to the provided identifiers."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"kind":"symbol","metadata":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC19retrievePeripherals15withIdentifiersSayAA13CBMPeripheral_pGSay10Foundation4UUIDVG_tF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"7.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Retrieving Lists of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"deprecated":false,"introducedAt":"7.0","name":"iOS","unavailable":false}],"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC19retrievePeripherals15withIdentifiersSayAA13CBMPeripheral_pGSay10Foundation4UUIDVG_tF","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"text":"]) -> [","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"seeAlsoSections":[{"title":"Retrieving Lists of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"],"generated":true}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"text":"withIdentifiers","kind":"externalParam"},{"kind":"text","text":" "},{"text":"identifiers","kind":"internalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier","text":"UUID"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]},{"parameters":[{"name":"identifiers","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of peripheral identifiers"},{"text":" ","type":"text"},{"text":"(represented by ","type":"text"},{"type":"codeVoice","code":"NSUUID"},{"text":" objects) from which","type":"text"},{"text":" ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","type":"reference"},{"type":"text","text":" objects can be retrieved."}]}]}],"kind":"parameters"},{"kind":"content","content":[{"type":"heading","text":"Return Value","level":2,"anchor":"return-value"},{"inlineContent":[{"text":"A list of peripherals that the central manager is able","type":"text"},{"type":"text","text":" "},{"text":"to match to the provided identifiers.","type":"text"}],"type":"paragraph"}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"kind":"symbol","role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","abstract":[{"text":"Returns a list of the peripherals connected to the system whose","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"services match a given set of criteria."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:).json index dcc6519..07b7fef 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"serviceUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An array of "},{"type":"codeVoice","code":"CBMUUID"},{"type":"text","text":" objects that the app is"},{"type":"text","text":" "},{"type":"text","text":"interested in. Each "},{"type":"codeVoice","code":"CBMUUID"},{"type":"text","text":" object represents the"},{"type":"text","text":" "},{"type":"text","text":"UUID of a service that a peripheral advertises."}]}]},{"name":"options","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A dictionary of options for customizing the scan. For"},{"type":"text","text":" "},{"type":"text","text":"available options, see Peripheral Scanning Options."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"You can provide an array of "},{"type":"codeVoice","code":"CBMUUID"},{"type":"text","text":" objects — representing service"},{"type":"text","text":" "},{"type":"text","text":"UUIDs — in the serviceUUIDs parameter. When you do, the central"},{"type":"text","text":" "},{"type":"text","text":"manager returns only peripherals that advertise the services you"},{"type":"text","text":" "},{"type":"text","text":"specify. If the "},{"type":"codeVoice","code":"serviceUUIDs"},{"type":"text","text":" parameter is nil, this method returns"},{"type":"text","text":" "},{"type":"text","text":"all discovered peripherals, regardless of their supported services."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the central manager is actively scanning with one set of"},{"type":"text","text":" "},{"type":"text","text":"parameters and it receives another set to scan, the new parameters"},{"type":"text","text":" "},{"type":"text","text":"override the previous set. When the central manager discovers a"},{"type":"text","text":" "},{"type":"text","text":"peripheral, it calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48"},{"type":"text","text":" method of"},{"type":"text","text":" "},{"type":"text","text":"its delegate object."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Your app can scan for Bluetooth devices in the background by"},{"type":"text","text":" "},{"type":"text","text":"specifying the bluetooth-central background mode. To do this, your"},{"type":"text","text":" "},{"type":"text","text":"app must explicitly scan for one or more services by specifying"},{"type":"text","text":" "},{"type":"text","text":"them in the "},{"type":"codeVoice","code":"serviceUUIDs"},{"type":"text","text":" parameter. The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" scan"},{"type":"text","text":" "},{"type":"text","text":"option has no effect while scanning in the background."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"title":"scanForPeripherals(withServices:options:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Scanning or Stopping Scans of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked upon the disconnection of a peripheral that was"},{"type":"text","text":" "},{"type":"text","text":"connected by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If the disconnection was not initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"type":"text","text":" "},{"type":"text","text":"Once this method has been called, no more methods will be"},{"type":"text","text":" "},{"type":"text","text":"invoked on peripheral’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/scanForPeripherals(withServices:options:)":{"role":"symbol","title":"scanForPeripherals(withServices:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/stopScan()":{"role":"symbol","title":"stopScan()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Asks the central manager to stop scanning for peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/isScanning":{"role":"symbol","title":"isScanning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scanForPeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":" "},{"text":"serviceUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]? = nil)"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An array of "},{"code":"CBMUUID","type":"codeVoice"},{"type":"text","text":" objects that the app is"},{"type":"text","text":" "},{"type":"text","text":"interested in. Each "},{"code":"CBMUUID","type":"codeVoice"},{"text":" object represents the","type":"text"},{"type":"text","text":" "},{"text":"UUID of a service that a peripheral advertises.","type":"text"}]}],"name":"serviceUUIDs"},{"name":"options","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A dictionary of options for customizing the scan. For"},{"text":" ","type":"text"},{"type":"text","text":"available options, see Peripheral Scanning Options."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","text":"Discussion","type":"heading","level":2},{"inlineContent":[{"text":"You can provide an array of ","type":"text"},{"code":"CBMUUID","type":"codeVoice"},{"type":"text","text":" objects — representing service"},{"type":"text","text":" "},{"type":"text","text":"UUIDs — in the serviceUUIDs parameter. When you do, the central"},{"type":"text","text":" "},{"type":"text","text":"manager returns only peripherals that advertise the services you"},{"text":" ","type":"text"},{"text":"specify. If the ","type":"text"},{"code":"serviceUUIDs","type":"codeVoice"},{"type":"text","text":" parameter is nil, this method returns"},{"text":" ","type":"text"},{"type":"text","text":"all discovered peripherals, regardless of their supported services."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the central manager is actively scanning with one set of"},{"type":"text","text":" "},{"text":"parameters and it receives another set to scan, the new parameters","type":"text"},{"text":" ","type":"text"},{"text":"override the previous set. When the central manager discovers a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"peripheral, it calls the"},{"type":"text","text":" "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","type":"reference"},{"type":"text","text":" method of"},{"type":"text","text":" "},{"text":"its delegate object.","type":"text"}]},{"inlineContent":[{"type":"text","text":"Your app can scan for Bluetooth devices in the background by"},{"text":" ","type":"text"},{"type":"text","text":"specifying the bluetooth-central background mode. To do this, your"},{"type":"text","text":" "},{"text":"app must explicitly scan for one or more services by specifying","type":"text"},{"type":"text","text":" "},{"text":"them in the ","type":"text"},{"code":"serviceUUIDs","type":"codeVoice"},{"text":" parameter. The ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"type":"text","text":" scan"},{"type":"text","text":" "},{"type":"text","text":"option has no effect while scanning in the background."}],"type":"paragraph"}]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)"]}],"seeAlsoSections":[{"title":"Scanning or Stopping Scans of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning"],"generated":true}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)"},"metadata":{"externalID":"s:17CoreBluetoothMock17CBMCentralManagerC18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","title":"scanForPeripherals(withServices:options:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scanForPeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"options","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}]},"abstract":[{"text":"Scans for peripherals that are advertising services.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/isScanning":{"kind":"symbol","title":"isScanning","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isScanning","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48","kind":"symbol","required":true,"abstract":[{"text":"This method is invoked upon the disconnection of a peripheral that was","type":"text"},{"text":" ","type":"text"},{"text":"connected by ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":".","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"If the disconnection was not initiated by"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"text":" ","type":"text"},{"text":"Once this method has been called, no more methods will be","type":"text"},{"text":" ","type":"text"},{"text":"invoked on peripheral’s ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","isActive":true,"type":"reference"},{"type":"text","text":"."}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"role":"symbol","defaultImplementations":1,"type":"topic","title":"centralManager(_:didDisconnectPeripheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/stopScan()":{"kind":"symbol","title":"stopScan()","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"stopScan","kind":"identifier"},{"kind":"text","text":"()"}],"abstract":[{"text":"Asks the central manager to stop scanning for peripherals.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/scanForPeripherals(withServices:options:)":{"kind":"symbol","title":"scanForPeripherals(withServices:options:)","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scanForPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)","abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"title":"cancelPeripheralConnection(_:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/state.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/state.json index 7e3f4b8..3814f62 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/state.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/state.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Updates are provided by required delegate method"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"title":"state","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC5stateAA15CBMManagerStateOvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Monitoring Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"role":"symbol","title":"CBMManagerState.poweredOff","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","title":"CBMManagerState.poweredOn","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"role":"symbol","title":"CBMManagerState.unknown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate object that will receive central events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManagerDidUpdateState(_:)":{"role":"symbol","title":"centralManagerDidUpdateState(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Invoked whenever the central manager’s state has been updated. Commands"},{"type":"text","text":" "},{"type":"text","text":"should only be issued when the state is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"type":"text","text":"manager become invalid and must be retrieved or discovered again."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.type.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[{"type":"text","text":"The current authorization status for using Bluetooth."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property"],"title":"Monitoring Properties"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}],"kind":"declarations"},{"content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Updates are provided by required delegate method"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)"},{"type":"text","text":"."}]}],"kind":"content"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"metadata":{"role":"symbol","title":"state","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC5stateAA15CBMManagerStateOvp","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"state","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMManagerState","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/state"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/state":{"kind":"symbol","title":"state","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The current state of the manager, initially set to "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","type":"reference","isActive":true},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"role":"symbol","title":"CBMManagerState.unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOff","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"CBMManagerState.poweredOff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"poweredOn","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"topic","title":"CBMManagerState.poweredOn","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManagerDidUpdateState(_:)":{"type":"topic","role":"symbol","title":"centralManagerDidUpdateState(_:)","abstract":[{"text":"Invoked whenever the central manager’s state has been updated. Commands","type":"text"},{"type":"text","text":" "},{"text":"should only be issued when the state is ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","isActive":true},{"text":".","type":"text"},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"reference"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"text":"manager become invalid and must be retrieved or discovered again.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","required":true,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManagerDidUpdateState","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/delegate":{"kind":"symbol","title":"delegate","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"delegate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate","abstract":[{"text":"The delegate object that will receive central events.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/authorization-swift.type.property":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/authorization-swift.type.property","abstract":[{"text":"The current authorization status for using Bluetooth.","type":"text"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"title":"authorization","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property","kind":"symbol","type":"topic","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/stopscan().json b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/stopscan().json index 1ade822..4b02d82 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanager/stopscan().json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanager/stopscan().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Asks the central manager to stop scanning for peripherals."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"title":"stopScan()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMCentralManagerC8stopScanyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Scanning or Stopping Scans of Peripherals","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/scanForPeripherals(withServices:options:)":{"role":"symbol","title":"scanForPeripherals(withServices:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/isScanning":{"role":"symbol","title":"isScanning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/stopScan()":{"role":"symbol","title":"stopScan()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Asks the central manager to stop scanning for peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"stopScan","kind":"identifier"},{"text":"()","kind":"text"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"metadata":{"externalID":"s:17CoreBluetoothMock17CBMCentralManagerC8stopScanyyF","symbolKind":"method","title":"stopScan()","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"roleHeading":"Instance Method"},"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()"],"traits":[{"interfaceLanguage":"swift"}]}],"seeAlsoSections":[{"title":"Scanning or Stopping Scans of Peripherals","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning"]}],"sections":[],"abstract":[{"text":"Asks the central manager to stop scanning for peripherals.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/stopScan()":{"kind":"symbol","title":"stopScan()","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/stopScan()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"stopScan","kind":"identifier"},{"kind":"text","text":"()"}],"abstract":[{"text":"Asks the central manager to stop scanning for peripherals.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/isScanning":{"kind":"symbol","title":"isScanning","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/isScanning","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isScanning","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not the central is currently scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/scanForPeripherals(withServices:options:)":{"kind":"symbol","title":"scanForPeripherals(withServices:options:)","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/scanForPeripherals(withServices:options:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scanForPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)","abstract":[{"type":"text","text":"Scans for peripherals that are advertising services."}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate.json index a19360b..3019b2f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"title":"CBMCentralManagerDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"CBMCentralManagerDelegate"},{"type":"text","text":" protocol defines the methods that a delegate of a"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object must adopt. The optional methods of the protocol allow"},{"type":"text","text":" "},{"type":"text","text":"the delegate to monitor the discovery, connectivity, and retrieval of peripheral devices."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The only required method is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)"},{"type":"text","text":";"},{"type":"text","text":" "},{"type":"text","text":"the central manager calls this when its state updates, thereby indicating the availability of the central manager."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-p052":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didConnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" has succeeded."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManagerDidUpdateState(_:)":{"role":"symbol","title":"centralManagerDidUpdateState(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Invoked whenever the central manager’s state has been updated. Commands"},{"type":"text","text":" "},{"type":"text","text":"should only be issued when the state is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"type":"text","text":"manager become invalid and must be retrieved or discovered again."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-1ay8d":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked upon the connection or disconnection of a"},{"type":"text","text":" "},{"type":"text","text":"peripheral that matches any of the options provided in"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBMCentralManager\/registerForConnectionEvents(options:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when the authorization status changes for a"},{"type":"text","text":" "},{"type":"text","text":"peripheral connected with "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"option "},{"type":"codeVoice","code":"CBMConnectPeripheralOptionRequiresANCS"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-9qavl":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"type":"text","text":" "},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"type":"text","text":"complete some Bluetooth-related task. Use this method to synchronize your"},{"type":"text","text":" "},{"type":"text","text":"app’s state with the state of the Bluetooth system."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"role":"symbol","title":"CBMManagerState.poweredOff","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","title":"CBMManagerState.poweredOn","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"type":"text","text":" "},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked while scanning, upon the discovery of peripheral by"},{"type":"text","text":" "},{"type":"text","text":"central. A discovered peripheral must be retained in order to use it;"},{"type":"text","text":" "},{"type":"text","text":"otherwise, it is assumed to not be of interest and will be cleaned up by"},{"type":"text","text":" "},{"type":"text","text":"the central manager. For a list of advertisementData keys, see"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey"},{"type":"text","text":" and other similar constants."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked upon the disconnection of a peripheral that was"},{"type":"text","text":" "},{"type":"text","text":"connected by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If the disconnection was not initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"type":"text","text":" "},{"type":"text","text":"Once this method has been called, no more methods will be"},{"type":"text","text":" "},{"type":"text","text":"invoked on peripheral’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerDelegate"},{"text":" : AnyObject","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"type":"heading","text":"Overview","level":2,"anchor":"overview"},{"inlineContent":[{"type":"text","text":"The "},{"code":"CBMCentralManagerDelegate","type":"codeVoice"},{"type":"text","text":" protocol defines the methods that a delegate of a"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":" object must adopt. The optional methods of the protocol allow","type":"text"},{"type":"text","text":" "},{"type":"text","text":"the delegate to monitor the discovery, connectivity, and retrieval of peripheral devices."}],"type":"paragraph"},{"inlineContent":[{"text":"The only required method is ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)"},{"type":"text","text":";"},{"text":" ","type":"text"},{"text":"the central manager calls this when its state updates, thereby indicating the availability of the central manager.","type":"text"}],"type":"paragraph"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"sections":[],"seeAlsoSections":[{"title":"Central Manager","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"]}],"relationshipsSections":[{"kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"],"type":"conformingTypes","title":"Conforming Types"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"title":"CBMCentralManagerDelegate","roleHeading":"Protocol","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","symbolKind":"protocol","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerDelegate","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"},"kind":"symbol","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh":{"title":"centralManager(_:didUpdateANCSAuthorizationFor:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","required":true,"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didUpdateANCSAuthorizationFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":")","kind":"text"}],"abstract":[{"text":"This method is invoked when the authorization status changes for a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"peripheral connected with "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":" ","type":"text"},{"text":"option ","type":"text"},{"type":"codeVoice","code":"CBMConnectPeripheralOptionRequiresANCS"},{"text":".","type":"text"}],"kind":"symbol","defaultImplementations":1,"type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-9qavl":{"type":"topic","abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"text":" ","type":"text"},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"text":"complete some Bluetooth-related task. Use this method to synchronize your","type":"text"},{"type":"text","text":" "},{"text":"app’s state with the state of the Bluetooth system.","type":"text"}],"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"willRestoreState","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"])"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl","title":"centralManager(_:willRestoreState:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","role":"symbol","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOff","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"CBMManagerState.poweredOff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"title":"cancelPeripheralConnection(_:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n","kind":"symbol","required":true,"type":"topic","title":"centralManager(_:didDiscover:advertisementData:rssi:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didDiscover","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"rssi"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","abstract":[{"type":"text","text":"This method is invoked while scanning, upon the discovery of peripheral by"},{"text":" ","type":"text"},{"type":"text","text":"central. A discovered peripheral must be retained in order to use it;"},{"text":" ","type":"text"},{"type":"text","text":"otherwise, it is assumed to not be of interest and will be cleaned up by"},{"type":"text","text":" "},{"type":"text","text":"the central manager. For a list of advertisementData keys, see"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","isActive":true,"type":"reference"},{"text":" and other similar constants.","type":"text"}],"defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-1ay8d":{"kind":"symbol","defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic","title":"centralManager(_:connectionEventDidOccur:for:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d","role":"symbol","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","abstract":[{"type":"text","text":"This method is invoked upon the connection or disconnection of a"},{"text":" ","type":"text"},{"type":"text","text":"peripheral that matches any of the options provided in"},{"text":" ","type":"text"},{"code":"CBMCentralManager\/registerForConnectionEvents(options:)","type":"codeVoice"},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"text":" ","type":"text"},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"role":"symbol","defaultImplementations":1,"title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didFailToConnect","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48","kind":"symbol","required":true,"abstract":[{"text":"This method is invoked upon the disconnection of a peripheral that was","type":"text"},{"text":" ","type":"text"},{"text":"connected by ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":".","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"If the disconnection was not initiated by"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"text":" ","type":"text"},{"text":"Once this method has been called, no more methods will be","type":"text"},{"text":" ","type":"text"},{"text":"invoked on peripheral’s ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","isActive":true,"type":"reference"},{"type":"text","text":"."}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"role":"symbol","defaultImplementations":1,"type":"topic","title":"centralManager(_:didDisconnectPeripheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-p052":{"required":true,"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052","title":"centralManager(_:didConnect:)","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"This method is invoked when a connection initiated by"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference","isActive":true},{"text":" has succeeded.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"poweredOn","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"topic","title":"CBMManagerState.poweredOn","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManagerDidUpdateState(_:)":{"type":"topic","role":"symbol","title":"centralManagerDidUpdateState(_:)","abstract":[{"text":"Invoked whenever the central manager’s state has been updated. Commands","type":"text"},{"type":"text","text":" "},{"text":"should only be issued when the state is ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","isActive":true},{"text":".","type":"text"},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"reference"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"text":"manager become invalid and must be retrieved or discovered again.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","required":true,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManagerDidUpdateState","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":")"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d.json index 88f64d9..8236c00 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":" "},{"kind":"internalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager providing this information."}]}]},{"name":"event","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent"},{"type":"text","text":" that has occurred."}]}]},{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that caused the event."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-3pqer"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked upon the connection or disconnection of a"},{"type":"text","text":" "},{"type":"text","text":"peripheral that matches any of the options provided in"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBMCentralManager\/registerForConnectionEvents(options:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_23connectionEventDidOccur3foryAA0dE0C_So012CBConnectionI0VAA13CBMPeripheral_ptF","required":true,"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"role":"symbol","title":"CBMConnectionEvent","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEvent"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectionevent"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-1ay8d":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked upon the connection or disconnection of a"},{"type":"text","text":" "},{"type":"text","text":"peripheral that matches any of the options provided in"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBMCentralManager\/registerForConnectionEvents(options:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-3pqer":{"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-3pqer","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-3pqer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d"},"kind":"symbol","sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"role":"symbol","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_23connectionEventDidOccur3foryAA0dE0C_So012CBConnectionI0VAA13CBMPeripheral_ptF","required":true,"modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"name":"iOS","introducedAt":"13.0","unavailable":false,"beta":false,"deprecated":false}],"roleHeading":"Instance Method","title":"centralManager(_:connectionEventDidOccur:for:)","symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d"]}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-3pqer"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":" "},{"text":"event","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","kind":"typeIdentifier","text":"CBMConnectionEvent"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"text":"The central manager providing this information.","type":"text"}]}]},{"name":"event","content":[{"inlineContent":[{"type":"text","text":"The "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","isActive":true},{"type":"text","text":" that has occurred."}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":" that caused the event.","type":"text"}]}],"name":"peripheral"}]}],"abstract":[{"type":"text","text":"This method is invoked upon the connection or disconnection of a"},{"text":" ","type":"text"},{"text":"peripheral that matches any of the options provided in","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBMCentralManager\/registerForConnectionEvents(options:)"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-1ay8d":{"kind":"symbol","defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic","title":"centralManager(_:connectionEventDidOccur:for:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d","role":"symbol","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","abstract":[{"type":"text","text":"This method is invoked upon the connection or disconnection of a"},{"text":" ","type":"text"},{"type":"text","text":"peripheral that matches any of the options provided in"},{"text":" ","type":"text"},{"code":"CBMCentralManager\/registerForConnectionEvents(options:)","type":"codeVoice"},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-3pqer":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"type":"topic","title":"centralManager(_:connectionEventDidOccur:for:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-3pqer","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-3pqer","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","url":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","abstract":[{"text":"A change to the connection state of a peer.","type":"text"}],"role":"symbol","navigatorTitle":[{"text":"CBMConnectionEvent","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEvent"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer.json index 33be435..d44beb2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":" "},{"kind":"internalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-3pqer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-3pqer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:connectionEventDidOccur:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_23connectionEventDidOccur3foryAA0dE0C_So012CBConnectionI0VAA13CBMPeripheral_ptF","extendedModule":"CoreBluetoothMock","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"role":"symbol","title":"CBMConnectionEvent","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEvent"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectionevent"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-1ay8d":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked upon the connection or disconnection of a"},{"type":"text","text":" "},{"type":"text","text":"peripheral that matches any of the options provided in"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBMCentralManager\/registerForConnectionEvents(options:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-3pqer":{"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-3pqer","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-3pqer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:connectionEventDidOccur:for:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-3pqer","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-3pqer"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_23connectionEventDidOccur3foryAA0dE0C_So012CBConnectionI0VAA13CBMPeripheral_ptF","title":"centralManager(_:connectionEventDidOccur:for:)","roleHeading":"Instance Method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"symbolKind":"method","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"13.0","unavailable":false}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"text":"connectionEventDidOccur","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-1ay8d":{"kind":"symbol","defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic","title":"centralManager(_:connectionEventDidOccur:for:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d","role":"symbol","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-1ay8d","abstract":[{"type":"text","text":"This method is invoked upon the connection or disconnection of a"},{"text":" ","type":"text"},{"type":"text","text":"peripheral that matches any of the options provided in"},{"text":" ","type":"text"},{"code":"CBMCentralManager\/registerForConnectionEvents(options:)","type":"codeVoice"},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","url":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","abstract":[{"text":"A change to the connection state of a peer.","type":"text"}],"role":"symbol","navigatorTitle":[{"text":"CBMConnectionEvent","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEvent"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:connectionEventDidOccur:for:)-3pqer":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"type":"topic","title":"centralManager(_:connectionEventDidOccur:for:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-3pqer","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:connectionEventDidOccur:for:)-3pqer","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh.json index a6b8c7a..3ab1e57 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didConnect:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didConnect:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_10didConnectyAA0dE0C_AA13CBMPeripheral_ptF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-p052":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didConnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" has succeeded."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-6tlfh":{"role":"symbol","title":"centralManager(_:didConnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didConnect:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":")"}],"platforms":["macOS"]}]}],"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_10didConnectyAA0dE0C_AA13CBMPeripheral_ptF","title":"centralManager(_:didConnect:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-6tlfh":{"title":"centralManager(_:didConnect:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"abstract":[],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-p052":{"required":true,"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052","title":"centralManager(_:didConnect:)","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"This method is invoked when a connection initiated by"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference","isActive":true},{"text":" has succeeded.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052.json index 20a9e7b..36aab27 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager providing this information."}]}]},{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that has connected."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" has succeeded."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didConnect:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_10didConnectyAA0dE0C_AA13CBMPeripheral_ptF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-p052":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didConnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" has succeeded."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-6tlfh":{"role":"symbol","title":"centralManager(_:didConnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","isActive":true},{"type":"text","text":" has succeeded."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"central","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didConnect","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"central","content":[{"inlineContent":[{"text":"The central manager providing this information.","type":"text"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"text":"The ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true},{"text":" that has connected.","type":"text"}],"type":"paragraph"}],"name":"peripheral"}]}],"sections":[],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_10didConnectyAA0dE0C_AA13CBMPeripheral_ptF","title":"centralManager(_:didConnect:)","symbolKind":"method"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-p052":{"required":true,"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052","title":"centralManager(_:didConnect:)","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"This method is invoked when a connection initiated by"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference","isActive":true},{"text":" has succeeded.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-p052"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didConnect:)-6tlfh":{"title":"centralManager(_:didConnect:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didConnect:)-6tlfh","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"abstract":[],"kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2.json index 13f3579..207d875 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1j8c2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1j8c2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didDisconnectPeripheral:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_23didDisconnectPeripheral5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked upon the disconnection of a peripheral that was"},{"type":"text","text":" "},{"type":"text","text":"connected by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If the disconnection was not initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"type":"text","text":" "},{"type":"text","text":"Once this method has been called, no more methods will be"},{"type":"text","text":" "},{"type":"text","text":"invoked on peripheral’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1j8c2":{"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1j8c2","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1j8c2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1j8c2"},"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_23didDisconnectPeripheral5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","title":"centralManager(_:didDisconnectPeripheral:error:)","symbolKind":"method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didDisconnectPeripheral:error:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1j8c2"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48","kind":"symbol","required":true,"abstract":[{"text":"This method is invoked upon the disconnection of a peripheral that was","type":"text"},{"text":" ","type":"text"},{"text":"connected by ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":".","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"If the disconnection was not initiated by"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"text":" ","type":"text"},{"text":"Once this method has been called, no more methods will be","type":"text"},{"text":" ","type":"text"},{"text":"invoked on peripheral’s ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","isActive":true,"type":"reference"},{"type":"text","text":"."}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"role":"symbol","defaultImplementations":1,"type":"topic","title":"centralManager(_:didDisconnectPeripheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1j8c2":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1j8c2","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1j8c2","abstract":[],"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"title":"cancelPeripheralConnection(_:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48.json index e0cfe01..204b2e0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager providing this information."}]}]},{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that has disconnected."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1j8c2"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked upon the disconnection of a peripheral that was"},{"type":"text","text":" "},{"type":"text","text":"connected by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If the disconnection was not initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"type":"text","text":" "},{"type":"text","text":"Once this method has been called, no more methods will be"},{"type":"text","text":" "},{"type":"text","text":"invoked on peripheral’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_23didDisconnectPeripheral5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1j8c2":{"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1j8c2","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1j8c2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked upon the disconnection of a peripheral that was"},{"type":"text","text":" "},{"type":"text","text":"connected by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If the disconnection was not initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"type":"text","text":" "},{"type":"text","text":"Once this method has been called, no more methods will be"},{"type":"text","text":" "},{"type":"text","text":"invoked on peripheral’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked upon the disconnection of a peripheral that was"},{"type":"text","text":" "},{"text":"connected by ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference","isActive":true},{"type":"text","text":"."},{"text":" ","type":"text"},{"type":"text","text":"If the disconnection was not initiated by"},{"text":" ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","isActive":true},{"text":",","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"the cause will be detailed in the error parameter."},{"type":"text","text":" "},{"text":"Once this method has been called, no more methods will be","type":"text"},{"text":" ","type":"text"},{"text":"invoked on peripheral’s ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","type":"reference"},{"type":"text","text":"."}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1j8c2"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"text":": ","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"languages":["swift"]}],"kind":"declarations"},{"parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"text":"The central manager providing this information.","type":"text"}]}]},{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true},{"text":" that has disconnected.","type":"text"}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"text":"If an error occurred, the cause of the failure.","type":"text"}]}]}],"kind":"parameters"}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"required":true,"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","symbolKind":"method","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_23didDisconnectPeripheral5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF"},"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"title":"cancelPeripheralConnection(_:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1j8c2":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1j8c2","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1j8c2","abstract":[],"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48","kind":"symbol","required":true,"abstract":[{"text":"This method is invoked upon the disconnection of a peripheral that was","type":"text"},{"text":" ","type":"text"},{"text":"connected by ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":".","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"If the disconnection was not initiated by"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"text":" ","type":"text"},{"text":"Once this method has been called, no more methods will be","type":"text"},{"text":" ","type":"text"},{"text":"invoked on peripheral’s ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","isActive":true,"type":"reference"},{"type":"text","text":"."}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"role":"symbol","defaultImplementations":1,"type":"topic","title":"centralManager(_:didDisconnectPeripheral:error:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp.json index 7a07377..295c98b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":" "},{"kind":"internalParam","text":"RSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didDiscover:advertisementData:rssi:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_11didDiscover17advertisementData4rssiyAA0dE0C_AA13CBMPeripheral_pSDySSypGSo8NSNumberCtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp":{"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked while scanning, upon the discovery of peripheral by"},{"type":"text","text":" "},{"type":"text","text":"central. A discovered peripheral must be retained in order to use it;"},{"type":"text","text":" "},{"type":"text","text":"otherwise, it is assumed to not be of interest and will be cleaned up by"},{"type":"text","text":" "},{"type":"text","text":"the central manager. For a list of advertisementData keys, see"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey"},{"type":"text","text":" and other similar constants."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMCentralManagerDelegate.centralManager(_:didDiscover:advertisementData:rssi:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"text":"CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscover"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"text":"rssi","kind":"externalParam"},{"kind":"text","text":" "},{"text":"RSSI","kind":"internalParam"},{"kind":"text","text":": "},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"metadata":{"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_11didDiscover17advertisementData4rssiyAA0dE0C_AA13CBMPeripheral_pSDySSypGSo8NSNumberCtF","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscover"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"centralManager(_:didDiscover:advertisementData:rssi:)","roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n"]]},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp","kind":"symbol","role":"symbol","type":"topic","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscover"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"rssi"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n","kind":"symbol","required":true,"type":"topic","title":"centralManager(_:didDiscover:advertisementData:rssi:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didDiscover","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"rssi"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","abstract":[{"type":"text","text":"This method is invoked while scanning, upon the discovery of peripheral by"},{"text":" ","type":"text"},{"type":"text","text":"central. A discovered peripheral must be retained in order to use it;"},{"text":" ","type":"text"},{"type":"text","text":"otherwise, it is assumed to not be of interest and will be cleaned up by"},{"type":"text","text":" "},{"type":"text","text":"the central manager. For a list of advertisementData keys, see"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","isActive":true,"type":"reference"},{"text":" and other similar constants.","type":"text"}],"defaultImplementations":1}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n.json index 73ec673..4c1321a 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":" "},{"kind":"internalParam","text":"RSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager providing this update."}]}]},{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" object."}]}]},{"name":"advertisementData","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A dictionary containing any advertisement and scan"},{"type":"text","text":" "},{"type":"text","text":"response data."}]}]},{"name":"RSSI","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The current RSSI of peripheral, in dBm. A value of 127 is"},{"type":"text","text":" "},{"type":"text","text":"reserved and indicates the RSSI was not available."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked while scanning, upon the discovery of peripheral by"},{"type":"text","text":" "},{"type":"text","text":"central. A discovered peripheral must be retained in order to use it;"},{"type":"text","text":" "},{"type":"text","text":"otherwise, it is assumed to not be of interest and will be cleaned up by"},{"type":"text","text":" "},{"type":"text","text":"the central manager. For a list of advertisementData keys, see"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey"},{"type":"text","text":" and other similar constants."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_11didDiscover17advertisementData4rssiyAA0dE0C_AA13CBMPeripheral_pSDySSypGSo8NSNumberCtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked while scanning, upon the discovery of peripheral by"},{"type":"text","text":" "},{"type":"text","text":"central. A discovered peripheral must be retained in order to use it;"},{"type":"text","text":" "},{"type":"text","text":"otherwise, it is assumed to not be of interest and will be cleaned up by"},{"type":"text","text":" "},{"type":"text","text":"the central manager. For a list of advertisementData keys, see"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey"},{"type":"text","text":" and other similar constants."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp":{"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"role":"symbol","title":"CBMAdvertisementDataLocalNameKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The local name of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":" "},{"kind":"internalParam","text":"RSSI"},{"text":": ","kind":"text"},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The central manager providing this update."}],"type":"paragraph"}],"name":"central"},{"content":[{"inlineContent":[{"type":"text","text":"A "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" object."}],"type":"paragraph"}],"name":"peripheral"},{"name":"advertisementData","content":[{"inlineContent":[{"text":"A dictionary containing any advertisement and scan","type":"text"},{"type":"text","text":" "},{"text":"response data.","type":"text"}],"type":"paragraph"}]},{"name":"RSSI","content":[{"inlineContent":[{"text":"The current RSSI of peripheral, in dBm. A value of 127 is","type":"text"},{"type":"text","text":" "},{"type":"text","text":"reserved and indicates the RSSI was not available."}],"type":"paragraph"}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"sections":[],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":", "},{"text":"didDiscover","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"], "},{"text":"rssi","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_11didDiscover17advertisementData4rssiyAA0dE0C_AA13CBMPeripheral_pSDySSypGSo8NSNumberCtF","role":"symbol","required":true,"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","title":"centralManager(_:didDiscover:advertisementData:rssi:)","symbolKind":"method"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"This method is invoked while scanning, upon the discovery of peripheral by","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"central. A discovered peripheral must be retained in order to use it;"},{"type":"text","text":" "},{"text":"otherwise, it is assumed to not be of interest and will be cleaned up by","type":"text"},{"type":"text","text":" "},{"text":"the central manager. For a list of advertisementData keys, see","type":"text"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","isActive":true,"type":"reference"},{"type":"text","text":" and other similar constants."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementDataLocalNameKey":{"fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAdvertisementDataLocalNameKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"CBMAdvertisementDataLocalNameKey","kind":"symbol","abstract":[{"text":"The local name of a peripheral.","type":"text"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n","kind":"symbol","required":true,"type":"topic","title":"centralManager(_:didDiscover:advertisementData:rssi:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didDiscover","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"rssi"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-oz3n","abstract":[{"type":"text","text":"This method is invoked while scanning, upon the discovery of peripheral by"},{"text":" ","type":"text"},{"type":"text","text":"central. A discovered peripheral must be retained in order to use it;"},{"text":" ","type":"text"},{"type":"text","text":"otherwise, it is assumed to not be of interest and will be cleaned up by"},{"type":"text","text":" "},{"type":"text","text":"the central manager. For a list of advertisementData keys, see"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementDataLocalNameKey","isActive":true,"type":"reference"},{"text":" and other similar constants.","type":"text"}],"defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp","kind":"symbol","role":"symbol","type":"topic","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscover"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"rssi"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDiscover:advertisementData:rssi:)-9oxtp","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb.json index f20161e..3530b5d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager providing this information."}]}]},{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that has failed to connect."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-9sppj"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"type":"text","text":" "},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_16didFailToConnect5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-9sppj":{"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-9sppj","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-9sppj"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"type":"text","text":" "},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"text":" ","type":"text"},{"text":"has failed to complete. As connection attempts do not timeout, the failure","type":"text"},{"type":"text","text":" "},{"text":"of a connection is atypical and usually indicative of a transient issue.","type":"text"}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-9sppj"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didFailToConnect","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"text":"The central manager providing this information.","type":"text"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":" that has failed to connect.","type":"text"}]}],"name":"peripheral"},{"name":"error","content":[{"inlineContent":[{"type":"text","text":"The cause of the failure."}],"type":"paragraph"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"role":"symbol","required":true,"title":"centralManager(_:didFailToConnect:error:)","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_16didFailToConnect5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didFailToConnect","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"text":" ","type":"text"},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"role":"symbol","defaultImplementations":1,"title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didFailToConnect","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-9sppj":{"title":"centralManager(_:didFailToConnect:error:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-9sppj","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-9sppj","type":"topic","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didFailToConnect","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj.json index 990ab96..7af3c10 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-9sppj"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-9sppj","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didFailToConnect:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_16didFailToConnect5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"type":"text","text":" "},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-9sppj":{"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-9sppj","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-9sppj"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-9sppj"},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didFailToConnect"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_16didFailToConnect5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","extendedModule":"CoreBluetoothMock","title":"centralManager(_:didFailToConnect:error:)","symbolKind":"method"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didFailToConnect:error:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-9sppj"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-9sppj":{"title":"centralManager(_:didFailToConnect:error:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-9sppj","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-9sppj","type":"topic","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didFailToConnect","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"text":" ","type":"text"},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"role":"symbol","defaultImplementations":1,"title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didFailToConnect","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh.json index 435dce7..5546f05 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager providing this information."}]}]},{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that caused the event."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"important","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This method is not implemented in mock central manager."}]}],"type":"aside","name":"Important"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked when the authorization status changes for a"},{"type":"text","text":" "},{"type":"text","text":"peripheral connected with "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"option "},{"type":"codeVoice","code":"CBMConnectPeripheralOptionRequiresANCS"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_29didUpdateANCSAuthorizationForyAA0dE0C_AA13CBMPeripheral_ptF","required":true,"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when the authorization status changes for a"},{"type":"text","text":" "},{"type":"text","text":"peripheral connected with "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"option "},{"type":"codeVoice","code":"CBMConnectPeripheralOptionRequiresANCS"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl":{"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didUpdateANCSAuthorizationFor","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"kind":"text","text":")"}]}]},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The central manager providing this information."}],"type":"paragraph"}],"name":"central"},{"name":"peripheral","content":[{"inlineContent":[{"type":"text","text":"The "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","type":"reference"},{"text":" that caused the event.","type":"text"}],"type":"paragraph"}]}]},{"kind":"content","content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"style":"important","name":"Important","content":[{"type":"paragraph","inlineContent":[{"text":"This method is not implemented in mock central manager.","type":"text"}]}],"type":"aside"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl"],"title":"CBMCentralManagerDelegate Implementations"}],"abstract":[{"type":"text","text":"This method is invoked when the authorization status changes for a"},{"type":"text","text":" "},{"text":"peripheral connected with ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":" ","type":"text"},{"type":"text","text":"option "},{"code":"CBMConnectPeripheralOptionRequiresANCS","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_29didUpdateANCSAuthorizationForyAA0dE0C_AA13CBMPeripheral_ptF","roleHeading":"Instance Method","required":true,"modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"name":"iOS","beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl":{"title":"centralManager(_:didUpdateANCSAuthorizationFor:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"kind":"symbol","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh":{"title":"centralManager(_:didUpdateANCSAuthorizationFor:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","required":true,"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didUpdateANCSAuthorizationFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":")","kind":"text"}],"abstract":[{"text":"This method is invoked when the authorization status changes for a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"peripheral connected with "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":" ","type":"text"},{"text":"option ","type":"text"},{"type":"codeVoice","code":"CBMConnectPeripheralOptionRequiresANCS"},{"text":".","type":"text"}],"kind":"symbol","defaultImplementations":1,"type":"topic","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl.json index 6a49f55..1dcc517 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didUpdateANCSAuthorizationFor:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_29didUpdateANCSAuthorizationForyAA0dE0C_AA13CBMPeripheral_ptF","extendedModule":"CoreBluetoothMock","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl":{"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when the authorization status changes for a"},{"type":"text","text":" "},{"type":"text","text":"peripheral connected with "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"option "},{"type":"codeVoice","code":"CBMConnectPeripheralOptionRequiresANCS"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didUpdateANCSAuthorizationFor:)"},{"text":".","type":"text"}],"metadata":{"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_29didUpdateANCSAuthorizationForyAA0dE0C_AA13CBMPeripheral_ptF","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"iOS"}],"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","role":"symbol","extendedModule":"CoreBluetoothMock","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":")"}]}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl","interfaceLanguage":"swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh":{"title":"centralManager(_:didUpdateANCSAuthorizationFor:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-6msdh","required":true,"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didUpdateANCSAuthorizationFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":")","kind":"text"}],"abstract":[{"text":"This method is invoked when the authorization status changes for a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"peripheral connected with "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":" ","type":"text"},{"text":"option ","type":"text"},{"type":"codeVoice","code":"CBMConnectPeripheralOptionRequiresANCS"},{"text":".","type":"text"}],"kind":"symbol","defaultImplementations":1,"type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl":{"title":"centralManager(_:didUpdateANCSAuthorizationFor:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didUpdateANCSAuthorizationFor:)-8t3sl","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"kind":"symbol","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg.json index 574ca5f..286a27b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":" "},{"kind":"internalParam","text":"dict"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:willRestoreState:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:willRestoreState:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_16willRestoreStateyAA0dE0C_SDySSypGtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-4zyhg":{"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-9qavl":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"type":"text","text":" "},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"type":"text","text":"complete some Bluetooth-related task. Use this method to synchronize your"},{"type":"text","text":" "},{"type":"text","text":"app’s state with the state of the Bluetooth system."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg"]}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegatePAAE07centralE0_16willRestoreStateyAA0dE0C_SDySSypGtF","roleHeading":"Instance Method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"willRestoreState"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"])","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","extendedModule":"CoreBluetoothMock","title":"centralManager(_:willRestoreState:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:willRestoreState:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":" "},{"text":"dict","kind":"internalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-9qavl":{"type":"topic","abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"text":" ","type":"text"},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"text":"complete some Bluetooth-related task. Use this method to synchronize your","type":"text"},{"type":"text","text":" "},{"text":"app’s state with the state of the Bluetooth system.","type":"text"}],"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"willRestoreState","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"])"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl","title":"centralManager(_:willRestoreState:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","role":"symbol","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-4zyhg":{"abstract":[],"title":"centralManager(_:willRestoreState:)","kind":"symbol","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"willRestoreState"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"])","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl.json index b920f27..deabf8f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":" "},{"kind":"internalParam","text":"dict"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager providing this information."}]}]},{"name":"dict","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A dictionary containing information about central that was"},{"type":"text","text":" "},{"type":"text","text":"preserved by the system at the time the app was terminated."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When mocking is enabled, the returned state is obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"type":"text","text":" "},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"type":"text","text":"complete some Bluetooth-related task. Use this method to synchronize your"},{"type":"text","text":" "},{"type":"text","text":"app’s state with the state of the Bluetooth system."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:willRestoreState:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_16willRestoreStateyAA0dE0C_SDySSypGtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateStateRestoration":{"role":"symbol","title":"simulateStateRestoration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)?"}],"abstract":[{"type":"text","text":"This simulation method is called when a mock central manager was"},{"type":"text","text":" "},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"type":"text","text":"("},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey"},{"type":"text","text":")."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","title":"CBMCentralManagerOptionRestoreIdentifierKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A string containing a unique identifier (UID) for the central manager to instantiate."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-9qavl":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"type":"text","text":" "},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"type":"text","text":"complete some Bluetooth-related task. Use this method to synchronize your"},{"type":"text","text":" "},{"type":"text","text":"app’s state with the state of the Bluetooth system."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-4zyhg":{"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg"}}} \ No newline at end of file +{"defaultImplementationsSections":[{"title":"CBMCentralManagerDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"willRestoreState","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"])","kind":"text"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE0_16willRestoreStateyAA0dE0C_SDySSypGtF","title":"centralManager(_:willRestoreState:)","symbolKind":"method"},"abstract":[{"text":"For apps that opt-in to state preservation and restoration, this is the","type":"text"},{"type":"text","text":" "},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"text":"complete some Bluetooth-related task. Use this method to synchronize your","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"app’s state with the state of the Bluetooth system."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"willRestoreState","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"dict","kind":"internalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager providing this information."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"text":"A dictionary containing information about central that was","type":"text"},{"type":"text","text":" "},{"type":"text","text":"preserved by the system at the time the app was terminated."}]}],"name":"dict"}]},{"kind":"content","content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"When mocking is enabled, the returned state is obtained using","type":"text"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","type":"reference","isActive":true},{"type":"text","text":"."}]}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-4zyhg":{"abstract":[],"title":"centralManager(_:willRestoreState:)","kind":"symbol","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"willRestoreState"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"])","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-9qavl":{"type":"topic","abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"text":" ","type":"text"},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"text":"complete some Bluetooth-related task. Use this method to synchronize your","type":"text"},{"type":"text","text":" "},{"text":"app’s state with the state of the Bluetooth system.","type":"text"}],"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"willRestoreState","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"])"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl","title":"centralManager(_:willRestoreState:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","role":"symbol","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateStateRestoration":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","type":"topic","title":"simulateStateRestoration","abstract":[{"text":"This simulation method is called when a mock central manager was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"text":"(","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","isActive":true,"type":"reference"},{"type":"text","text":")."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","type":"topic","title":"CBMCentralManagerOptionRestoreIdentifierKey","abstract":[{"text":"A string containing a unique identifier (UID) for the central manager to instantiate.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:).json index 7aef895..e625a24 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"central","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The central manager whose state has changed."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Invoked whenever the central manager’s state has been updated. Commands"},{"type":"text","text":" "},{"type":"text","text":"should only be issued when the state is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"type":"text","text":"manager become invalid and must be retrieved or discovered again."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManagerDidUpdateState(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE14DidUpdateStateyyAA0dE0CF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","title":"CBMManagerState.poweredOn","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"role":"symbol","title":"CBMManagerState.poweredOff","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManagerDidUpdateState(_:)":{"role":"symbol","title":"centralManagerDidUpdateState(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Invoked whenever the central manager’s state has been updated. Commands"},{"type":"text","text":" "},{"type":"text","text":"should only be issued when the state is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"type":"text","text":"manager become invalid and must be retrieved or discovered again."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManagerDidUpdateState","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"central","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"text":"The central manager whose state has changed.","type":"text"}],"type":"paragraph"}],"name":"central"}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)"},"abstract":[{"type":"text","text":"Invoked whenever the central manager’s state has been updated. Commands"},{"type":"text","text":" "},{"text":"should only be issued when the state is ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","isActive":true,"type":"reference"},{"type":"text","text":"."},{"type":"text","text":" "},{"text":"A state below","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","isActive":true},{"text":" implies that scanning has stopped and any","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"text":" ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","type":"reference"},{"type":"text","text":", all "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"type":"text","text":"manager become invalid and must be retrieved or discovered again."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"required":true,"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManagerDidUpdateState","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":")","kind":"text"}],"title":"centralManagerDidUpdateState(_:)","externalID":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP07centralE14DidUpdateStateyyAA0dE0CF"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"poweredOn","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"topic","title":"CBMManagerState.poweredOn","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOff","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"CBMManagerState.poweredOff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManagerDidUpdateState(_:)":{"type":"topic","role":"symbol","title":"centralManagerDidUpdateState(_:)","abstract":[{"text":"Invoked whenever the central manager’s state has been updated. Commands","type":"text"},{"type":"text","text":" "},{"text":"should only be issued when the state is ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","isActive":true},{"text":".","type":"text"},{"type":"text","text":" "},{"type":"text","text":"A state below"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"reference"},{"type":"text","text":" implies that scanning has stopped and any"},{"type":"text","text":" "},{"type":"text","text":"connected peripherals have been disconnected. If the state moves below"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":", all "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects obtained from this central"},{"type":"text","text":" "},{"text":"manager become invalid and must be retrieved or discovered again.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManagerDidUpdateState(_:)","required":true,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManagerDidUpdateState","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":")"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy.json index e1c84f9..505e5f6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"title":"CBMCentralManagerDelegateProxy","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManagerDelegateProxy","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/connectionEventDidOccur","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didConnect","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDisconnect","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDiscoverPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didFailToConnect","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateANCSAuthorization","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/willRestoreState"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:connectionEventDidOccur:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didConnect:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDisconnectPeripheral:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDiscover:advertisementData:rssi:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didFailToConnect:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didUpdateANCSAuthorizationFor:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:willRestoreState:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManagerDidUpdateState(_:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManagerDidUpdateState(_:)":{"role":"symbol","title":"centralManagerDidUpdateState(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManagerDidUpdateState(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanagerdidupdatestate(_:)"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didDiscover:advertisementData:rssi:)":{"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDiscover:advertisementData:rssi:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddiscover:advertisementdata:rssi:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didDiscoverPeripheral":{"role":"symbol","title":"didDiscoverPeripheral","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverPeripheral"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDiscoverPeripheral","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddiscoverperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didConnect":{"role":"symbol","title":"didConnect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didConnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didConnect","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didconnect"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didFailToConnect":{"role":"symbol","title":"didFailToConnect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didFailToConnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didFailToConnect","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didfailtoconnect"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didDisconnectPeripheral:error:)":{"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDisconnectPeripheral:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddisconnectperipheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:willRestoreState:)":{"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:willRestoreState:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:willrestorestate:)"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didUpdateANCSAuthorization":{"role":"symbol","title":"didUpdateANCSAuthorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateANCSAuthorization"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateANCSAuthorization","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdateancsauthorization"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didUpdateState":{"role":"symbol","title":"didUpdateState","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateState","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdatestate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didUpdateANCSAuthorizationFor:)":{"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didUpdateANCSAuthorizationFor:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didupdateancsauthorizationfor:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/willRestoreState":{"role":"symbol","title":"willRestoreState","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"willRestoreState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/willRestoreState","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/willrestorestate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:connectionEventDidOccur:for:)":{"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:connectionEventDidOccur:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:connectioneventdidoccur:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didDisconnect":{"role":"symbol","title":"didDisconnect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDisconnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDisconnect","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddisconnect"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didConnect:)":{"role":"symbol","title":"centralManager(_:didConnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didConnect:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didconnect:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/connectionEventDidOccur":{"role":"symbol","title":"connectionEventDidOccur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionEventDidOccur"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/connectionEventDidOccur","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/connectioneventdidoccur"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didFailToConnect:error:)":{"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didFailToConnect:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didfailtoconnect:error:)"}}} \ No newline at end of file +{"sections":[],"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"relationshipsSections":[{"type":"inheritsFrom","title":"Inherits From","kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","type":"conformsTo","title":"Conforms To"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"},"kind":"symbol","abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]}],"kind":"declarations"},{"kind":"content","content":[{"anchor":"overview","type":"heading","text":"Overview","level":2},{"name":"See Also","style":"note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate"}]}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"metadata":{"navigatorTitle":[{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"roleHeading":"Class","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"role":"symbol","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","symbolKind":"class"},"schemaVersion":{"minor":3,"major":0,"patch":0},"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/connectionEventDidOccur","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didConnect","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDisconnect","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDiscoverPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didFailToConnect","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateANCSAuthorization","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/willRestoreState"],"title":"Instance Properties"},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:connectionEventDidOccur:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didConnect:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDisconnectPeripheral:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDiscover:advertisementData:rssi:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didFailToConnect:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didUpdateANCSAuthorizationFor:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:willRestoreState:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManagerDidUpdateState(_:)"]}],"references":{"doc://CoreBluetoothMock/objc(cs)NSObject":{"title":"ObjectiveC.NSObject","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:willRestoreState:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"willRestoreState","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"])","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:willRestoreState:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:willrestorestate:)","title":"centralManager(_:willRestoreState:)","abstract":[],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManagerDidUpdateState(_:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManagerDidUpdateState(_:)","type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanagerdidupdatestate(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":")","kind":"text"}],"title":"centralManagerDidUpdateState(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didDisconnectPeripheral:error:)":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDisconnectPeripheral:error:)","abstract":[],"title":"centralManager(_:didDisconnectPeripheral:error:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddisconnectperipheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/objc(pl)NSObject":{"title":"ObjectiveC.NSObjectProtocol","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/connectionEventDidOccur":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/connectioneventdidoccur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"connectionEventDidOccur","kind":"identifier"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":") -> ())?"}],"type":"topic","kind":"symbol","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/connectionEventDidOccur","role":"symbol","title":"connectionEventDidOccur"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/willRestoreState":{"kind":"symbol","role":"symbol","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"willRestoreState","kind":"identifier"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]) -> ())?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/willrestorestate","title":"willRestoreState","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/willRestoreState"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didUpdateANCSAuthorizationFor:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":")","kind":"text"}],"type":"topic","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didUpdateANCSAuthorizationFor:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didupdateancsauthorizationfor:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didDiscover:advertisementData:rssi:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didDiscover","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"text":"rssi","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDiscover:advertisementData:rssi:)","type":"topic","title":"centralManager(_:didDiscover:advertisementData:rssi:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddiscover:advertisementdata:rssi:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didConnect:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didConnect:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didConnect","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":")","kind":"text"}],"type":"topic","kind":"symbol","title":"centralManager(_:didConnect:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didconnect:)","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didUpdateState":{"type":"topic","role":"symbol","title":"didUpdateState","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdatestate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateState","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didUpdateState","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"text":") -> ())?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didUpdateANCSAuthorization":{"type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateANCSAuthorization"},{"kind":"text","text":": (("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":") -> ())?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateANCSAuthorization","abstract":[],"title":"didUpdateANCSAuthorization","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdateancsauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didDisconnect":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didDisconnect","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":", "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?) -> ())?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDisconnect","title":"didDisconnect","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddisconnect","role":"symbol","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didConnect":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didconnect","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didConnect"},{"kind":"text","text":": (("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didConnect","type":"topic","role":"symbol","title":"didConnect","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didFailToConnect:error:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didFailToConnect","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"centralManager(_:didFailToConnect:error:)","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didFailToConnect:error:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didfailtoconnect:error:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/SQ":{"title":"Swift.Equatable","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"title":"Swift.CustomStringConvertible","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:connectionEventDidOccur:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:connectioneventdidoccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:connectionEventDidOccur:for:)","abstract":[],"type":"topic","role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didFailToConnect":{"abstract":[],"title":"didFailToConnect","type":"topic","kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didFailToConnect","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"didFailToConnect","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?) -> ())?"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didfailtoconnect"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didDiscoverPeripheral":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didDiscoverPeripheral"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":") -> ())?"}],"abstract":[],"title":"didDiscoverPeripheral","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddiscoverperipheral","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDiscoverPeripheral"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","title":"Swift.CVarArg"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:).json index 99e220d..20ccd86 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":" "},{"kind":"internalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:connectioneventdidoccur:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:connectionEventDidOccur:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:connectionEventDidOccur:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_23connectionEventDidOccur3foryAA0dE0C_So012CBConnectionJ0VAA13CBMPeripheral_ptF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"role":"symbol","title":"CBMConnectionEvent","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEvent"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectionevent"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:connectionEventDidOccur:for:)":{"role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:connectionEventDidOccur:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:connectioneventdidoccur:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:connectionEventDidOccur:for:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:connectioneventdidoccur:for:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":", "},{"text":"connectionEventDidOccur","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"event"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","kind":"typeIdentifier","text":"CBMConnectionEvent"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"metadata":{"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"connectionEventDidOccur","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"title":"centralManager(_:connectionEventDidOccur:for:)","platforms":[{"unavailable":false,"name":"iOS","beta":false,"deprecated":false,"introducedAt":"13.0"}],"externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_23connectionEventDidOccur3foryAA0dE0C_So012CBConnectionJ0VAA13CBMPeripheral_ptF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:connectionEventDidOccur:for:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:connectionEventDidOccur:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:connectioneventdidoccur:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"connectionEventDidOccur"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:connectionEventDidOccur:for:)","abstract":[],"type":"topic","role":"symbol","title":"centralManager(_:connectionEventDidOccur:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","url":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","abstract":[{"text":"A change to the connection state of a peer.","type":"text"}],"role":"symbol","navigatorTitle":[{"text":"CBMConnectionEvent","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEvent"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:).json index 43ccd30..6c183eb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didconnect:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didConnect:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didConnect:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"title":"centralManager(_:didConnect:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_10didConnectyAA0dE0C_AA13CBMPeripheral_ptF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didConnect:)":{"role":"symbol","title":"centralManager(_:didConnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didConnect:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didconnect:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didConnect","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_10didConnectyAA0dE0C_AA13CBMPeripheral_ptF","title":"centralManager(_:didConnect:)","role":"symbol","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didConnect:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didConnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didconnect:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManagerDelegate.centralManager(_:didConnect:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didConnect:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didConnect:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didConnect","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":")","kind":"text"}],"type":"topic","kind":"symbol","title":"centralManager(_:didConnect:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didconnect:)","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:).json index d6b15ed..e0e1d47 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddisconnectperipheral:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDisconnectPeripheral:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didDisconnectPeripheral:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"centralManager(_:didDisconnectPeripheral:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_23didDisconnectPeripheral5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didDisconnectPeripheral:error:)":{"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDisconnectPeripheral:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddisconnectperipheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"centralManager(_:didDisconnectPeripheral:error:)","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_23didDisconnectPeripheral5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","role":"symbol","symbolKind":"method"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManagerDelegate.centralManager(_:didDisconnectPeripheral:error:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddisconnectperipheral:error:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDisconnectPeripheral:error:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didDisconnectPeripheral:error:)":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDisconnectPeripheral:error:)","abstract":[],"title":"centralManager(_:didDisconnectPeripheral:error:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddisconnectperipheral:error:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:).json index 9f568e2..06d4240 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":" "},{"kind":"internalParam","text":"RSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddiscover:advertisementdata:rssi:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDiscover:advertisementData:rssi:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didDiscover:advertisementData:rssi:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"title":"centralManager(_:didDiscover:advertisementData:rssi:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_11didDiscover17advertisementData4rssiyAA0dE0C_AA13CBMPeripheral_pSDySSypGSo8NSNumberCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didDiscover:advertisementData:rssi:)":{"role":"symbol","title":"centralManager(_:didDiscover:advertisementData:rssi:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDiscover:advertisementData:rssi:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddiscover:advertisementdata:rssi:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDiscover:advertisementData:rssi:)","interfaceLanguage":"swift"},"metadata":{"title":"centralManager(_:didDiscover:advertisementData:rssi:)","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_11didDiscover17advertisementData4rssiyAA0dE0C_AA13CBMPeripheral_pSDySSypGSo8NSNumberCtF","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDiscover","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"advertisementData"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"rssi"},{"text":": ","kind":"text"},{"text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMCentralManagerDelegate.centralManager(_:didDiscover:advertisementData:rssi:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddiscover:advertisementdata:rssi:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscover"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"rssi"},{"text":" ","kind":"text"},{"text":"RSSI","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"text":")","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didDiscover:advertisementData:rssi:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didDiscover","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"text":"rssi","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didDiscover:advertisementData:rssi:)","type":"topic","title":"centralManager(_:didDiscover:advertisementData:rssi:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddiscover:advertisementdata:rssi:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:).json index 111cf6d..9f60132 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didfailtoconnect:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didFailToConnect:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didFailToConnect:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"centralManager(_:didFailToConnect:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_16didFailToConnect5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didFailToConnect:error:)":{"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didFailToConnect:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didfailtoconnect:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"central","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMCentralManager","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"didFailToConnect","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didFailToConnect"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"title":"centralManager(_:didFailToConnect:error:)","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_16didFailToConnect5erroryAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtF","symbolKind":"method","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManagerDelegate.centralManager(_:didFailToConnect:error:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didfailtoconnect:error:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didFailToConnect:error:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didFailToConnect:error:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didFailToConnect","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"centralManager(_:didFailToConnect:error:)","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didFailToConnect:error:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didfailtoconnect:error:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:).json index cb22153..418adc4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didupdateancsauthorizationfor:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didUpdateANCSAuthorizationFor:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:didUpdateANCSAuthorizationFor:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_29didUpdateANCSAuthorizationForyAA0dE0C_AA13CBMPeripheral_ptF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didUpdateANCSAuthorizationFor:)":{"role":"symbol","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didUpdateANCSAuthorizationFor:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didupdateancsauthorizationfor:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"central","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didUpdateANCSAuthorizationFor","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didupdateancsauthorizationfor:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMCentralManagerDelegate.centralManager(_:didUpdateANCSAuthorizationFor:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didUpdateANCSAuthorizationFor:)"},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","metadata":{"symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_29didUpdateANCSAuthorizationForyAA0dE0C_AA13CBMPeripheral_ptF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"deprecated":false,"introducedAt":"13.0","beta":false,"unavailable":false,"name":"iOS"}],"title":"centralManager(_:didUpdateANCSAuthorizationFor:)","roleHeading":"Instance Method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didUpdateANCSAuthorizationFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:didUpdateANCSAuthorizationFor:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateANCSAuthorizationFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":")","kind":"text"}],"type":"topic","title":"centralManager(_:didUpdateANCSAuthorizationFor:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:didUpdateANCSAuthorizationFor:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didupdateancsauthorizationfor:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:).json index 7a0a8af..44577b5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":" "},{"kind":"internalParam","text":"dict"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:willrestorestate:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:willRestoreState:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManager(_:willRestoreState:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"title":"centralManager(_:willRestoreState:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_16willRestoreStateyAA0dE0C_SDySSypGtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:willRestoreState:)":{"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:willRestoreState:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:willrestorestate:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:willrestorestate:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE0_16willRestoreStateyAA0dE0C_SDySSypGtF","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"])","kind":"text"}],"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"title":"centralManager(_:willRestoreState:)","symbolKind":"method","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"central"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":" "},{"text":"dict","kind":"internalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"])"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:willRestoreState:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManagerDelegate.centralManager(_:willRestoreState:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManager(_:willRestoreState:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"willRestoreState","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"])","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManager(_:willRestoreState:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:willrestorestate:)","title":"centralManager(_:willRestoreState:)","abstract":[],"kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:).json index 5eba8dd..e9aefee 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"central"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanagerdidupdatestate(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManagerDidUpdateState(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManagerDelegate.centralManagerDidUpdateState(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":")"}],"title":"centralManagerDidUpdateState(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE14DidUpdateStateyyAA0dE0CF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManagerDidUpdateState(_:)":{"role":"symbol","title":"centralManagerDidUpdateState(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManagerDidUpdateState(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanagerdidupdatestate(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManagerDidUpdateState(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC07centralE14DidUpdateStateyyAA0dE0CF","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":")","kind":"text"}],"symbolKind":"method","roleHeading":"Instance Method","title":"centralManagerDidUpdateState(_:)","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManagerDelegate.centralManagerDidUpdateState(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"centralManagerDidUpdateState","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"central","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":")","kind":"text"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanagerdidupdatestate(_:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/centralManagerDidUpdateState(_:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/centralManagerDidUpdateState(_:)","type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanagerdidupdatestate(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManagerDidUpdateState"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":")","kind":"text"}],"title":"centralManagerDidUpdateState(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur.json index bb08946..7ea977f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionEventDidOccur"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":") -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/connectioneventdidoccur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/connectionEventDidOccur","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionEventDidOccur"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"title":"connectionEventDidOccur","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC23connectionEventDidOccuryAA0dE0C_So012CBConnectionI0VAA13CBMPeripheral_ptcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"role":"symbol","title":"CBMConnectionEvent","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEvent"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectionevent"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/connectionEventDidOccur":{"role":"symbol","title":"connectionEventDidOccur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionEventDidOccur"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/connectionEventDidOccur","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/connectioneventdidoccur"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/connectioneventdidoccur"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/connectionEventDidOccur","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionEventDidOccur"},{"text":": ((","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"CBMConnectionEvent","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":") -> ())?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Property","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC23connectionEventDidOccuryAA0dE0C_So012CBConnectionI0VAA13CBMPeripheral_ptcSgvp","title":"connectionEventDidOccur","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionEventDidOccur"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","text":"CBMConnectionEvent","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent"},{"text":", ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":") -> ())?","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","url":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","abstract":[{"text":"A change to the connection state of a peer.","type":"text"}],"role":"symbol","navigatorTitle":[{"text":"CBMConnectionEvent","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEvent"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/connectionEventDidOccur":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/connectioneventdidoccur","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"connectionEventDidOccur","kind":"identifier"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"text":"CBMConnectionEvent","preciseIdentifier":"s:17CoreBluetoothMock18CBMConnectionEventa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":") -> ())?"}],"type":"topic","kind":"symbol","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/connectionEventDidOccur","role":"symbol","title":"connectionEventDidOccur"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect.json index b458261..6066e2c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didConnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":") -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didconnect"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didConnect","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didConnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"title":"didConnect","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC10didConnectyAA0dE0C_AA13CBMPeripheral_ptcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didConnect":{"role":"symbol","title":"didConnect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didConnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didConnect","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didconnect"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didconnect"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didConnect","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"didConnect"},{"kind":"text","text":": (("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":") -> ())?"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"property","title":"didConnect","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC10didConnectyAA0dE0C_AA13CBMPeripheral_ptcSgvp","roleHeading":"Instance Property"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"didConnect","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":", "},{"text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didConnect":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didconnect","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didConnect"},{"kind":"text","text":": (("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didConnect","type":"topic","role":"symbol","title":"didConnect","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect.json index 8c9315e..51fb949 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDisconnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddisconnect"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDisconnect","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDisconnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didDisconnect","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC13didDisconnectyAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didDisconnect":{"role":"symbol","title":"didDisconnect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDisconnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDisconnect","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddisconnect"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddisconnect"]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"didDisconnect","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?) -> ())?","kind":"text"}],"title":"didDisconnect","symbolKind":"property","roleHeading":"Instance Property","role":"symbol","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC13didDisconnectyAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDisconnect"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"didDisconnect","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didDisconnect":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didDisconnect","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":", "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?) -> ())?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDisconnect","title":"didDisconnect","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddisconnect","role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral.json index 976b676..930bff1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverPeripheral"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":") -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddiscoverperipheral"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDiscoverPeripheral","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverPeripheral"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":") -> ())?"}],"title":"didDiscoverPeripheral","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC21didDiscoverPeripheralyAA0dE0C_AA13CBMPeripheral_pSDySSypGSo8NSNumberCtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didDiscoverPeripheral":{"role":"symbol","title":"didDiscoverPeripheral","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverPeripheral"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDiscoverPeripheral","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddiscoverperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"didDiscoverPeripheral","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"preciseIdentifier":"c:objc(cs)NSNumber","kind":"typeIdentifier","text":"NSNumber"},{"kind":"text","text":") -> ())?"}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDiscoverPeripheral"},"metadata":{"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC21didDiscoverPeripheralyAA0dE0C_AA13CBMPeripheral_pSDySSypGSo8NSNumberCtcSgvp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"didDiscoverPeripheral","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber"},{"kind":"text","text":") -> ())?"}],"title":"didDiscoverPeripheral","symbolKind":"property","role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddiscoverperipheral"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didDiscoverPeripheral":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didDiscoverPeripheral"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":") -> ())?"}],"abstract":[],"title":"didDiscoverPeripheral","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddiscoverperipheral","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didDiscoverPeripheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect.json index f556ace..4406e04 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didFailToConnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didfailtoconnect"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didFailToConnect","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didFailToConnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didFailToConnect","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC16didFailToConnectyAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didFailToConnect":{"role":"symbol","title":"didFailToConnect","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didFailToConnect"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didFailToConnect","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didfailtoconnect"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didFailToConnect"},{"text":": ((","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?) -> ())?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didfailtoconnect"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didFailToConnect","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"kind":"symbol","metadata":{"role":"symbol","title":"didFailToConnect","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC16didFailToConnectyAA0dE0C_AA13CBMPeripheral_ps5Error_pSgtcSgvp","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"didFailToConnect"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"symbolKind":"property"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didFailToConnect":{"abstract":[],"title":"didFailToConnect","type":"topic","kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didFailToConnect","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"didFailToConnect","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?) -> ())?"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didfailtoconnect"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization.json index bb61c18..7b66d66 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateANCSAuthorization"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":") -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdateancsauthorization"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateANCSAuthorization","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateANCSAuthorization"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"title":"didUpdateANCSAuthorization","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC26didUpdateANCSAuthorizationyAA0dE0C_AA13CBMPeripheral_ptcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didUpdateANCSAuthorization":{"role":"symbol","title":"didUpdateANCSAuthorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateANCSAuthorization"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateANCSAuthorization","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdateancsauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateANCSAuthorization","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateANCSAuthorization"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":") -> ())?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"didUpdateANCSAuthorization","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC26didUpdateANCSAuthorizationyAA0dE0C_AA13CBMPeripheral_ptcSgvp","role":"symbol","symbolKind":"property"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdateancsauthorization"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateANCSAuthorization"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"kind":"text","text":") -> ())?"}],"platforms":["macOS"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didUpdateANCSAuthorization":{"type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateANCSAuthorization"},{"kind":"text","text":": (("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":") -> ())?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateANCSAuthorization","abstract":[],"title":"didUpdateANCSAuthorization","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdateancsauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate.json index d838f70..36cc21f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":") -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdatestate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateState","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":") -> ())?"}],"title":"didUpdateState","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC14didUpdateStateyAA0dE0CcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didUpdateState":{"role":"symbol","title":"didUpdateState","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateState","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdatestate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateState"},{"kind":"text","text":": (("},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":") -> ())?"}],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateState"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdatestate"]}],"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"didUpdateState","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":") -> ())?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Property","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC14didUpdateStateyAA0dE0CcSgvp","title":"didUpdateState","role":"symbol"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/didUpdateState":{"type":"topic","role":"symbol","title":"didUpdateState","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdatestate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/didUpdateState","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didUpdateState","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"text":") -> ())?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate.json index ded5f27..9d95d39 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"willRestoreState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/willrestorestate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/willRestoreState","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"willRestoreState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]) -> ())?"}],"title":"willRestoreState","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC16willRestoreStateyAA0dE0C_SDySSypGtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/willRestoreState":{"role":"symbol","title":"willRestoreState","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"willRestoreState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/willRestoreState","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/willrestorestate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"willRestoreState","kind":"identifier"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]) -> ())?"}],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/willRestoreState","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/willrestorestate"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy"]]},"sections":[],"metadata":{"role":"symbol","roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock30CBMCentralManagerDelegateProxyC16willRestoreStateyAA0dE0C_SDySSypGtcSgvp","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"willRestoreState","kind":"identifier"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"]) -> ())?","kind":"text"}],"symbolKind":"property","title":"willRestoreState"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy/willRestoreState":{"kind":"symbol","role":"symbol","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"willRestoreState","kind":"identifier"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"},{"kind":"text","text":", ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]) -> ())?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/willrestorestate","title":"willRestoreState","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy\/willRestoreState"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory.json index 1065180..31fb609 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The factory may be used to automatically instantiate either a native or mock implementation based"},{"type":"text","text":" "},{"type":"text","text":"on the environment. You may also instantiate the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"},{"type":"text","text":" or"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"},{"type":"text","text":" without using this factory."}]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"title":"CBMCentralManagerFactory","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:17CoreBluetoothMock24CBMCentralManagerFactoryC","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Type Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:options:forceMock:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(forceMock:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:forceMock:)":{"role":"symbol","title":"instance(delegate:queue:forceMock:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:options:forceMock:)":{"role":"symbol","title":"instance(delegate:queue:options:forceMock:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:options:forceMock:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:options:forcemock:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(forceMock:)":{"role":"symbol","title":"instance(forceMock:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(forceMock:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(forcemock:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","type":"heading","text":"Overview","level":2},{"type":"paragraph","inlineContent":[{"text":"The factory may be used to automatically instantiate either a native or mock implementation based","type":"text"},{"text":" ","type":"text"},{"text":"on the environment. You may also instantiate the ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","type":"reference","isActive":true},{"type":"text","text":" or"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","isActive":true},{"text":" without using this factory.","type":"text"}]}]}],"topicSections":[{"title":"Type Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:options:forceMock:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(forceMock:)"]}],"metadata":{"title":"CBMCentralManagerFactory","symbolKind":"class","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Class","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"navigatorTitle":[{"text":"CBMCentralManagerFactory","kind":"identifier"}],"role":"symbol","externalID":"s:17CoreBluetoothMock24CBMCentralManagerFactoryC"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","interfaceLanguage":"swift"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"]}],"sections":[],"abstract":[{"text":"The factory that instantiates the ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference"},{"type":"text","text":" object."}],"seeAlsoSections":[{"generated":true,"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:forceMock:)":{"title":"instance(delegate:queue:forceMock:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"instance"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)OS_dispatch_queue","kind":"typeIdentifier","text":"DispatchQueue"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"forceMock"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"}],"abstract":[{"text":"Returns the implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":", depending on the environment.","type":"text"},{"text":" ","type":"text"},{"text":"On a simulator, or when the ","type":"text"},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:options:forceMock:)":{"title":"instance(delegate:queue:options:forceMock:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:options:forceMock:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:options:forcemock:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"instance"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue","text":"DispatchQueue"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?, ","kind":"text"},{"text":"forceMock","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"}],"abstract":[{"text":"Returns the implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference","isActive":true},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"code":"forceMock","type":"codeVoice"},{"text":" flag is enabled, the mock","type":"text"},{"type":"text","text":" "},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(forceMock:)":{"title":"instance(forceMock:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(forceMock:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(forcemock:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"instance","kind":"identifier"},{"text":"(","kind":"text"},{"text":"forceMock","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"text":"Returns the implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":", depending on the environment.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"On a simulator, or when the "},{"code":"forceMock","type":"codeVoice"},{"type":"text","text":" flag is enabled, the mock"},{"text":" ","type":"text"},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:).json index 9abe894..6903b5d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"delegate","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The delegate that will receive central role events."}]}]},{"name":"queue","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The dispatch queue on which the events will be dispatched."},{"type":"text","text":" "},{"type":"text","text":"If "},{"type":"codeVoice","code":"nil"},{"type":"text","text":", the main queue will be used."}]}]},{"name":"forceMock","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A flag to force mocking also on a physical device."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"title":"instance(delegate:queue:forceMock:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock24CBMCentralManagerFactoryC8instance8delegate5queue05forceC0AA0dE0CAA0dE8Delegate_pSg_So012OS_dispatch_I0CSgSbtFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:forceMock:)":{"role":"symbol","title":"instance(delegate:queue:forceMock:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Type Method","title":"instance(delegate:queue:forceMock:)","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock24CBMCentralManagerFactoryC8instance8delegate5queue05forceC0AA0dE0CAA0dE8Delegate_pSg_So012OS_dispatch_I0CSgSbtFZ","symbolKind":"method","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"instance","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","kind":"typeIdentifier","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"text":"forceMock","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"}]},"kind":"symbol","sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"text":"Returns the implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference","isActive":true},{"text":", depending on the environment.","type":"text"},{"text":" ","type":"text"},{"text":"On a simulator, or when the ","type":"text"},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"instance"},{"text":"(","kind":"text"},{"text":"delegate","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","text":"CBMCentralManagerDelegate","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)OS_dispatch_queue","text":"DispatchQueue","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"forceMock","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = false) -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"name":"delegate","content":[{"inlineContent":[{"text":"The delegate that will receive central role events.","type":"text"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"type":"text","text":"The dispatch queue on which the events will be dispatched."},{"text":" ","type":"text"},{"type":"text","text":"If "},{"code":"nil","type":"codeVoice"},{"type":"text","text":", the main queue will be used."}],"type":"paragraph"}],"name":"queue"},{"name":"forceMock","content":[{"inlineContent":[{"text":"A flag to force mocking also on a physical device.","type":"text"}],"type":"paragraph"}]}]},{"content":[{"type":"heading","level":2,"text":"Return Value","anchor":"return-value"},{"inlineContent":[{"type":"text","text":"The implementation of "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:forceMock:)":{"title":"instance(delegate:queue:forceMock:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"instance"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)OS_dispatch_queue","kind":"typeIdentifier","text":"DispatchQueue"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"forceMock"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"}],"abstract":[{"text":"Returns the implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":", depending on the environment.","type":"text"},{"text":" ","type":"text"},{"text":"On a simulator, or when the ","type":"text"},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:).json index cdb6ef6..cbe9979 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"delegate","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The delegate that will receive central role events."}]}]},{"name":"queue","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The dispatch queue on which the events will be dispatched."},{"type":"text","text":" "},{"type":"text","text":"If "},{"type":"codeVoice","code":"nil"},{"type":"text","text":", the main queue will be used."}]}]},{"name":"options","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An optional dictionary specifying options for the manager."}]}]},{"name":"forceMock","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A flag to force mocking also on a physical device."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:options:forcemock:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:options:forceMock:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"title":"instance(delegate:queue:options:forceMock:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock24CBMCentralManagerFactoryC8instance8delegate5queue7options05forceC0AA0dE0CAA0dE8Delegate_pSg_So012OS_dispatch_I0CSgSDySSypGSgSbtFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:options:forceMock:)":{"role":"symbol","title":"instance(delegate:queue:options:forceMock:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:options:forceMock:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:options:forcemock:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:options:forcemock:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:options:forceMock:)"},"kind":"symbol","abstract":[{"text":"Returns the implementation of ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"text":"On a simulator, or when the ","type":"text"},{"code":"forceMock","type":"codeVoice"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"instance","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"text":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"queue","kind":"externalParam"},{"kind":"text","text":": "},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false) -> "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier","text":"CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"}],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"delegate","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The delegate that will receive central role events."}]}]},{"content":[{"inlineContent":[{"type":"text","text":"The dispatch queue on which the events will be dispatched."},{"text":" ","type":"text"},{"text":"If ","type":"text"},{"type":"codeVoice","code":"nil"},{"text":", the main queue will be used.","type":"text"}],"type":"paragraph"}],"name":"queue"},{"content":[{"type":"paragraph","inlineContent":[{"text":"An optional dictionary specifying options for the manager.","type":"text"}]}],"name":"options"},{"content":[{"inlineContent":[{"type":"text","text":"A flag to force mocking also on a physical device."}],"type":"paragraph"}],"name":"forceMock"}]},{"content":[{"type":"heading","anchor":"return-value","text":"Return Value","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"The implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference","isActive":true},{"type":"text","text":"."}]}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"]]},"metadata":{"roleHeading":"Type Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"instance","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"preciseIdentifier":"c:objc(cs)OS_dispatch_queue","kind":"typeIdentifier","text":"DispatchQueue"},{"kind":"text","text":"?, "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"}],"role":"symbol","externalID":"s:17CoreBluetoothMock24CBMCentralManagerFactoryC8instance8delegate5queue7options05forceC0AA0dE0CAA0dE8Delegate_pSg_So012OS_dispatch_I0CSgSDySSypGSgSbtFZ","title":"instance(delegate:queue:options:forceMock:)","symbolKind":"method"},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:options:forceMock:)":{"title":"instance(delegate:queue:options:forceMock:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:options:forceMock:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:options:forcemock:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"instance"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue","text":"DispatchQueue"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?, ","kind":"text"},{"text":"forceMock","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"}],"abstract":[{"text":"Returns the implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference","isActive":true},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"code":"forceMock","type":"codeVoice"},{"text":" flag is enabled, the mock","type":"text"},{"type":"text","text":" "},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:).json index c2a187d..a27278c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"forceMock","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A flag to force mocking also on physical device."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(forcemock:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(forceMock:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"title":"instance(forceMock:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock24CBMCentralManagerFactoryC8instance05forceC0AA0dE0CSb_tFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(forceMock:)":{"role":"symbol","title":"instance(forceMock:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(forceMock:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(forcemock:)"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(forcemock:)"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(forceMock:)","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"instance"},{"text":"(","kind":"text"},{"text":"forceMock","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" = false) -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"forceMock","content":[{"type":"paragraph","inlineContent":[{"text":"A flag to force mocking also on physical device.","type":"text"}]}]}]},{"content":[{"level":2,"text":"Return Value","type":"heading","anchor":"return-value"},{"inlineContent":[{"text":"The implementation of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Type Method","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"instance","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"title":"instance(forceMock:)","symbolKind":"method","externalID":"s:17CoreBluetoothMock24CBMCentralManagerFactoryC8instance05forceC0AA0dE0CSb_tFZ"},"abstract":[{"type":"text","text":"Returns the implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(forceMock:)":{"title":"instance(forceMock:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(forceMock:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(forcemock:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"instance","kind":"identifier"},{"text":"(","kind":"text"},{"text":"forceMock","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"text":"Returns the implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":", depending on the environment.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"On a simulator, or when the "},{"code":"forceMock","type":"codeVoice"},{"type":"text","text":" flag is enabled, the mock"},{"text":" ","type":"text"},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock.json index 38acb39..da6f2cb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"title":"CBMCentralManagerMock","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManagerMock","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}]},"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:options:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.property","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/state"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/cancelPeripheralConnection(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/connect(_:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrieveConnectedPeripherals(withServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/stopScan()"]},{"title":"Type Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.type.property","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration"]},{"title":"Type Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This implementation will interact only with mock peripherals created using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)"},{"type":"text","text":"."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/authorization-swift.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.property"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateStateRestoration":{"role":"symbol","title":"simulateStateRestoration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)?"}],"abstract":[{"type":"text","text":"This simulation method is called when a mock central manager was"},{"type":"text","text":" "},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"type":"text","text":"("},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey"},{"type":"text","text":")."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOn()":{"role":"symbol","title":"simulatePowerOn()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOn"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates turning the Bluetooth adapter on."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateInitialState(_:)":{"role":"symbol","title":"simulateInitialState(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateInitialState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets the initial state of the Bluetooth central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init(delegate:queue:options:)":{"role":"symbol","title":"init(delegate:queue:options:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOff()":{"role":"symbol","title":"simulatePowerOff()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOff"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulate turning the Bluetooth adapter off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateAuthorization(_:)":{"role":"symbol","title":"simulateAuthorization(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAuthorization"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates the current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"role":"symbol","title":"simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Creates a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"type":"text","text":" instance, which can be used to define"},{"type":"text","text":" "},{"type":"text","text":"the behavior or a mocked peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/tearDownSimulation()":{"role":"symbol","title":"tearDownSimulation()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tearDownSimulation"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Removes all active central manager instances and peripherals from the"},{"type":"text","text":" "},{"type":"text","text":"simulation, resetting it to the initial state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/authorization-swift.type.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.type.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.type.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","title":"CBMCentralManagerOptionRestoreIdentifierKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A string containing a unique identifier (UID) for the central manager to instantiate."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"role":"symbol","title":"simulatePeripherals(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripherals"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/stopScan()":{"role":"symbol","title":"stopScan()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/stopScan()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/stopscan()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/scanForPeripherals(withServices:options:)":{"role":"symbol","title":"scanForPeripherals(withServices:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/scanForPeripherals(withServices:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/scanforperipherals(withservices:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init(delegate:queue:)":{"role":"symbol","title":"init(delegate:queue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","text":"Overview","anchor":"overview","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"This implementation will interact only with mock peripherals created using"},{"text":" ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","type":"reference"},{"text":".","type":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:options:)"],"title":"Initializers"},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.property","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/state"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/cancelPeripheralConnection(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/connect(_:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrieveConnectedPeripherals(withServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/stopScan()"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.type.property","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration"],"title":"Type Properties"},{"title":"Type Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()"]}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"type":"text","text":"."}],"relationshipsSections":[{"title":"Inherits From","kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"],"type":"inheritsFrom"},{"type":"conformsTo","title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships"}],"sections":[],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"text":"CBMCentralManagerMock","kind":"identifier"}],"title":"CBMCentralManagerMock","roleHeading":"Class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManagerMock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerMock"}],"symbolKind":"class"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","interfaceLanguage":"swift"},"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"title":"Central Manager"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/authorization-swift.property":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.property","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization","kind":"typeIdentifier"}],"title":"authorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.property","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/stopScan()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/stopScan()","type":"topic","title":"stopScan()","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/stopscan()","kind":"symbol"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/scanForPeripherals(withServices:options:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scanForPeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withServices"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/scanForPeripherals(withServices:options:)","type":"topic","title":"scanForPeripherals(withServices:options:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/scanforperipherals(withservices:options:)","kind":"symbol"},"doc://CoreBluetoothMock/SH":{"identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable","type":"unresolvable"},"doc://CoreBluetoothMock/s7CVarArgP":{"identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","title":"Swift.CVarArg","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init(delegate:queue:)":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"text":": ","kind":"text"},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:)","type":"topic","title":"init(delegate:queue:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/cancelPeripheralConnection(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"cancelPeripheralConnection","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/cancelPeripheralConnection(_:)","type":"topic","title":"cancelPeripheralConnection(_:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/cancelperipheralconnection(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init()":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init()","kind":"symbol","role":"symbol","type":"topic","title":"init()","fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init()","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOff()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePowerOff"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","type":"topic","title":"simulatePowerOff()","abstract":[{"text":"Simulate turning the Bluetooth adapter off.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateInitialState(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateInitialState"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","kind":"typeIdentifier","text":"CBMManagerState"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","type":"topic","title":"simulateInitialState(_:)","abstract":[{"text":"Sets the initial state of the Bluetooth central manager.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init(delegate:queue:options:)":{"role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue","text":"DispatchQueue"},{"text":"?, ","kind":"text"},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:options:)","type":"topic","title":"init(delegate:queue:options:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:options:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/tearDownSimulation()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tearDownSimulation"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","type":"topic","title":"tearDownSimulation()","abstract":[{"type":"text","text":"Removes all active central manager instances and peripherals from the"},{"type":"text","text":" "},{"text":"simulation, resetting it to the initial state.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/SQ":{"identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/connect(_:options:)":{"abstract":[],"role":"symbol","title":"connect(_:options:)","kind":"symbol","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/connect(_:options:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/connect(_:options:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/authorization-swift.type.property":{"role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.type.property","type":"topic","title":"authorization","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.type.property","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"text":"identifier","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier","text":"UUID"},{"kind":"text","text":", "},{"text":"proximity","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"kind":"symbol","role":"symbol","title":"simulatePeripheral(identifier:proximity:)","abstract":[{"type":"text","text":"Creates a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"text":" instance, which can be used to define","type":"text"},{"text":" ","type":"text"},{"text":"the behavior or a mocked peripheral.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/state":{"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","kind":"typeIdentifier","text":"CBMManagerState"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/state","type":"topic","title":"state","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/state","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateAuthorization(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateAuthorization"},{"kind":"text","text":"("},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","type":"topic","title":"simulateAuthorization(_:)","abstract":[{"type":"text","text":"Simulates the current authorization state of a Core Bluetooth manager."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOn()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulatePowerOn","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","type":"topic","title":"simulatePowerOn()","abstract":[{"type":"text","text":"Simulates turning the Bluetooth adapter on."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrieveConnectedPeripherals(withServices:)","type":"topic","title":"retrieveConnectedPeripherals(withServices:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveconnectedperipherals(withservices:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","type":"topic","title":"CBMCentralManagerOptionRestoreIdentifierKey","abstract":[{"text":"A string containing a unique identifier (UID) for the central manager to instantiate.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)","kind":"symbol","title":"simulatePeripherals(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","role":"symbol","type":"topic","abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulatePeripherals","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":"])","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible","type":"unresolvable"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateStateRestoration":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","type":"topic","title":"simulateStateRestoration","abstract":[{"text":"This simulation method is called when a mock central manager was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"text":"(","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","isActive":true,"type":"reference"},{"type":"text","text":")."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property.json index 9196b16..8917c00 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.authorization"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"authorization","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C13authorizationSo22CBManagerAuthorizationVvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"deprecatedAt":"13.1","beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"deprecatedAt":"13.1","beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"deprecatedAt":"6.1","beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/authorization-swift.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.property","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"override","kind":"keyword"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","text":"CBMManagerAuthorization"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.authorization"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.property"]}],"metadata":{"symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"role":"symbol","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C13authorizationSo22CBManagerAuthorizationVvp","roleHeading":"Instance Property","platforms":[{"deprecated":false,"deprecatedAt":"13.1","beta":false,"name":"iOS","unavailable":false,"introducedAt":"13.0"},{"name":"macOS","introducedAt":"10.15","deprecated":false,"unavailable":false,"beta":false},{"deprecatedAt":"13.1","unavailable":false,"beta":false,"introducedAt":"13.0","deprecated":false,"name":"tvOS"},{"name":"watchOS","deprecatedAt":"6.1","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"6.0"}],"title":"authorization"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/authorization-swift.property":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.property","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization","kind":"typeIdentifier"}],"title":"authorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.property","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property.json index 2a4f514..dd96313 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.type.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.type.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.authorization"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"authorization","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C13authorizationSo22CBManagerAuthorizationVvpZ","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.1","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.1","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.1","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/authorization-swift.type.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.type.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.type.property"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.type.property","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMCentralManager.authorization"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"metadata":{"externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C13authorizationSo22CBManagerAuthorizationVvpZ","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"deprecated":false,"beta":false,"name":"iOS","unavailable":false,"introducedAt":"13.1"},{"unavailable":false,"deprecated":false,"beta":false,"name":"macOS","introducedAt":"10.15"},{"name":"tvOS","deprecated":false,"introducedAt":"13.1","unavailable":false,"beta":false},{"deprecated":false,"introducedAt":"6.1","name":"watchOS","unavailable":false,"beta":false}],"title":"authorization","role":"symbol","symbolKind":"property","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"roleHeading":"Type Property"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.type.property"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/authorization-swift.type.property":{"role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/authorization-swift.type.property","type":"topic","title":"authorization","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.type.property","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:).json index f77665f..317f6a2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/cancelperipheralconnection(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/cancelPeripheralConnection(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.cancelPeripheralConnection(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"title":"cancelPeripheralConnection(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C26cancelPeripheralConnectionyyAA13CBMPeripheral_pF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":")","kind":"text"}]}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/cancelPeripheralConnection(_:)","interfaceLanguage":"swift"},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"cancelPeripheralConnection(_:)","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C26cancelPeripheralConnectionyyAA13CBMPeripheral_pF"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/cancelperipheralconnection(_:)"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMCentralManager.cancelPeripheralConnection(_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/cancelPeripheralConnection(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"cancelPeripheralConnection","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/cancelPeripheralConnection(_:)","type":"topic","title":"cancelPeripheralConnection(_:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/cancelperipheralconnection(_:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:).json index dcd4066..d80c306 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/connect(_:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/connect(_:options:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.connect(_:options:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"title":"connect(_:options:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C7connect_7optionsyAA13CBMPeripheral_p_SDySSypGSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","role":"symbol","title":"connect(_:options:)","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C7connect_7optionsyAA13CBMPeripheral_p_SDySSypGSgtF","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"options","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/connect(_:options:)"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMCentralManager.connect(_:options:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/connect(_:options:)","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]? = nil)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/connect(_:options:)":{"abstract":[],"role":"symbol","title":"connect(_:options:)","kind":"symbol","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/connect(_:options:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/connect(_:options:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init().json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init().json index 9957183..5e3e91f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init().json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init()","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0CACycfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"}}} \ No newline at end of file +{"metadata":{"symbolKind":"init","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0CACycfc","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}],"title":"init()","roleHeading":"Initializer","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init()","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init()":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init()","kind":"symbol","role":"symbol","type":"topic","title":"init()","fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init()","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:).json index 2f750bd..93d68d1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"title":"init(delegate:queue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C8delegate5queueAcA0dE8Delegate_pSg_So012OS_dispatch_G0CSgtcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init(delegate:queue:)":{"role":"symbol","title":"init(delegate:queue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Initializer","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue","text":"DispatchQueue"},{"text":"?)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"init(delegate:queue:)","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C8delegate5queueAcA0dE8Delegate_pSg_So012OS_dispatch_G0CSgtcfc","role":"symbol","symbolKind":"init"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"queue"},{"text":": ","kind":"text"},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"text":"?)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init(delegate:queue:)":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"text":": ","kind":"text"},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:)","type":"topic","title":"init(delegate:queue:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:).json index 47b908e..565949b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:options:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"init(delegate:queue:options:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"symbolKind":"init","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C8delegate5queue7optionsAcA0dE8Delegate_pSg_So012OS_dispatch_G0CSgSDySSypGSgtcfc","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"7.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init(delegate:queue:options:)":{"role":"symbol","title":"init(delegate:queue:options:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:options:)"},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"delegate","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"init(delegate:queue:options:)","platforms":[{"beta":false,"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"7.0"}],"symbolKind":"init","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C8delegate5queue7optionsAcA0dE8Delegate_pSg_So012OS_dispatch_G0CSgSDySSypGSgtcfc"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"delegate","kind":"externalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/init(delegate:queue:options:)":{"role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue","text":"DispatchQueue"},{"text":"?, ","kind":"text"},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/init(delegate:queue:options:)","type":"topic","title":"init(delegate:queue:options:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:options:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:).json index 66acb49..b14ed43 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveconnectedperipherals(withservices:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrieveConnectedPeripherals(withServices:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.retrieveConnectedPeripherals(withServices:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"title":"retrieveConnectedPeripherals(withServices:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C28retrieveConnectedPeripherals12withServicesSayAA13CBMPeripheral_pGSaySo6CBUUIDCG_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveconnectedperipherals(withservices:)"]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"text":"]) -> [","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C28retrieveConnectedPeripherals12withServicesSayAA13CBMPeripheral_pGSaySo6CBUUIDCG_tF","title":"retrieveConnectedPeripherals(withServices:)","roleHeading":"Instance Method"},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"override","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"text":"withServices","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"serviceUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]) -> [","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrieveConnectedPeripherals(withServices:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManager.retrieveConnectedPeripherals(withServices:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrieveConnectedPeripherals(withServices:)","type":"topic","title":"retrieveConnectedPeripherals(withServices:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveconnectedperipherals(withservices:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:).json index 3d61a42..d09aeeb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":" "},{"kind":"internalParam","text":"identifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"title":"retrievePeripherals(withIdentifiers:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C19retrievePeripherals15withIdentifiersSayAA13CBMPeripheral_pGSay10Foundation4UUIDVG_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","interfaceLanguage":"swift"},"metadata":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C19retrievePeripherals15withIdentifiersSayAA13CBMPeripheral_pGSay10Foundation4UUIDVG_tF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"text":"(","kind":"text"},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"override","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"identifiers","kind":"internalParam"},{"kind":"text","text":": ["},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral"},{"text":"]","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:).json index 9127791..5ecea68 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/scanforperipherals(withservices:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/scanForPeripherals(withServices:options:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.scanForPeripherals(withServices:options:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"title":"scanForPeripherals(withServices:options:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/scanForPeripherals(withServices:options:)":{"role":"symbol","title":"scanForPeripherals(withServices:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/scanForPeripherals(withServices:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/scanforperipherals(withservices:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/scanforperipherals(withservices:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scanForPeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"method","title":"scanForPeripherals(withServices:options:)","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF","roleHeading":"Instance Method"},"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"override","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scanForPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"serviceUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"options","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]? = nil)","kind":"text"}]}],"kind":"declarations"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/scanForPeripherals(withServices:options:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.scanForPeripherals(withServices:options:)"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/scanForPeripherals(withServices:options:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scanForPeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withServices"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/scanForPeripherals(withServices:options:)","type":"topic","title":"scanForPeripherals(withServices:options:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/scanforperipherals(withservices:options:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:).json index 0d147c2..9028738 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAuthorization"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When set to "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" (default), the native value is returned."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates the current authorization state of a Core Bluetooth manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"simulateAuthorization(_:)","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAuthorization"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C21simulateAuthorizationyySo09CBManagerG0VFZ","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateAuthorization(_:)":{"role":"symbol","title":"simulateAuthorization(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAuthorization"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates the current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAuthorization","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"authorization","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"},{"text":")","kind":"text"}]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"inlineContent":[{"type":"text","text":"When set to "},{"code":"nil","type":"codeVoice"},{"type":"text","text":" (default), the native value is returned."}],"type":"paragraph"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateAuthorization","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","kind":"typeIdentifier","text":"CBMManagerAuthorization"},{"kind":"text","text":")"}],"title":"simulateAuthorization(_:)","symbolKind":"method","platforms":[{"name":"iOS","introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false},{"introducedAt":"10.15","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false,"name":"tvOS"},{"introducedAt":"6.0","beta":false,"deprecated":false,"unavailable":false,"name":"watchOS"}],"roleHeading":"Type Method","role":"symbol","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C21simulateAuthorizationyySo09CBManagerG0VFZ"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)"},"abstract":[{"text":"Simulates the current authorization state of a Core Bluetooth manager.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateAuthorization(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateAuthorization"},{"kind":"text","text":"("},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","type":"topic","title":"simulateAuthorization(_:)","abstract":[{"type":"text","text":"Simulates the current authorization state of a Core Bluetooth manager."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:).json index 5b5cfd7..07730a4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateInitialState"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"state","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The initial state of the central manager."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This method should only be called ones, before any central manager"},{"type":"text","text":" "},{"type":"text","text":"is created. By default, the initial state is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets the initial state of the Bluetooth central manager."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateInitialState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"},{"kind":"text","text":")"}],"title":"simulateInitialState(_:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C20simulateInitialStateyyAA010CBMManagerH0OFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateInitialState(_:)":{"role":"symbol","title":"simulateInitialState(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateInitialState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets the initial state of the Bluetooth central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"role":"symbol","title":"CBMManagerState.poweredOff","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Sets the initial state of the Bluetooth central manager."}],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateInitialState","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"state"},{"text":": ","kind":"text"},{"text":"CBMManagerState","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"parameters":[{"name":"state","content":[{"inlineContent":[{"type":"text","text":"The initial state of the central manager."}],"type":"paragraph"}]}],"kind":"parameters"},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This method should only be called ones, before any central manager"},{"text":" ","type":"text"},{"type":"text","text":"is created. By default, the initial state is "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","isActive":true},{"text":".","type":"text"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)"},"metadata":{"roleHeading":"Type Method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C20simulateInitialStateyyAA010CBMManagerH0OFZ","role":"symbol","symbolKind":"method","title":"simulateInitialState(_:)","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateInitialState"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOff","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"CBMManagerState.poweredOff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateInitialState(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateInitialState"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","kind":"typeIdentifier","text":"CBMManagerState"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","type":"topic","title":"simulateInitialState(_:)","abstract":[{"text":"Sets the initial state of the Bluetooth central manager.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:).json index b638a40..99593da 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripherals"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripherals","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Peripherals specifications."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Peripherals added using this method will be available for scanning"},{"type":"text","text":" "},{"type":"text","text":"and connecting, depending on their proximity. Use peripheral’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)"},{"type":"text","text":" to modify proximity."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"This method may only be called before any central manager was created"},{"type":"text","text":" "},{"type":"text","text":"or when Bluetooth state is "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff"},{"type":"text","text":". Existing list of peripherals"},{"type":"text","text":" "},{"type":"text","text":"will be overridden."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripherals"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"])"}],"title":"simulatePeripherals(_:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C19simulatePeripheralsyySayAA17CBMPeripheralSpecCGFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"role":"symbol","title":"simulatePeripherals(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripherals"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"role":"symbol","title":"CBMManagerState.poweredOff","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulatePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"peripherals","kind":"internalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":"])","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"Peripherals specifications."}],"type":"paragraph"}],"name":"peripherals"}]},{"content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"inlineContent":[{"type":"text","text":"Peripherals added using this method will be available for scanning"},{"text":" ","type":"text"},{"type":"text","text":"and connecting, depending on their proximity. Use peripheral’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)"},{"type":"text","text":" to modify proximity."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This method may only be called before any central manager was created"},{"type":"text","text":" "},{"type":"text","text":"or when Bluetooth state is "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","type":"reference"},{"type":"text","text":". Existing list of peripherals"},{"type":"text","text":" "},{"text":"will be overridden.","type":"text"}]}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C19simulatePeripheralsyySayAA17CBMPeripheralSpecCGFZ","modules":[{"name":"CoreBluetoothMock"}],"title":"simulatePeripherals(_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulatePeripherals","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"role":"symbol","symbolKind":"method","roleHeading":"Type Method"},"abstract":[{"text":"This method sets a list of simulated peripherals.","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)"},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)","kind":"symbol","title":"simulatePeripherals(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","role":"symbol","type":"topic","abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulatePeripherals","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":"])","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOff","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"CBMManagerState.poweredOff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff().json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff().json index b208ba8..0deda2f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff().json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOff"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulate turning the Bluetooth adapter off."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOff"},{"kind":"text","text":"()"}],"title":"simulatePowerOff()","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C16simulatePowerOffyyFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOff()":{"role":"symbol","title":"simulatePowerOff()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOff"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulate turning the Bluetooth adapter off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Simulate turning the Bluetooth adapter off."}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulatePowerOff","kind":"identifier"},{"text":"()","kind":"text"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","interfaceLanguage":"swift"},"sections":[],"metadata":{"title":"simulatePowerOff()","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulatePowerOff","kind":"identifier"},{"kind":"text","text":"()"}],"role":"symbol","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C16simulatePowerOffyyFZ","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Type Method"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOff()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePowerOff"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","type":"topic","title":"simulatePowerOff()","abstract":[{"text":"Simulate turning the Bluetooth adapter off.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron().json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron().json index 0ec6680..87c8c4c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron().json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOn"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates turning the Bluetooth adapter on."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOn"},{"kind":"text","text":"()"}],"title":"simulatePowerOn()","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C15simulatePowerOnyyFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOn()":{"role":"symbol","title":"simulatePowerOn()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOn"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates turning the Bluetooth adapter on."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulatePowerOn","kind":"identifier"},{"kind":"text","text":"()"}],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C15simulatePowerOnyyFZ","title":"simulatePowerOn()","roleHeading":"Type Method","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePowerOn"},{"kind":"text","text":"()"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()"},"kind":"symbol","sections":[],"abstract":[{"text":"Simulates turning the Bluetooth adapter on.","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOn()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulatePowerOn","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","type":"topic","title":"simulatePowerOn()","abstract":[{"type":"text","text":"Simulates turning the Bluetooth adapter on."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration.json index 3588a03..f0be273 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The returned map, if not "},{"type":"codeVoice","code":"nil"},{"type":"text","text":", will be passed to"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg"},{"type":"text","text":" before creation."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This simulation method is called when a mock central manager was"},{"type":"text","text":" "},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"type":"text","text":"("},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey"},{"type":"text","text":")."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)?"}],"title":"simulateStateRestoration","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C24simulateStateRestorationSDySSypGSgSScSgvpZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-4zyhg":{"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","title":"CBMCentralManagerOptionRestoreIdentifierKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A string containing a unique identifier (UID) for the central manager to instantiate."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateStateRestoration":{"role":"symbol","title":"simulateStateRestoration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)?"}],"abstract":[{"type":"text","text":"This simulation method is called when a mock central manager was"},{"type":"text","text":" "},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"type":"text","text":"("},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey"},{"type":"text","text":")."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration"]}],"metadata":{"externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C24simulateStateRestorationSDySSypGSgSScSgvpZ","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateStateRestoration","kind":"identifier"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":") -> [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"]?)?","kind":"text"}],"roleHeading":"Type Property","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"property","title":"simulateStateRestoration","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateStateRestoration","kind":"identifier"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"]?)?","kind":"text"}]}],"kind":"declarations"},{"content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"inlineContent":[{"type":"text","text":"The returned map, if not "},{"type":"codeVoice","code":"nil"},{"text":", will be passed to","type":"text"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg"},{"text":" before creation.","type":"text"}],"type":"paragraph"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","isActive":true}]}],"name":"See Also","type":"aside"},{"name":"See Also","style":"note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey"}]}]},{"style":"note","content":[{"inlineContent":[{"type":"text","text":""},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey"}],"type":"paragraph"}],"name":"See Also","type":"aside"}],"kind":"content"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"This simulation method is called when a mock central manager was"},{"type":"text","text":" "},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"type":"text","text":"("},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","isActive":true,"type":"reference"},{"type":"text","text":")."}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStateScanOptionsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStateScanOptionsKey","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","abstract":[{"text":"A dictionary of peripheral scan options for use when restoring state.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStatePeripheralsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey","role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStatePeripheralsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","abstract":[{"text":"An array of peripherals for use when restoring the state of a central manager.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateStateRestoration":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","type":"topic","title":"simulateStateRestoration","abstract":[{"text":"This simulation method is called when a mock central manager was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"text":"(","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","isActive":true,"type":"reference"},{"type":"text","text":")."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","type":"topic","title":"CBMCentralManagerOptionRestoreIdentifierKey","abstract":[{"text":"A string containing a unique identifier (UID) for the central manager to instantiate.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-4zyhg":{"abstract":[],"title":"centralManager(_:willRestoreState:)","kind":"symbol","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-4zyhg","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"willRestoreState"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"])","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/state.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/state.json index 329e042..5dee072 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/state.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/state.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.state"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"title":"state","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C5stateAA15CBMManagerStateOvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/state"}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.state"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/state","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","text":"CBMManagerState","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"title":"state","symbolKind":"property","role":"symbol","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C5stateAA15CBMManagerStateOvp","roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState","kind":"typeIdentifier"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/state":{"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","kind":"typeIdentifier","text":"CBMManagerState"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/state","type":"topic","title":"state","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/state","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan().json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan().json index bd99e2d..bfb940c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan().json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/stopscan()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/stopScan()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.stopScan()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"title":"stopScan()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C8stopScanyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/stopScan()":{"role":"symbol","title":"stopScan()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/stopScan()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/stopscan()"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/stopscan()"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManager.stopScan()","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"role":"symbol","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"title":"stopScan()","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C8stopScanyyF","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"stopScan","kind":"identifier"},{"kind":"text","text":"()"}]},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"stopScan","kind":"identifier"},{"text":"()","kind":"text"}],"languages":["swift"]}]}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/stopScan()","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/stopScan()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/stopScan()","type":"topic","title":"stopScan()","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/stopscan()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation().json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation().json index 79db063..0da6e47 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation().json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tearDownSimulation"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Use this to tear down your mocks between tests, e.g. in "},{"type":"codeVoice","code":"tearDownWithError()"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"All manager delegates will receive a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"type":"text","text":" state update."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Removes all active central manager instances and peripherals from the"},{"type":"text","text":" "},{"type":"text","text":"simulation, resetting it to the initial state."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tearDownSimulation"},{"kind":"text","text":"()"}],"title":"tearDownSimulation()","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C18tearDownSimulationyyFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"role":"symbol","title":"CBMManagerState.unknown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/tearDownSimulation()":{"role":"symbol","title":"tearDownSimulation()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tearDownSimulation"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Removes all active central manager instances and peripherals from the"},{"type":"text","text":" "},{"type":"text","text":"simulation, resetting it to the initial state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","interfaceLanguage":"swift"},"metadata":{"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tearDownSimulation"},{"text":"()","kind":"text"}],"role":"symbol","externalID":"s:17CoreBluetoothMock017CBMCentralManagerC0C18tearDownSimulationyyFZ","roleHeading":"Type Method","title":"tearDownSimulation()"},"abstract":[{"type":"text","text":"Removes all active central manager instances and peripherals from the"},{"type":"text","text":" "},{"type":"text","text":"simulation, resetting it to the initial state."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tearDownSimulation","kind":"identifier"},{"kind":"text","text":"()"}],"languages":["swift"]}]},{"kind":"content","content":[{"text":"Discussion","level":2,"anchor":"discussion","type":"heading"},{"inlineContent":[{"type":"text","text":"Use this to tear down your mocks between tests, e.g. in "},{"type":"codeVoice","code":"tearDownWithError()"},{"type":"text","text":"."},{"type":"text","text":" "},{"text":"All manager delegates will receive a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"text":" state update.","type":"text"}],"type":"paragraph"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/tearDownSimulation()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tearDownSimulation"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","type":"topic","title":"tearDownSimulation()","abstract":[{"type":"text","text":"Removes all active central manager instances and peripherals from the"},{"type":"text","text":" "},{"text":"simulation, resetting it to the initial state.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"role":"symbol","title":"CBMManagerState.unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative.json index b5f704c..a502cfa 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"title":"CBMCentralManagerNative","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManagerNative","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}]},"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:options:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.property","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/isScanning","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/state"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/cancelPeripheralConnection(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/connect(_:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrieveConnectedPeripherals(withServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrievePeripherals(withIdentifiers:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/stopScan()"]},{"title":"Type Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.type.property"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This manager can only interact with physical Bluetooth LE devices."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/authorization-swift.type.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.type.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.type.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init(delegate:queue:options:)":{"role":"symbol","title":"init(delegate:queue:options:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init(delegate:queue:)":{"role":"symbol","title":"init(delegate:queue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/scanForPeripherals(withServices:options:)":{"role":"symbol","title":"scanForPeripherals(withServices:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/scanForPeripherals(withServices:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/scanforperipherals(withservices:options:)"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/state"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/stopScan()":{"role":"symbol","title":"stopScan()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/stopScan()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/stopscan()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/authorization-swift.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/isScanning":{"role":"symbol","title":"isScanning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/isScanning","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/isscanning"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"text":" ","type":"text"},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"text":" object.","type":"text"}],"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:options:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.property","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/isScanning","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/state"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/cancelPeripheralConnection(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/connect(_:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrieveConnectedPeripherals(withServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrievePeripherals(withIdentifiers:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/scanForPeripherals(withServices:options:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/stopScan()"]},{"title":"Type Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.type.property"]}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true,"title":"Central Manager"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","symbolKind":"class","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerNative","kind":"identifier"}],"roleHeading":"Class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManagerNative","modules":[{"name":"CoreBluetoothMock"}],"title":"CBMCentralManagerNative","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}]},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMCentralManagerNative","kind":"identifier"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"level":2,"anchor":"overview","type":"heading","text":"Overview"},{"inlineContent":[{"type":"text","text":"This manager can only interact with physical Bluetooth LE devices."}],"type":"paragraph"}],"kind":"content"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"],"title":"Inherits From","kind":"relationships","type":"inheritsFrom"},{"kind":"relationships","title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"type":"conformsTo"}],"references":{"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/scanForPeripherals(withServices:options:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scanForPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"options","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"]?)","kind":"text"}],"type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/scanforperipherals(withservices:options:)","title":"scanForPeripherals(withServices:options:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/scanForPeripherals(withServices:options:)","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/SQ":{"identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init(delegate:queue:options:)":{"title":"init(delegate:queue:options:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:options:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:options:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue","text":"DispatchQueue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}],"abstract":[],"kind":"symbol","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/SH":{"identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/state":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/state","title":"state","kind":"symbol","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"text":"CBMManagerState","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/state","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/stopScan()":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/stopscan()","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/stopScan()","title":"stopScan()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"text":"()","kind":"text"}]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/connect(_:options:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/connect(_:options:)","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/connect(_:options:)","title":"connect(_:options:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/authorization-swift.type.property":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.type.property","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.type.property","title":"authorization","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/retrievePeripherals(withIdentifiers:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveperipherals(withidentifiers:)","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init(delegate:queue:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"kind":"text","text":": "},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:)","type":"topic","role":"symbol","title":"init(delegate:queue:)","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/retrieveConnectedPeripherals(withServices:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveconnectedperipherals(withservices:)","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrieveConnectedPeripherals(withServices:)","title":"retrieveConnectedPeripherals(withServices:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"text":"(","kind":"text"},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init()":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init()","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init()","title":"init()","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/isScanning":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/isScanning","kind":"symbol","title":"isScanning","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/isscanning","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isScanning","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/authorization-swift.property":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.property","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.property","title":"authorization","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/cancelPeripheralConnection(_:)","kind":"symbol","title":"cancelPeripheralConnection(_:)","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property.json index 4db9654..433487e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.authorization"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"authorization","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC13authorizationSo22CBManagerAuthorizationVvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"deprecatedAt":"13.1","beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"deprecatedAt":"13.1","beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"deprecatedAt":"6.1","beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/authorization-swift.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.property"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.authorization"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Property","title":"authorization","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC13authorizationSo22CBManagerAuthorizationVvp","platforms":[{"beta":false,"deprecated":false,"deprecatedAt":"13.1","introducedAt":"13.0","name":"iOS","unavailable":false},{"beta":false,"name":"macOS","introducedAt":"10.15","deprecated":false,"unavailable":false},{"deprecatedAt":"13.1","introducedAt":"13.0","unavailable":false,"deprecated":false,"beta":false,"name":"tvOS"},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"6.0","deprecatedAt":"6.1","beta":false}],"symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}]},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.property","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/authorization-swift.property":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.property","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.property","title":"authorization","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property.json index 386274d..9f2ae9c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.type.property"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.type.property","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.authorization"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"authorization","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC13authorizationSo22CBManagerAuthorizationVvpZ","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.1","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.1","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.1","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/authorization-swift.type.property":{"role":"symbol","title":"authorization","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authorization"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.type.property","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.type.property"}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.type.property","interfaceLanguage":"swift"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.type.property"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"authorization"},{"text":": ","kind":"text"},{"text":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"symbolKind":"property","platforms":[{"beta":false,"deprecated":false,"introducedAt":"13.1","unavailable":false,"name":"iOS"},{"beta":false,"deprecated":false,"introducedAt":"10.15","name":"macOS","unavailable":false},{"introducedAt":"13.1","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"unavailable":false,"beta":false,"introducedAt":"6.1","name":"watchOS","deprecated":false}],"title":"authorization","roleHeading":"Type Property","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC13authorizationSo22CBManagerAuthorizationVvpZ","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","kind":"typeIdentifier","text":"CBMManagerAuthorization"}],"role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMCentralManager.authorization"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/authorization-swift.type.property":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.type.property","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/authorization-swift.type.property","title":"authorization","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"authorization","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","text":"CBMManagerAuthorization","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:).json index 8121b03..8308db2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/cancelperipheralconnection(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/cancelPeripheralConnection(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.cancelPeripheralConnection(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"title":"cancelPeripheralConnection(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC26cancelPeripheralConnectionyyAA13CBMPeripheral_pF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/cancelperipheralconnection(_:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManager.cancelPeripheralConnection(_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"override","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/cancelPeripheralConnection(_:)","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC26cancelPeripheralConnectionyyAA13CBMPeripheral_pF","roleHeading":"Instance Method","role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/cancelPeripheralConnection(_:)","kind":"symbol","title":"cancelPeripheralConnection(_:)","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:).json index 294184e..9ba5303 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/connect(_:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/connect(_:options:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.connect(_:options:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"title":"connect(_:options:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC7connect_7optionsyAA13CBMPeripheral_p_SDySSypGSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/connect(_:options:)"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/connect(_:options:)"]}],"metadata":{"externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC7connect_7optionsyAA13CBMPeripheral_p_SDySSypGSgtF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"title":"connect(_:options:)","symbolKind":"method","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?)","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/connect(_:options:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.connect(_:options:)"},{"text":".","type":"text"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/connect(_:options:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/connect(_:options:)","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/connect(_:options:)","title":"connect(_:options:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init().json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init().json index ad11ec8..b8dd993 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init().json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init()","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeCACycfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"metadata":{"roleHeading":"Initializer","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeCACycfc","role":"symbol","symbolKind":"init","title":"init()","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init()"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init()"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init()":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init()","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init()","title":"init()","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:).json index 6242ac3..ab318ae 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"title":"init(delegate:queue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC8delegate5queueAcA0dE8Delegate_pSg_So012OS_dispatch_H0CSgtcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init(delegate:queue:)":{"role":"symbol","title":"init(delegate:queue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:)"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:)"},"metadata":{"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"queue"},{"text":": ","kind":"text"},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"init","title":"init(delegate:queue:)","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC8delegate5queueAcA0dE8Delegate_pSg_So012OS_dispatch_H0CSgtcfc","roleHeading":"Initializer"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"delegate","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init(delegate:queue:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"kind":"text","text":": "},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:)","type":"topic","role":"symbol","title":"init(delegate:queue:)","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:).json index 3c54c68..0f560b6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:options:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"init(delegate:queue:options:)","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"symbolKind":"init","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC8delegate5queue7optionsAcA0dE8Delegate_pSg_So012OS_dispatch_H0CSgSDySSypGSgtcfc","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"7.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init(delegate:queue:options:)":{"role":"symbol","title":"init(delegate:queue:options:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:options:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"delegate","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"DispatchQueue","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"text":"]?)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"init(delegate:queue:options:)","role":"symbol","platforms":[{"deprecated":false,"beta":false,"introducedAt":"7.0","unavailable":false,"name":"iOS"}],"symbolKind":"init","roleHeading":"Initializer","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC8delegate5queue7optionsAcA0dE8Delegate_pSg_So012OS_dispatch_H0CSgSDySSypGSgtcfc"},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"queue"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/init(delegate:queue:options:)":{"title":"init(delegate:queue:options:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/init(delegate:queue:options:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:options:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP","text":"CBMCentralManagerDelegate"},{"kind":"text","text":"?, "},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)OS_dispatch_queue","text":"DispatchQueue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"options"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}],"abstract":[],"kind":"symbol","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning.json index 0b5cc9b..827fa4b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/isscanning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/isScanning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.isScanning"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"isScanning","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManagerNative(py)isScanning","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"9.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/isScanning":{"role":"symbol","title":"isScanning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/isScanning","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/isscanning"}}} \ No newline at end of file +{"metadata":{"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManagerNative(py)isScanning","title":"isScanning","role":"symbol","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isScanning","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"roleHeading":"Instance Property","platforms":[{"beta":false,"unavailable":false,"introducedAt":"9.0","deprecated":false,"name":"iOS"}],"modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/isscanning"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"override","kind":"keyword"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isScanning"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"text":" }","kind":"text"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManager.isScanning","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/isScanning","interfaceLanguage":"swift"},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/isScanning":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/isScanning","kind":"symbol","title":"isScanning","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/isscanning","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isScanning","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:).json index f73659b..2eb6408 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveconnectedperipherals(withservices:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrieveConnectedPeripherals(withServices:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.retrieveConnectedPeripherals(withServices:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC28retrieveConnectedPeripherals12withServicesSayAA13CBMPeripheral_pGSaySo6CBUUIDCG_tF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"7.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveconnectedperipherals(withservices:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMCentralManager.retrieveConnectedPeripherals(withServices:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrieveConnectedPeripherals(withServices:)"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"text":"(","kind":"text"},{"text":"withServices","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"serviceUUIDs","kind":"internalParam"},{"kind":"text","text":": ["},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":"]"}]}]}],"metadata":{"role":"symbol","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC28retrieveConnectedPeripherals12withServicesSayAA13CBMPeripheral_pGSaySo6CBUUIDCG_tF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"unavailable":false,"deprecated":false,"introducedAt":"7.0","beta":false,"name":"iOS"}],"roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]) -> [","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}],"title":"retrieveConnectedPeripherals(withServices:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/retrieveConnectedPeripherals(withServices:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveconnectedperipherals(withservices:)","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrieveConnectedPeripherals(withServices:)","title":"retrieveConnectedPeripherals(withServices:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"text":"(","kind":"text"},{"text":"withServices","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:).json index d2e3cd6..496a934 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":" "},{"kind":"internalParam","text":"identifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveperipherals(withidentifiers:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrievePeripherals(withIdentifiers:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC19retrievePeripherals15withIdentifiersSayAA13CBMPeripheral_pGSay10Foundation4UUIDVG_tF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"7.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveperipherals(withidentifiers:)"]}],"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"identifiers"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMCentralManager.retrievePeripherals(withIdentifiers:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrievePeripherals(withIdentifiers:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC19retrievePeripherals15withIdentifiersSayAA13CBMPeripheral_pGSay10Foundation4UUIDVG_tF","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"text":"(","kind":"text"},{"text":"withIdentifiers","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"retrievePeripherals(withIdentifiers:)","platforms":[{"unavailable":false,"deprecated":false,"beta":false,"name":"iOS","introducedAt":"7.0"}],"roleHeading":"Instance Method"},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/retrievePeripherals(withIdentifiers:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveperipherals(withidentifiers:)","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:).json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:).json index 0f9f0be..2c31262 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/scanforperipherals(withservices:options:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/scanForPeripherals(withServices:options:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.scanForPeripherals(withServices:options:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"title":"scanForPeripherals(withServices:options:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/scanForPeripherals(withServices:options:)":{"role":"symbol","title":"scanForPeripherals(withServices:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/scanForPeripherals(withServices:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/scanforperipherals(withservices:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/scanforperipherals(withservices:options:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scanForPeripherals"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"serviceUUIDs"},{"text":": [","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"options","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"]? = nil)","kind":"text"}]}]}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scanForPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)"}],"role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF","title":"scanForPeripherals(withServices:options:)","roleHeading":"Instance Method"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMCentralManager.scanForPeripherals(withServices:options:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/scanForPeripherals(withServices:options:)"},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManager"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"role":"symbol","title":"CBMCentralManager","navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/scanForPeripherals(withServices:options:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scanForPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"options","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"]?)","kind":"text"}],"type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/scanforperipherals(withservices:options:)","title":"scanForPeripherals(withServices:options:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/scanForPeripherals(withServices:options:)","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/state.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/state.json index c6b582d..7655003 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/state.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/state.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.state"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"title":"state","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC5stateAA15CBMManagerStateOvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"roleHeading":"Instance Property","symbolKind":"property","title":"state","role":"symbol","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC5stateAA15CBMManagerStateOvp","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","text":"CBMManagerState"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.state"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"override"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","kind":"typeIdentifier","text":"CBMManagerState","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/state"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/state"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/state":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/state","title":"state","kind":"symbol","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"text":"CBMManagerState","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"}],"abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/state","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan().json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan().json index 626509d..4f3f4e5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan().json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/stopscan()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/stopScan()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.stopScan()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"title":"stopScan()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC8stopScanyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/stopScan()":{"role":"symbol","title":"stopScan()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/stopScan()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/stopscan()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"stopScan","kind":"identifier"},{"kind":"text","text":"()"}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/stopscan()"]}],"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/stopScan()"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"stopScan","kind":"identifier"},{"text":"()","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"method","title":"stopScan()","externalID":"s:17CoreBluetoothMock23CBMCentralManagerNativeC8stopScanyyF","roleHeading":"Instance Method"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCentralManager.stopScan()"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative/stopScan()":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/stopscan()","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative\/stopScan()","title":"stopScan()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"stopScan"},{"text":"()","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey.json index e447626..f6eaee7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value for this key is an "},{"type":"codeVoice","code":"NSString"},{"type":"text","text":". The system uses this UID to identify a specific"},{"type":"text","text":" "},{"type":"text","text":"central manager. As a result, the UID must remain the same for subsequent executions"},{"type":"text","text":" "},{"type":"text","text":"of the app to restore the central manager."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A string containing a unique identifier (UID) for the central manager to instantiate."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMCentralManagerOptionRestoreIdentifierKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock43CBMCentralManagerOptionRestoreIdentifierKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Central Manager Initialization Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","title":"CBMCentralManagerOptionRestoreIdentifierKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A string containing a unique identifier (UID) for the central manager to instantiate."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionShowPowerAlertKey":{"role":"symbol","title":"CBMCentralManagerOptionShowPowerAlertKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system warns the user if the app instantiates"},{"type":"text","text":" "},{"type":"text","text":"the central manager when Bluetooth service isn’t available."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"metadata":{"roleHeading":"Global Variable","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMCentralManagerOptionRestoreIdentifierKey","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"CBMCentralManagerOptionRestoreIdentifierKey","externalID":"s:17CoreBluetoothMock43CBMCentralManagerOptionRestoreIdentifierKeySSvp","role":"symbol","symbolKind":"var"},"seeAlsoSections":[{"title":"Central Manager Initialization Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey"],"generated":true}],"kind":"symbol","abstract":[{"text":"A string containing a unique identifier (UID) for the central manager to instantiate.","type":"text"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"The value for this key is an ","type":"text"},{"type":"codeVoice","code":"NSString"},{"text":". The system uses this UID to identify a specific","type":"text"},{"text":" ","type":"text"},{"text":"central manager. As a result, the UID must remain the same for subsequent executions","type":"text"},{"type":"text","text":" "},{"text":"of the app to restore the central manager.","type":"text"}]}]}],"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionShowPowerAlertKey":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey","abstract":[{"text":"A Boolean value that specifies whether the system warns the user if the app instantiates","type":"text"},{"text":" ","type":"text"},{"text":"the central manager when Bluetooth service isn’t available.","type":"text"}],"role":"symbol","type":"topic","title":"CBMCentralManagerOptionShowPowerAlertKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","type":"topic","title":"CBMCentralManagerOptionRestoreIdentifierKey","abstract":[{"text":"A string containing a unique identifier (UID) for the central manager to instantiate.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey.json index 523ec1a..27abf21 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value for this key is an "},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":" object. If the key isn’t specified, the default value is "},{"type":"codeVoice","code":"true"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system warns the user if the app instantiates"},{"type":"text","text":" "},{"type":"text","text":"the central manager when Bluetooth service isn’t available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMCentralManagerOptionShowPowerAlertKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock40CBMCentralManagerOptionShowPowerAlertKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Central Manager Initialization Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","title":"CBMCentralManagerOptionRestoreIdentifierKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A string containing a unique identifier (UID) for the central manager to instantiate."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionShowPowerAlertKey":{"role":"symbol","title":"CBMCentralManagerOptionShowPowerAlertKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system warns the user if the app instantiates"},{"type":"text","text":" "},{"type":"text","text":"the central manager when Bluetooth service isn’t available."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"CBMCentralManagerOptionShowPowerAlertKey","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"level":2,"type":"heading","text":"Discussion","anchor":"discussion"},{"inlineContent":[{"type":"text","text":"The value for this key is an "},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":" object. If the key isn’t specified, the default value is "},{"type":"codeVoice","code":"true"},{"type":"text","text":"."}],"type":"paragraph"}]}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"metadata":{"externalID":"s:17CoreBluetoothMock40CBMCentralManagerOptionShowPowerAlertKeySSvp","modules":[{"name":"CoreBluetoothMock"}],"title":"CBMCentralManagerOptionShowPowerAlertKey","symbolKind":"var","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"roleHeading":"Global Variable","role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system warns the user if the app instantiates"},{"type":"text","text":" "},{"text":"the central manager when Bluetooth service isn’t available.","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey"},"seeAlsoSections":[{"title":"Central Manager Initialization Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey"],"generated":true}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionShowPowerAlertKey":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey","abstract":[{"text":"A Boolean value that specifies whether the system warns the user if the app instantiates","type":"text"},{"text":" ","type":"text"},{"text":"the central manager when Bluetooth service isn’t available.","type":"text"}],"role":"symbol","type":"topic","title":"CBMCentralManagerOptionShowPowerAlertKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerOptionShowPowerAlertKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionShowPowerAlertKey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","type":"topic","title":"CBMCentralManagerOptionRestoreIdentifierKey","abstract":[{"text":"A string containing a unique identifier (UID) for the central manager to instantiate.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey.json index 36f4c8a..a56a083 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStatePeripheralsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an "},{"type":"codeVoice","code":"NSArray"},{"type":"text","text":" of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects."},{"type":"text","text":" "},{"type":"text","text":"The array contains all of the peripherals connected to the central manager"},{"type":"text","text":" "},{"type":"text","text":"(or had a pending connection) at the time the system terminated the app."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"When possible, the system restores all information about a peripheral, including any"},{"type":"text","text":" "},{"type":"text","text":"discovered services, characteristics, characteristic descriptors, and characteristic notification states."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An array of peripherals for use when restoring the state of a central manager."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStatePeripheralsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMCentralManagerRestoredStatePeripheralsKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock44CBMCentralManagerRestoredStatePeripheralsKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Central Manager State Restoration Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"role":"symbol","title":"CBMCentralManagerRestoredStatePeripheralsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStatePeripheralsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of peripherals for use when restoring the state of a central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"role":"symbol","title":"CBMCentralManagerRestoredStateScanOptionsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanOptionsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary of peripheral scan options for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"An array of peripherals for use when restoring the state of a central manager."}],"sections":[],"metadata":{"fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStatePeripheralsKey"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"roleHeading":"Global Variable","role":"symbol","externalID":"s:17CoreBluetoothMock44CBMCentralManagerRestoredStatePeripheralsKeySSvp","symbolKind":"var","title":"CBMCentralManagerRestoredStatePeripheralsKey","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey"],"generated":true,"title":"Central Manager State Restoration Options"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStatePeripheralsKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"content","content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"inlineContent":[{"text":"The value associated with this key is an ","type":"text"},{"type":"codeVoice","code":"NSArray"},{"type":"text","text":" of "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":" objects.","type":"text"},{"type":"text","text":" "},{"text":"The array contains all of the peripherals connected to the central manager","type":"text"},{"text":" ","type":"text"},{"text":"(or had a pending connection) at the time the system terminated the app.","type":"text"}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When possible, the system restores all information about a peripheral, including any"},{"text":" ","type":"text"},{"type":"text","text":"discovered services, characteristics, characteristic descriptors, and characteristic notification states."}]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStatePeripheralsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey","role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStatePeripheralsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","abstract":[{"text":"An array of peripherals for use when restoring the state of a central manager.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStateScanOptionsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStateScanOptionsKey","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","abstract":[{"text":"A dictionary of peripheral scan options for use when restoring state.","type":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey.json index c8729f4..1a04a6d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanOptionsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an "},{"type":"codeVoice","code":"NSDictionary"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"The dictionary contains all of the peripheral scan options in use by the central manager"},{"type":"text","text":" "},{"type":"text","text":"when the system terminated the app."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A dictionary of peripheral scan options for use when restoring state."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanOptionsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMCentralManagerRestoredStateScanOptionsKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock44CBMCentralManagerRestoredStateScanOptionsKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Central Manager State Restoration Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"role":"symbol","title":"CBMCentralManagerRestoredStatePeripheralsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStatePeripheralsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of peripherals for use when restoring the state of a central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"role":"symbol","title":"CBMCentralManagerRestoredStateScanOptionsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanOptionsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary of peripheral scan options for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStateScanOptionsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"role":"symbol","title":"CBMCentralManagerRestoredStateScanOptionsKey","roleHeading":"Global Variable","externalID":"s:17CoreBluetoothMock44CBMCentralManagerRestoredStateScanOptionsKeySSvp","symbolKind":"var"},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"abstract":[{"text":"A dictionary of peripheral scan options for use when restoring state.","type":"text"}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey"],"generated":true,"title":"Central Manager State Restoration Options"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanOptionsKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"content","content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"The value associated with this key is an ","type":"text"},{"code":"NSDictionary","type":"codeVoice"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"The dictionary contains all of the peripheral scan options in use by the central manager"},{"type":"text","text":" "},{"text":"when the system terminated the app.","type":"text"}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStatePeripheralsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey","role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStatePeripheralsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","abstract":[{"text":"An array of peripherals for use when restoring the state of a central manager.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStateScanOptionsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStateScanOptionsKey","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","abstract":[{"text":"A dictionary of peripheral scan options for use when restoring state.","type":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey.json index 3310b94..033a161 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an "},{"type":"codeVoice","code":"NSArray"},{"type":"text","text":" of service UUIDs"},{"type":"text","text":" "},{"type":"text","text":"(represented by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects) containing all the services the central manager"},{"type":"text","text":" "},{"type":"text","text":"was scanning for at the time the system terminated the app."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMCentralManagerRestoredStateScanServicesKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock45CBMCentralManagerRestoredStateScanServicesKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Central Manager State Restoration Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"role":"symbol","title":"CBMCentralManagerRestoredStateScanOptionsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanOptionsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A dictionary of peripheral scan options for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"role":"symbol","title":"CBMCentralManagerRestoredStatePeripheralsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStatePeripheralsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of peripherals for use when restoring the state of a central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey"],"generated":true,"title":"Central Manager State Restoration Options"}],"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerRestoredStateScanServicesKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value associated with this key is an "},{"type":"codeVoice","code":"NSArray"},{"type":"text","text":" of service UUIDs"},{"type":"text","text":" "},{"type":"text","text":"(represented by "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects) containing all the services the central manager"},{"type":"text","text":" "},{"type":"text","text":"was scanning for at the time the system terminated the app."}]}],"kind":"content"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Global Variable","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock45CBMCentralManagerRestoredStateScanServicesKeySSvp","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"title":"CBMCentralManagerRestoredStateScanServicesKey","role":"symbol","symbolKind":"var"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanServicesKey":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerRestoredStateScanServicesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"role":"symbol","title":"CBMCentralManagerRestoredStateScanServicesKey","abstract":[{"type":"text","text":"An array of service IDs for use when restoring state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanServicesKey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStatePeripheralsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStatePeripheralsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey","role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStatePeripheralsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStatePeripheralsKey","abstract":[{"text":"An array of peripherals for use when restoring the state of a central manager.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerRestoredStateScanOptionsKey":{"kind":"symbol","type":"topic","title":"CBMCentralManagerRestoredStateScanOptionsKey","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMCentralManagerRestoredStateScanOptionsKey","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerRestoredStateScanOptionsKey","abstract":[{"text":"A dictionary of peripheral scan options for use when restoring state.","type":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey.json index a50342b..f4a058f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionAllowDuplicatesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value for this key is an NSNumber object. If true, the central disables filtering and"},{"type":"text","text":" "},{"type":"text","text":"generates a discovery event each time it receives an advertising packet from the peripheral."},{"type":"text","text":" "},{"type":"text","text":"If "},{"type":"codeVoice","code":"false"},{"type":"text","text":" (the default), the central coalesces multiple discoveries of the same peripheral"},{"type":"text","text":" "},{"type":"text","text":"into a single discovery event."}]},{"style":"important","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Disabling this filtering can have an adverse effect on battery life;"},{"type":"text","text":" "},{"type":"text","text":"use it only if necessary."}]}],"type":"aside","name":"Important"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Boolean value that specifies whether the scan should run without duplicate filtering."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionAllowDuplicatesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMCentralManagerScanOptionAllowDuplicatesKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock45CBMCentralManagerScanOptionAllowDuplicatesKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Scanning options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionAllowDuplicatesKey":{"role":"symbol","title":"CBMCentralManagerScanOptionAllowDuplicatesKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionAllowDuplicatesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the scan should run without duplicate filtering."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs that you want to scan for."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"CBMCentralManagerScanOptionAllowDuplicatesKey","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}]}],"kind":"declarations"},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"inlineContent":[{"type":"text","text":"The value for this key is an NSNumber object. If true, the central disables filtering and"},{"text":" ","type":"text"},{"text":"generates a discovery event each time it receives an advertising packet from the peripheral.","type":"text"},{"text":" ","type":"text"},{"text":"If ","type":"text"},{"type":"codeVoice","code":"false"},{"text":" (the default), the central coalesces multiple discoveries of the same peripheral","type":"text"},{"text":" ","type":"text"},{"text":"into a single discovery event.","type":"text"}],"type":"paragraph"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Disabling this filtering can have an adverse effect on battery life;"},{"type":"text","text":" "},{"type":"text","text":"use it only if necessary."}]}],"type":"aside","style":"important","name":"Important"}],"kind":"content"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"seeAlsoSections":[{"title":"Scanning options","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"]}],"metadata":{"roleHeading":"Global Variable","title":"CBMCentralManagerScanOptionAllowDuplicatesKey","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock45CBMCentralManagerScanOptionAllowDuplicatesKeySSvp","symbolKind":"var","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerScanOptionAllowDuplicatesKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey"},"abstract":[{"text":"A Boolean value that specifies whether the scan should run without duplicate filtering.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey","title":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","abstract":[{"text":"An array of service UUIDs that you want to scan for.","type":"text"}],"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionAllowDuplicatesKey":{"type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerScanOptionAllowDuplicatesKey","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","abstract":[{"type":"text","text":"A Boolean value that specifies whether the scan should run without duplicate filtering."}],"title":"CBMCentralManagerScanOptionAllowDuplicatesKey","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey.json b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey.json index dad8167..296ed40 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey.json +++ b/docs/data/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The array is an instance of "},{"type":"codeVoice","code":"NSArray"},{"type":"text","text":", and uses "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects to represent the UUIDs"},{"type":"text","text":" "},{"type":"text","text":"to scan for."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Specifying this scan option causes the central manager to also scan for peripherals soliciting"},{"type":"text","text":" "},{"type":"text","text":"any of the services contained in the array."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An array of service UUIDs that you want to scan for."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock51CBMCentralManagerScanOptionSolicitedServiceUUIDsKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Scanning options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey":{"role":"symbol","title":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An array of service UUIDs that you want to scan for."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionAllowDuplicatesKey":{"role":"symbol","title":"CBMCentralManagerScanOptionAllowDuplicatesKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionAllowDuplicatesKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the scan should run without duplicate filtering."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"sections":[],"abstract":[{"type":"text","text":"An array of service UUIDs that you want to scan for."}],"kind":"symbol","metadata":{"externalID":"s:17CoreBluetoothMock51CBMCentralManagerScanOptionSolicitedServiceUUIDsKeySSvp","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Global Variable","symbolKind":"var","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"title":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The array is an instance of "},{"type":"codeVoice","code":"NSArray"},{"text":", and uses ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects to represent the UUIDs"},{"text":" ","type":"text"},{"text":"to scan for.","type":"text"}]},{"type":"paragraph","inlineContent":[{"text":"Specifying this scan option causes the central manager to also scan for peripherals soliciting","type":"text"},{"type":"text","text":" "},{"text":"any of the services contained in the array.","type":"text"}]}],"kind":"content"}],"seeAlsoSections":[{"title":"Scanning options","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionAllowDuplicatesKey":{"type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerScanOptionAllowDuplicatesKey","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionAllowDuplicatesKey","abstract":[{"type":"text","text":"A Boolean value that specifies whether the scan should run without duplicate filtering."}],"title":"CBMCentralManagerScanOptionAllowDuplicatesKey","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey","title":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","abstract":[{"text":"An array of service UUIDs that you want to scan for.","type":"text"}],"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerScanOptionSolicitedServiceUUIDsKey","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristic.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristic.json index 709cb48..2415a16 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristic.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristic.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}]},"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/service","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/uuid","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"CBMCharacteristic"},{"type":"text","text":" represents further information about a peripheral’s service. In particular, "},{"type":"codeVoice","code":"CBMCharacteristic"},{"type":"text","text":" "},{"type":"text","text":"objects represent the characteristics of a remote peripheral’s service. A characteristic contains a single value and any number"},{"type":"text","text":" "},{"type":"text","text":"of descriptors describing that value. The properties of a characteristic determine how you can use a characteristic’s value,"},{"type":"text","text":" "},{"type":"text","text":"and how you access the descriptors."}]}]}],"references":{"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/uuid":{"role":"symbol","title":"uuid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/uuid","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/uuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The value of the characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/value"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/service":{"role":"symbol","title":"service","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A back-pointer to the service this characteristic belongs to."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/service","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/service"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/properties":{"role":"symbol","title":"properties","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"}],"abstract":[{"type":"text","text":"The properties of the characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/isNotifying":{"role":"symbol","title":"isNotifying","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotifying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether the characteristic is currently notifying or not."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/descriptors":{"role":"symbol","title":"descriptors","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of the descriptors that have so far been discovered"},{"type":"text","text":" "},{"type":"text","text":"in this characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},"kind":"symbol","topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/service","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/uuid","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value"],"title":"Instance Properties"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"languages":["swift"]}]},{"content":[{"type":"heading","level":2,"text":"Overview","anchor":"overview"},{"inlineContent":[{"code":"CBMCharacteristic","type":"codeVoice"},{"text":" represents further information about a peripheral’s service. In particular, ","type":"text"},{"type":"codeVoice","code":"CBMCharacteristic"},{"type":"text","text":" "},{"type":"text","text":"objects represent the characteristics of a remote peripheral’s service. A characteristic contains a single value and any number"},{"text":" ","type":"text"},{"text":"of descriptors describing that value. The properties of a characteristic determine how you can use a characteristic’s value,","type":"text"},{"type":"text","text":" "},{"type":"text","text":"and how you access the descriptors."}],"type":"paragraph"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic"]}],"relationshipsSections":[{"kind":"relationships","title":"Inherits From","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute"],"type":"inheritsFrom"},{"type":"inheritedBy","kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"],"title":"Inherited By"},{"title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"type":"conformsTo","kind":"relationships"}],"metadata":{"roleHeading":"Class","modules":[{"name":"CoreBluetoothMock"}],"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","role":"symbol","symbolKind":"class","navigatorTitle":[{"text":"CBMCharacteristic","kind":"identifier"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/isNotifying":{"kind":"symbol","abstract":[{"text":"Whether the characteristic is currently notifying or not.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying","title":"isNotifying","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotifying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/properties":{"role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"properties","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa","text":"CBMCharacteristicProperties","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","type":"topic","title":"properties","abstract":[{"type":"text","text":"The properties of the characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/value":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"value","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value","type":"topic","role":"symbol","title":"value","kind":"symbol","abstract":[{"type":"text","text":"The value of the characteristic."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","title":"Swift.CVarArg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/descriptors":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors","role":"symbol","title":"descriptors","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"descriptors","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":"]?","kind":"text"}],"abstract":[{"type":"text","text":"A list of the descriptors that have so far been discovered"},{"type":"text","text":" "},{"text":"in this characteristic.","type":"text"}]},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/uuid":{"type":"topic","role":"symbol","title":"uuid","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/uuid","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/uuid","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"uuid","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/service":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/service","abstract":[{"type":"text","text":"A back-pointer to the service this characteristic belongs to."}],"title":"service","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/service","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"service"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"?"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/descriptors.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/descriptors.json index b1bbb15..379b169 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/descriptors.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/descriptors.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":"]? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A list of the descriptors that have so far been discovered"},{"type":"text","text":" "},{"type":"text","text":"in this characteristic."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":"]?"}],"title":"descriptors","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC11descriptorsSayAA13CBMDescriptorCGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/descriptors":{"role":"symbol","title":"descriptors","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of the descriptors that have so far been discovered"},{"type":"text","text":" "},{"type":"text","text":"in this characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"sections":[],"metadata":{"externalID":"s:17CoreBluetoothMock17CBMCharacteristicC11descriptorsSayAA13CBMDescriptorCGSgvp","title":"descriptors","role":"symbol","roleHeading":"Instance Property","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"descriptors","kind":"identifier"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":"]?"}],"modules":[{"name":"CoreBluetoothMock"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors"},"abstract":[{"type":"text","text":"A list of the descriptors that have so far been discovered"},{"type":"text","text":" "},{"type":"text","text":"in this characteristic."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"descriptors","kind":"identifier"},{"kind":"text","text":": ["},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":"]? { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/descriptors":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors","role":"symbol","title":"descriptors","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"descriptors","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":"]?","kind":"text"}],"abstract":[{"type":"text","text":"A list of the descriptors that have so far been discovered"},{"type":"text","text":" "},{"text":"in this characteristic.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/isnotifying.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/isnotifying.json index 79d875c..60734dc 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/isnotifying.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/isnotifying.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotifying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Whether the characteristic is currently notifying or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotifying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isNotifying","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC11isNotifyingSbvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/isNotifying":{"role":"symbol","title":"isNotifying","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotifying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether the characteristic is currently notifying or not."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"isNotifying","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"externalID":"s:17CoreBluetoothMock17CBMCharacteristicC11isNotifyingSbvp","symbolKind":"property","title":"isNotifying","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isNotifying"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Property"},"sections":[],"abstract":[{"text":"Whether the characteristic is currently notifying or not.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/isNotifying":{"kind":"symbol","abstract":[{"text":"Whether the characteristic is currently notifying or not.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying","title":"isNotifying","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotifying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/properties.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/properties.json index 1b064b4..2404e96 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/properties.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/properties.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa","text":"CBMCharacteristicProperties"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The properties of the characteristic."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"}],"title":"properties","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC10propertiesSo26CBCharacteristicPropertiesVvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/properties":{"role":"symbol","title":"properties","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"}],"abstract":[{"type":"text","text":"The properties of the characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties"},"abstract":[{"type":"text","text":"The properties of the characteristic."}],"metadata":{"role":"symbol","symbolKind":"property","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"properties"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicProperties","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"}],"roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC10propertiesSo26CBCharacteristicPropertiesVvp","modules":[{"name":"CoreBluetoothMock"}],"title":"properties"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"properties","kind":"identifier"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"typeIdentifier","text":"CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"}],"platforms":["macOS"]}]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/properties":{"role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"properties","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa","text":"CBMCharacteristicProperties","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","type":"topic","title":"properties","abstract":[{"type":"text","text":"The properties of the characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/service.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/service.json index aa95c82..b1626da 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/service.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/service.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/service"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/service","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A back-pointer to the service this characteristic belongs to."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"?"}],"title":"service","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC7serviceAA10CBMServiceCSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/service":{"role":"symbol","title":"service","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A back-pointer to the service this characteristic belongs to."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/service","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/service"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/service","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"service"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"typeIdentifier"},{"text":"? { get }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","metadata":{"role":"symbol","title":"service","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMCharacteristicC7serviceAA10CBMServiceCSgvp","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"service"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier","text":"CBMService"},{"kind":"text","text":"?"}],"symbolKind":"property"},"abstract":[{"type":"text","text":"A back-pointer to the service this characteristic belongs to."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/service"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/service":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/service","abstract":[{"type":"text","text":"A back-pointer to the service this characteristic belongs to."}],"title":"service","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/service","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"service"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"?"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/uuid.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/uuid.json index b482eec..9a39b3a 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/uuid.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/uuid.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/uuid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/uuid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMAttribute.uuid"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"title":"uuid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC4uuidSo6CBUUIDCvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/uuid":{"role":"symbol","title":"uuid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/uuid","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/uuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"sections":[],"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"uuid","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"}],"title":"uuid","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC4uuidSo6CBUUIDCvp"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMAttribute.uuid"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"uuid","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/uuid"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/uuid"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/uuid":{"type":"topic","role":"symbol","title":"uuid","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/uuid","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/uuid","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"uuid","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/value.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/value.json index f23b3a7..78fd6a7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristic/value.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristic/value.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The value of the characteristic."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC5value10Foundation4DataVSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The value of the characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/value"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristic\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The value of the characteristic."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"value","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":"? { get }","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]]},"metadata":{"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"value","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":"?","kind":"text"}],"role":"symbol","externalID":"s:17CoreBluetoothMock17CBMCharacteristicC5value10Foundation4DataVSgvp","title":"value","symbolKind":"property"},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/value":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"value","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value","type":"topic","role":"symbol","title":"value","kind":"symbol","abstract":[{"type":"text","text":"The value of the characteristic."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock.json index 67d419b..2997df5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"title":"CBMCharacteristicMock","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}]},"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/init(type:properties:descriptors:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/descriptors"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/isEqual(_:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicmock"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/isEqual(_:)":{"role":"symbol","title":"isEqual(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/isEqual(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/isequal(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/init(type:properties:descriptors:)":{"role":"symbol","title":"init(type:properties:descriptors:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"descriptors"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":"...)"}],"abstract":[{"type":"text","text":"Returns an initialized characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/init(type:properties:descriptors:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/init(type:properties:descriptors:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/descriptors":{"role":"symbol","title":"descriptors","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/descriptors","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/descriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"}}} \ No newline at end of file +{"metadata":{"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"class","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}],"navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"role":"symbol","roleHeading":"Class","title":"CBMCharacteristicMock"},"sections":[],"abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","isActive":true,"type":"reference"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicmock"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/init(type:properties:descriptors:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/descriptors"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/isEqual(_:)"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"relationshipsSections":[{"type":"inheritsFrom","title":"Inherits From","kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"]},{"type":"conformsTo","kind":"relationships","title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"]}],"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"title":"Attributes"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/descriptors":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/descriptors","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/descriptors","title":"descriptors","abstract":[],"type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"descriptors"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier","text":"CBMDescriptor"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"title":"Swift.CustomStringConvertible","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/objc(pl)NSObject":{"title":"ObjectiveC.NSObjectProtocol","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/isEqual(_:)":{"title":"isEqual(_:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"text":"Any","kind":"keyword"},{"kind":"text","text":"?) -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/isequal(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/isEqual(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/SH":{"title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SQ":{"title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/init(type:properties:descriptors:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/init(type:properties:descriptors:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"properties","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicProperties","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"},{"text":", ","kind":"text"},{"text":"descriptors","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":"...)","kind":"text"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/init(type:properties:descriptors:)","kind":"symbol","type":"topic","abstract":[{"text":"Returns an initialized characteristic.","type":"text"}],"title":"init(type:properties:descriptors:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors.json index bcff55b..5b9f752 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":"]? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/descriptors"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/descriptors","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMCharacteristic.descriptors"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":"]?"}],"title":"descriptors","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock017CBMCharacteristicC0C11descriptorsSayAA13CBMDescriptorCGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/descriptors":{"role":"symbol","title":"descriptors","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/descriptors","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/descriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMCharacteristic.descriptors"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"descriptors"},{"text":": [","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"typeIdentifier"},{"text":"]? { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"externalID":"s:17CoreBluetoothMock017CBMCharacteristicC0C11descriptorsSayAA13CBMDescriptorCGSgvp","roleHeading":"Instance Property","title":"descriptors","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"descriptors"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":"]?"}],"symbolKind":"property"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/descriptors"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/descriptors","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/descriptors":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/descriptors","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/descriptors","title":"descriptors","abstract":[],"type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"descriptors"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier","text":"CBMDescriptor"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:).json b/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:).json index f9b3deb..acd2ccc 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":" "},{"kind":"internalParam","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":", "},{"kind":"externalParam","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa","text":"CBMCharacteristicProperties"},{"kind":"text","text":", "},{"kind":"externalParam","text":"descriptors"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","text":"CBMDescriptorMock"},{"kind":"text","text":"...)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"uuid","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The Bluetooth UUID of the characteristic."}]}]},{"name":"properties","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The properties of the characteristic."}]}]},{"name":"descriptors","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional list of descriptors."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/init(type:properties:descriptors:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/init(type:properties:descriptors:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns an initialized characteristic."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"descriptors"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":"...)"}],"title":"init(type:properties:descriptors:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock017CBMCharacteristicC0C4type10properties11descriptorsACSo6CBUUIDC_So26CBCharacteristicPropertiesVAA013CBMDescriptorC0Cdtcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/init(type:properties:descriptors:)":{"role":"symbol","title":"init(type:properties:descriptors:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"descriptors"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":"...)"}],"abstract":[{"type":"text","text":"Returns an initialized characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/init(type:properties:descriptors:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/init(type:properties:descriptors:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/init(type:properties:descriptors:)"},"metadata":{"roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"properties"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa","text":"CBMCharacteristicProperties"},{"kind":"text","text":", "},{"kind":"externalParam","text":"descriptors"},{"kind":"text","text":": "},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":"...)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"init(type:properties:descriptors:)","externalID":"s:17CoreBluetoothMock017CBMCharacteristicC0C4type10properties11descriptorsACSo6CBUUIDC_So26CBCharacteristicPropertiesVAA013CBMDescriptorC0Cdtcfc","role":"symbol","symbolKind":"init"},"sections":[],"abstract":[{"text":"Returns an initialized characteristic.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"type","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"uuid"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":", "},{"kind":"externalParam","text":"properties"},{"kind":"text","text":": "},{"text":"CBMCharacteristicProperties","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"descriptors"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"typeIdentifier","text":"CBMDescriptorMock"},{"text":"...)","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The Bluetooth UUID of the characteristic.","type":"text"}]}],"name":"uuid"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The properties of the characteristic."}]}],"name":"properties"},{"content":[{"inlineContent":[{"type":"text","text":"Optional list of descriptors."}],"type":"paragraph"}],"name":"descriptors"}],"kind":"parameters"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/init(type:properties:descriptors:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/init(type:properties:descriptors:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/init(type:properties:descriptors:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"properties","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicProperties","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"},{"text":", ","kind":"text"},{"text":"descriptors","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":"...)","kind":"text"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/init(type:properties:descriptors:)","kind":"symbol","type":"topic","abstract":[{"text":"Returns an initialized characteristic.","type":"text"}],"title":"init(type:properties:descriptors:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:).json b/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:).json index d396812..aadd087 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"object"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/isequal(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/isEqual(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isEqual(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock(im)isEqual:","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/isEqual(_:)":{"role":"symbol","title":"isEqual(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/isEqual(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/isequal(_:)"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/isequal(_:)"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"override","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isEqual","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"object","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Any","kind":"keyword"},{"text":"?) -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/isEqual(_:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock(im)isEqual:","role":"symbol","symbolKind":"method","title":"isEqual(_:)","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isEqual","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"keyword","text":"Any"},{"text":"?) -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock/isEqual(_:)":{"title":"isEqual(_:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"text":"Any","kind":"keyword"},{"kind":"text","text":"?) -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/isequal(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock\/isEqual(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristicproperties.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristicproperties.json index b1004db..488a300 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristicproperties.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristicproperties.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBCharacteristicProperties","preciseIdentifier":"c:@E@CBCharacteristicProperties"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Since you can combine characteristic properties, a characteristic may have multiple property values set."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"externalID":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa","role":"symbol","title":"CBMCharacteristicProperties","symbolKind":"typealias","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicProperties","kind":"identifier"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Type Alias","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}]},"kind":"symbol","seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"title":"Attributes","generated":true}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicProperties","kind":"identifier"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBCharacteristicProperties","preciseIdentifier":"c:@E@CBCharacteristicProperties"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"inlineContent":[{"type":"text","text":"Since you can combine characteristic properties, a characteristic may have multiple property values set."}],"type":"paragraph"}]}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmcharacteristicwritetype.json b/docs/data/documentation/corebluetoothmock/cbmcharacteristicwritetype.json index fdf435d..64b9f0f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmcharacteristicwritetype.json +++ b/docs/data/documentation/corebluetoothmock/cbmcharacteristicwritetype.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBCharacteristicWriteType","preciseIdentifier":"c:@E@CBCharacteristicWriteType"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Characteristic write types have corresponding restrictions on the length of the data"},{"type":"text","text":" "},{"type":"text","text":"that you can write to a characteristic’s value. For the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" "},{"type":"text","text":"write type’s restrictions, see the Bluetooth 4.0 specification, Volume 3, Part G, Sections 4.9.3–4."},{"type":"text","text":" "},{"type":"text","text":"For the "},{"type":"codeVoice","code":".withoutResponse"},{"type":"text","text":" write type restrictions,"},{"type":"text","text":" "},{"type":"text","text":"see the Bluetooth 4.0 specification, Volume 3, Part G, Sections 4.9.1–2."}]},{"style":"tip","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"When you write with a response, you can write a characteristic value that’s longer than"},{"type":"text","text":" "},{"type":"text","text":"permitted when you write without a response."}]}],"type":"aside","name":"Tip"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"title":"CBMCharacteristicWriteType","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"metadata":{"externalID":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"CBMCharacteristicWriteType","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"symbolKind":"typealias","roleHeading":"Type Alias"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"},{"text":" = ","kind":"text"},{"kind":"typeIdentifier","text":"CBCharacteristicWriteType","preciseIdentifier":"c:@E@CBCharacteristicWriteType"}],"languages":["swift"]}]},{"kind":"content","content":[{"anchor":"discussion","text":"Discussion","level":2,"type":"heading"},{"inlineContent":[{"type":"text","text":"Characteristic write types have corresponding restrictions on the length of the data"},{"type":"text","text":" "},{"text":"that you can write to a characteristic’s value. For the ","type":"text"},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" "},{"type":"text","text":"write type’s restrictions, see the Bluetooth 4.0 specification, Volume 3, Part G, Sections 4.9.3–4."},{"text":" ","type":"text"},{"type":"text","text":"For the "},{"code":".withoutResponse","type":"codeVoice"},{"text":" write type restrictions,","type":"text"},{"type":"text","text":" "},{"text":"see the Bluetooth 4.0 specification, Volume 3, Part G, Sections 4.9.1–2.","type":"text"}],"type":"paragraph"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"When you write with a response, you can write a characteristic value that’s longer than"},{"text":" ","type":"text"},{"type":"text","text":"permitted when you write without a response."}]}],"type":"aside","style":"tip","name":"Tip"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"title":"Attributes"}],"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock.json b/docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock.json index 63f33f0..8c3afe8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock.json +++ b/docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMClientCharacteristicConfigurationDescriptorMock","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}]},"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock\/init()"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This descriptor should be added to characteristics with "},{"type":"codeVoice","code":".notify"},{"type":"text","text":" or "},{"type":"codeVoice","code":".indicate"},{"type":"text","text":" properties."}]}]}],"references":{"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock\/init()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock\/init()"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}]}],"kind":"declarations"},{"content":[{"level":2,"text":"Overview","type":"heading","anchor":"overview"},{"inlineContent":[{"type":"text","text":"This descriptor should be added to characteristics with "},{"code":".notify","type":"codeVoice"},{"type":"text","text":" or "},{"code":".indicate","type":"codeVoice"},{"type":"text","text":" properties."}],"type":"paragraph"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMClientCharacteristicConfigurationDescriptorMock","symbolKind":"class","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"navigatorTitle":[{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"roleHeading":"Class","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock"},"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock\/init()"]}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true,"title":"Attributes"}],"relationshipsSections":[{"title":"Inherits From","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock"],"type":"inheritsFrom","kind":"relationships"},{"type":"conformsTo","kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"title":"Conforms To"}],"references":{"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock/init()":{"kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock\/init()","url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock\/init()","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"role":"symbol","title":"init()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init().json b/docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init().json index d45d329..b1ec3a3 100644 --- a/docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init().json +++ b/docs/data/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock\/init()","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock046CBMClientCharacteristicConfigurationDescriptorC0CACycfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock\/init()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock\/init()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"}}} \ No newline at end of file +{"metadata":{"symbolKind":"init","externalID":"s:17CoreBluetoothMock046CBMClientCharacteristicConfigurationDescriptorC0CACycfc","title":"init()","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"role":"symbol"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock\/init()"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock\/init()"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock/init()":{"kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock\/init()","url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock\/init()","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"role":"symbol","title":"init()"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmconnectionevent.json b/docs/data/documentation/corebluetoothmock/cbmconnectionevent.json index d806171..115d6d3 100644 --- a/docs/data/documentation/corebluetoothmock/cbmconnectionevent.json +++ b/docs/data/documentation/corebluetoothmock/cbmconnectionevent.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBConnectionEvent","preciseIdentifier":"c:@E@CBConnectionEvent"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectionevent"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"title":"CBMConnectionEvent","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock18CBMConnectionEventa","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEvent"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Receiving Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEventMatchingOption":{"role":"symbol","title":"CBMConnectionEventMatchingOption","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"abstract":[{"type":"text","text":"A set of options to use when registering for connection events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"role":"symbol","title":"CBMConnectionEvent","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEvent"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectionevent"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"sections":[],"metadata":{"externalID":"s:17CoreBluetoothMock18CBMConnectionEventa","symbolKind":"typealias","title":"CBMConnectionEvent","navigatorTitle":[{"text":"CBMConnectionEvent","kind":"identifier"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"roleHeading":"Type Alias"},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEvent"},{"text":" = ","kind":"text"},{"preciseIdentifier":"c:@E@CBConnectionEvent","text":"CBConnectionEvent","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"seeAlsoSections":[{"title":"Receiving Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption"],"generated":true}],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectionevent"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","url":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","abstract":[{"text":"A change to the connection state of a peer.","type":"text"}],"role":"symbol","navigatorTitle":[{"text":"CBMConnectionEvent","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEvent"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEventMatchingOption":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption","title":"CBMConnectionEventMatchingOption","url":"\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption","abstract":[{"type":"text","text":"A set of options to use when registering for connection events."}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMConnectionEventMatchingOption","kind":"identifier"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmconnectioneventmatchingoption.json b/docs/data/documentation/corebluetoothmock/cbmconnectioneventmatchingoption.json index 5e5cbbe..e0e82f5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmconnectioneventmatchingoption.json +++ b/docs/data/documentation/corebluetoothmock/cbmconnectioneventmatchingoption.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEventMatchingOption"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBConnectionEventMatchingOption","preciseIdentifier":"c:@T@CBConnectionEventMatchingOption"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A set of options to use when registering for connection events."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"title":"CBMConnectionEventMatchingOption","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock32CBMConnectionEventMatchingOptiona","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"seeAlsoSections":[{"title":"Receiving Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"role":"symbol","title":"CBMConnectionEvent","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEvent"}],"abstract":[{"type":"text","text":"A change to the connection state of a peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEvent"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectionevent"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEventMatchingOption":{"role":"symbol","title":"CBMConnectionEventMatchingOption","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"abstract":[{"type":"text","text":"A set of options to use when registering for connection events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"url":"\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectionEventMatchingOption"},{"text":" = ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@CBConnectionEventMatchingOption","text":"CBConnectionEventMatchingOption"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"]]},"metadata":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"navigatorTitle":[{"text":"CBMConnectionEventMatchingOption","kind":"identifier"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Type Alias","title":"CBMConnectionEventMatchingOption","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock32CBMConnectionEventMatchingOptiona","role":"symbol"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption"]}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"A set of options to use when registering for connection events."}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent"],"title":"Receiving Connection Events","generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEvent":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEvent","url":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","abstract":[{"text":"A change to the connection state of a peer.","type":"text"}],"role":"symbol","navigatorTitle":[{"text":"CBMConnectionEvent","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectionEvent"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectionEventMatchingOption":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectionEventMatchingOption","title":"CBMConnectionEventMatchingOption","url":"\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption","abstract":[{"type":"text","text":"A set of options to use when registering for connection events."}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMConnectionEventMatchingOption"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMConnectionEventMatchingOption","kind":"identifier"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey.json b/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey.json index 46f4e77..c2ffccc 100644 --- a/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey.json +++ b/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value for this key is an "},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":" object. This key is useful for apps that"},{"type":"text","text":" "},{"type":"text","text":"haven’t specified the bluetooth-central background mode and can’t display their own alert."},{"type":"text","text":" "},{"type":"text","text":"If more than one app requests a notification for a given peripheral, the one that was"},{"type":"text","text":" "},{"type":"text","text":"most recently in the foreground receives the alert. If the key isn’t specified, the default"},{"type":"text","text":" "},{"type":"text","text":"value is "},{"type":"codeVoice","code":"false"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"connecting a peripheral in the background."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock47CBMConnectPeripheralOptionNotifyOnConnectionKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Peripheral Connection Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"role":"symbol","title":"CBMConnectPeripheralOptionStartDelayKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionStartDelayKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"type":"text","text":" "},{"type":"text","text":"notification sent by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey"}}} \ No newline at end of file +{"abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"connecting a peripheral in the background."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"platforms":["macOS"]}]},{"content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"type":"paragraph","inlineContent":[{"text":"The value for this key is an ","type":"text"},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":" object. This key is useful for apps that"},{"type":"text","text":" "},{"text":"haven’t specified the bluetooth-central background mode and can’t display their own alert.","type":"text"},{"text":" ","type":"text"},{"text":"If more than one app requests a notification for a given peripheral, the one that was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"most recently in the foreground receives the alert. If the key isn’t specified, the default"},{"type":"text","text":" "},{"type":"text","text":"value is "},{"type":"codeVoice","code":"false"},{"type":"text","text":"."}]}],"kind":"content"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey"]}],"seeAlsoSections":[{"title":"Peripheral Connection Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"],"generated":true}],"metadata":{"roleHeading":"Global Variable","title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","externalID":"s:17CoreBluetoothMock47CBMConnectPeripheralOptionNotifyOnConnectionKeySSvp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"var","role":"symbol"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey","abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionStartDelayKey","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"title":"CBMConnectPeripheralOptionStartDelayKey","role":"symbol","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"type":"topic","abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"text":" ","type":"text"},{"text":"notification sent by a peripheral.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey.json b/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey.json index 87db94d..49f0a1e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey.json +++ b/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value for this key is an "},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":" object. This key is useful for apps that"},{"type":"text","text":" "},{"type":"text","text":"haven’t specified the bluetooth-central background mode and can’t display their own alert."},{"type":"text","text":" "},{"type":"text","text":"If more than one app requests a notification for a given peripheral, the one that was"},{"type":"text","text":" "},{"type":"text","text":"most recently in the foreground receives the alert. If the key isn’t specified, the default"},{"type":"text","text":" "},{"type":"text","text":"value is "},{"type":"codeVoice","code":"false"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"disconnecting a peripheral in the background."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock50CBMConnectPeripheralOptionNotifyOnDisconnectionKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Peripheral Connection Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"type":"text","text":" "},{"type":"text","text":"notification sent by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"role":"symbol","title":"CBMConnectPeripheralOptionStartDelayKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionStartDelayKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"The value for this key is an ","type":"text"},{"code":"NSNumber","type":"codeVoice"},{"type":"text","text":" object. This key is useful for apps that"},{"text":" ","type":"text"},{"text":"haven’t specified the bluetooth-central background mode and can’t display their own alert.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"If more than one app requests a notification for a given peripheral, the one that was"},{"text":" ","type":"text"},{"type":"text","text":"most recently in the foreground receives the alert. If the key isn’t specified, the default"},{"type":"text","text":" "},{"type":"text","text":"value is "},{"code":"false","type":"codeVoice"},{"text":".","type":"text"}]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"metadata":{"title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Global Variable","role":"symbol","externalID":"s:17CoreBluetoothMock50CBMConnectPeripheralOptionNotifyOnDisconnectionKeySSvp","symbolKind":"var","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"text":" ","type":"text"},{"text":"disconnecting a peripheral in the background.","type":"text"}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"],"generated":true,"title":"Peripheral Connection Options"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey","abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionStartDelayKey","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"title":"CBMConnectPeripheralOptionStartDelayKey","role":"symbol","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"type":"topic","abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"text":" ","type":"text"},{"text":"notification sent by a peripheral.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey.json b/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey.json index 19a5f9b..162b748 100644 --- a/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey.json +++ b/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If "},{"type":"codeVoice","code":"true"},{"type":"text","text":", the system displays an alert for all notifications received from a given"},{"type":"text","text":" "},{"type":"text","text":"peripheral while the app is suspended."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value for this key is an "},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":" object. This key is useful for apps that"},{"type":"text","text":" "},{"type":"text","text":"haven’t specified the bluetooth-central background mode and can’t display their own alert."},{"type":"text","text":" "},{"type":"text","text":"If more than one app requests a notification for a given peripheral, the one that was"},{"type":"text","text":" "},{"type":"text","text":"most recently in the foreground receives the alert. If the key isn’t specified, the default"},{"type":"text","text":" "},{"type":"text","text":"value is "},{"type":"codeVoice","code":"false"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"type":"text","text":" "},{"type":"text","text":"notification sent by a peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock49CBMConnectPeripheralOptionNotifyOnNotificationKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Peripheral Connection Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"role":"symbol","title":"CBMConnectPeripheralOptionStartDelayKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionStartDelayKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"type":"text","text":" "},{"type":"text","text":"notification sent by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey"},"seeAlsoSections":[{"generated":true,"title":"Peripheral Connection Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"]}],"metadata":{"roleHeading":"Global Variable","title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionNotifyOnNotificationKey","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"var","externalID":"s:17CoreBluetoothMock49CBMConnectPeripheralOptionNotifyOnNotificationKeySSvp","role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionNotifyOnNotificationKey","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"languages":["swift"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"inlineContent":[{"type":"text","text":"If "},{"code":"true","type":"codeVoice"},{"type":"text","text":", the system displays an alert for all notifications received from a given"},{"type":"text","text":" "},{"text":"peripheral while the app is suspended.","type":"text"}],"type":"paragraph"},{"inlineContent":[{"type":"text","text":"The value for this key is an "},{"type":"codeVoice","code":"NSNumber"},{"text":" object. This key is useful for apps that","type":"text"},{"type":"text","text":" "},{"text":"haven’t specified the bluetooth-central background mode and can’t display their own alert.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"If more than one app requests a notification for a given peripheral, the one that was"},{"type":"text","text":" "},{"text":"most recently in the foreground receives the alert. If the key isn’t specified, the default","type":"text"},{"text":" ","type":"text"},{"text":"value is ","type":"text"},{"type":"codeVoice","code":"false"},{"type":"text","text":"."}],"type":"paragraph"}]}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"type":"text","text":" "},{"type":"text","text":"notification sent by a peripheral."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"type":"topic","abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"text":" ","type":"text"},{"text":"notification sent by a peripheral.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey","abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionStartDelayKey","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"title":"CBMConnectPeripheralOptionStartDelayKey","role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey.json b/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey.json index fbb1c9a..2bb5812 100644 --- a/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey.json +++ b/docs/data/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionStartDelayKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The corresponding value is an "},{"type":"codeVoice","code":"NSNumber"},{"type":"text","text":" that indicates the duration of the delay in seconds."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionStartDelayKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"CBMConnectPeripheralOptionStartDelayKey","roleHeading":"Global Variable","role":"symbol","symbolKind":"var","externalID":"s:17CoreBluetoothMock39CBMConnectPeripheralOptionStartDelayKeySSvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Peripheral Connection Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert when"},{"type":"text","text":" "},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"role":"symbol","title":"CBMConnectPeripheralOptionStartDelayKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionStartDelayKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"role":"symbol","title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"type":"text","text":" "},{"type":"text","text":"notification sent by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionStartDelayKey","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"The corresponding value is an ","type":"text"},{"code":"NSNumber","type":"codeVoice"},{"text":" that indicates the duration of the delay in seconds.","type":"text"}]}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey"},"seeAlsoSections":[{"title":"Peripheral Connection Options","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey"],"generated":true}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"metadata":{"roleHeading":"Global Variable","externalID":"s:17CoreBluetoothMock39CBMConnectPeripheralOptionStartDelayKeySSvp","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionStartDelayKey","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"symbolKind":"var","title":"CBMConnectPeripheralOptionStartDelayKey","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionStartDelayKey":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey","abstract":[{"type":"text","text":"An option that indicates a delay before the system makes a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionStartDelayKey","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMConnectPeripheralOptionStartDelayKey","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"title":"CBMConnectPeripheralOptionStartDelayKey","role":"symbol","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnDisconnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnDisconnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"disconnecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnDisconnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnNotificationKey":{"title":"CBMConnectPeripheralOptionNotifyOnNotificationKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnNotificationKey"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"type":"topic","abstract":[{"type":"text","text":"A Boolean value that specifies whether the system should display an alert for any"},{"text":" ","type":"text"},{"text":"notification sent by a peripheral.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnNotificationKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMConnectPeripheralOptionNotifyOnConnectionKey":{"title":"CBMConnectPeripheralOptionNotifyOnConnectionKey","role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMConnectPeripheralOptionNotifyOnConnectionKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"A Boolean value that specifies whether the system should display an alert when","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"connecting a peripheral in the background."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMConnectPeripheralOptionNotifyOnConnectionKey","url":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmdescriptor.json b/docs/data/documentation/corebluetoothmock/cbmdescriptor.json index 55591fe..9f87a44 100644 --- a/docs/data/documentation/corebluetoothmock/cbmdescriptor.json +++ b/docs/data/documentation/corebluetoothmock/cbmdescriptor.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}]},"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/characteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/uuid","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptor"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"CBMDescriptor"},{"type":"text","text":" represents a descriptor of a peripheral’s characteristic. In partcular, "},{"type":"codeVoice","code":"CBMDescriptor"},{"type":"text","text":" objects"},{"type":"text","text":" "},{"type":"text","text":"represent the descriptors of a remote peripheral’s characteristic. Descriptors provide further information about a"},{"type":"text","text":" "},{"type":"text","text":"characteristic’s value. For example, they may describe the value in human-readable form and describe how to format"},{"type":"text","text":" "},{"type":"text","text":"the value for presentation purposes. Characteristic descriptors also indicate whether a characteristic’s value indicates"},{"type":"text","text":" "},{"type":"text","text":"or notifies a client (a central) when the value of the characteristic changes."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" details six predefined descriptors and their corresponding value types. "},{"type":"codeVoice","code":"CBMDescriptor"},{"type":"text","text":" lists the"},{"type":"text","text":" "},{"type":"text","text":"predefined descriptors and the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" constants that represent them."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/characteristic":{"role":"symbol","title":"characteristic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A back-pointer to the characteristic this descriptor belongs to."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/characteristic","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/characteristic"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/uuid":{"role":"symbol","title":"uuid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/uuid","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/uuid"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The value of the descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/value"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute"],"kind":"relationships","type":"inheritsFrom","title":"Inherits From"},{"type":"inheritedBy","kind":"relationships","title":"Inherited By","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock"]},{"type":"conformsTo","kind":"relationships","title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/characteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/uuid","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value"],"title":"Instance Properties"}],"kind":"symbol","seeAlsoSections":[{"title":"Attributes","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"]}],"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Overview","type":"heading","level":2,"anchor":"overview"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"CBMDescriptor"},{"type":"text","text":" represents a descriptor of a peripheral’s characteristic. In particular, "},{"type":"codeVoice","code":"CBMDescriptor"},{"type":"text","text":" objects"},{"type":"text","text":" "},{"type":"text","text":"represent the descriptors of a remote peripheral’s characteristic. Descriptors provide further information about a"},{"type":"text","text":" "},{"text":"characteristic’s value. For example, they may describe the value in human-readable form and describe how to format","type":"text"},{"type":"text","text":" "},{"type":"text","text":"the value for presentation purposes. Characteristic descriptors also indicate whether a characteristic’s value indicates"},{"type":"text","text":" "},{"type":"text","text":"or notifies a client (a central) when the value of the characteristic changes."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"text":" details six predefined descriptors and their corresponding value types. ","type":"text"},{"code":"CBMDescriptor","type":"codeVoice"},{"type":"text","text":" lists the"},{"type":"text","text":" "},{"text":"predefined descriptors and the ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","isActive":true,"type":"reference"},{"text":" constants that represent them.","type":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmdescriptor"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},"metadata":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMDescriptor","kind":"identifier"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"class","title":"CBMDescriptor","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","navigatorTitle":[{"text":"CBMDescriptor","kind":"identifier"}],"roleHeading":"Class"},"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/characteristic":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/characteristic","kind":"symbol","role":"symbol","type":"topic","title":"characteristic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/characteristic","abstract":[{"type":"text","text":"A back-pointer to the characteristic this descriptor belongs to."}]},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"title":"Swift.CustomDebugStringConvertible","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/uuid":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/uuid","kind":"symbol","role":"symbol","type":"topic","title":"uuid","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"uuid","kind":"identifier"},{"text":": ","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/uuid","abstract":[]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/value":{"kind":"symbol","title":"value","role":"symbol","abstract":[{"text":"The value of the descriptor.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"value"},{"text":": ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/value"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","title":"Swift.CVarArg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmdescriptor/characteristic.json b/docs/data/documentation/corebluetoothmock/cbmdescriptor/characteristic.json index 1df799a..df37529 100644 --- a/docs/data/documentation/corebluetoothmock/cbmdescriptor/characteristic.json +++ b/docs/data/documentation/corebluetoothmock/cbmdescriptor/characteristic.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptor\/characteristic"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/characteristic","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A back-pointer to the characteristic this descriptor belongs to."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"?"}],"title":"characteristic","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMDescriptorC14characteristicAA17CBMCharacteristicCSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/characteristic":{"role":"symbol","title":"characteristic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A back-pointer to the characteristic this descriptor belongs to."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/characteristic","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/characteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"identifier"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"? { get }"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptor\/characteristic"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"characteristic"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"?"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Property","title":"characteristic","symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMDescriptorC14characteristicAA17CBMCharacteristicCSgvp"},"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/characteristic"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"]]},"abstract":[{"type":"text","text":"A back-pointer to the characteristic this descriptor belongs to."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/characteristic":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/characteristic","kind":"symbol","role":"symbol","type":"topic","title":"characteristic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/characteristic","abstract":[{"type":"text","text":"A back-pointer to the characteristic this descriptor belongs to."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmdescriptor/uuid.json b/docs/data/documentation/corebluetoothmock/cbmdescriptor/uuid.json index 1c413ea..00fa7fa 100644 --- a/docs/data/documentation/corebluetoothmock/cbmdescriptor/uuid.json +++ b/docs/data/documentation/corebluetoothmock/cbmdescriptor/uuid.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptor\/uuid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/uuid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMAttribute.uuid"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"title":"uuid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMDescriptorC4uuidSo6CBUUIDCvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/uuid":{"role":"symbol","title":"uuid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/uuid","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/uuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/uuid"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"uuid","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"externalID":"s:17CoreBluetoothMock13CBMDescriptorC4uuidSo6CBUUIDCvp","title":"uuid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"uuid","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}]},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmdescriptor\/uuid"]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMAttribute.uuid","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/uuid":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/uuid","kind":"symbol","role":"symbol","type":"topic","title":"uuid","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"uuid","kind":"identifier"},{"text":": ","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/uuid","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmdescriptor/value.json b/docs/data/documentation/corebluetoothmock/cbmdescriptor/value.json index 46f6253..c8e7db5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmdescriptor/value.json +++ b/docs/data/documentation/corebluetoothmock/cbmdescriptor/value.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptor\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The value of the descriptor."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMDescriptorC5valueypSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The value of the descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/value"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"value","kind":"identifier"},{"kind":"text","text":": "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"? { get }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"title":"value","externalID":"s:17CoreBluetoothMock13CBMDescriptorC5valueypSgvp","roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"symbolKind":"property","role":"symbol"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmdescriptor\/value"]}],"abstract":[{"text":"The value of the descriptor.","type":"text"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"]]},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/value":{"kind":"symbol","title":"value","role":"symbol","abstract":[{"text":"The value of the descriptor.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"value"},{"text":": ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/value"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmdescriptormock.json b/docs/data/documentation/corebluetoothmock/cbmdescriptormock.json index fc8144a..4f13e76 100644 --- a/docs/data/documentation/corebluetoothmock/cbmdescriptormock.json +++ b/docs/data/documentation/corebluetoothmock/cbmdescriptormock.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"title":"CBMDescriptorMock","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}]},"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/init(type:)"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/isEqual(_:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptormock"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock/init(type:)":{"role":"symbol","title":"init(type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/init(type:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/init(type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock/isEqual(_:)":{"role":"symbol","title":"isEqual(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/isEqual(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/isequal(_:)"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"abstract":[{"type":"text","text":"Mock implementation of "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"title":"Attributes"}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","interfaceLanguage":"swift"},"kind":"symbol","topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/init(type:)"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/isEqual(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptorMock","kind":"identifier"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmdescriptormock"]}],"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"],"title":"Inherits From","kind":"relationships","type":"inheritsFrom"},{"type":"inheritedBy","title":"Inherited By","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"],"kind":"relationships"},{"type":"conformsTo","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"title":"Conforms To","kind":"relationships"}],"metadata":{"roleHeading":"Class","modules":[{"name":"CoreBluetoothMock"}],"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"title":"CBMDescriptorMock","role":"symbol","symbolKind":"class","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}]},"references":{"doc://CoreBluetoothMock/SQ":{"title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/SH":{"title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","type":"unresolvable"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","type":"unresolvable"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock/isEqual(_:)":{"type":"topic","role":"symbol","title":"isEqual(_:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/isequal(_:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/isEqual(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isEqual","kind":"identifier"},{"kind":"text","text":"("},{"text":"Any","kind":"keyword"},{"kind":"text","text":"?) -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock/init(type:)":{"type":"topic","role":"symbol","title":"init(type:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/init(type:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/init(type:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmdescriptormock/init(type:).json b/docs/data/documentation/corebluetoothmock/cbmdescriptormock/init(type:).json index fdb21a3..d3359d6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmdescriptormock/init(type:).json +++ b/docs/data/documentation/corebluetoothmock/cbmdescriptormock/init(type:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":" "},{"kind":"internalParam","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptormock\/init(type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/init(type:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":")"}],"title":"init(type:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock013CBMDescriptorC0C4typeACSo6CBUUIDC_tcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock/init(type:)":{"role":"symbol","title":"init(type:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/init(type:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/init(type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":")","kind":"text"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Initializer","title":"init(type:)","externalID":"s:17CoreBluetoothMock013CBMDescriptorC0C4typeACSo6CBUUIDC_tcfc","symbolKind":"init"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/init(type:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"override","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":" "},{"text":"uuid","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptormock\/init(type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock/init(type:)":{"type":"topic","role":"symbol","title":"init(type:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/init(type:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/init(type:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:).json b/docs/data/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:).json index ebc22be..2878cd2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"object"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmdescriptormock\/isequal(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/isEqual(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isEqual(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock(im)isEqual:","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock/isEqual(_:)":{"role":"symbol","title":"isEqual(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/isEqual(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/isequal(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/isEqual(_:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"isEqual","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"object"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmdescriptormock\/isequal(_:)"]}],"kind":"symbol","metadata":{"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock(im)isEqual:","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"isEqual","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"?) -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol","title":"isEqual(_:)","modules":[{"name":"CoreBluetoothMock"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock/isEqual(_:)":{"type":"topic","role":"symbol","title":"isEqual(_:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/isequal(_:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock\/isEqual(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isEqual","kind":"identifier"},{"kind":"text","text":"("},{"text":"Any","kind":"keyword"},{"kind":"text","text":"?) -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmerror.json b/docs/data/documentation/corebluetoothmock/cbmerror.json index 2047543..bfa046f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmerror.json +++ b/docs/data/documentation/corebluetoothmock/cbmerror.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMError"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBError","preciseIdentifier":"s:SC7CBErrorLeV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmerror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMError"}],"title":"CBMError","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock8CBMErrora","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMError"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Other","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"role":"symbol","title":"CBMError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMError"}],"url":"\/documentation\/corebluetoothmock\/cbmerror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"role":"symbol","title":"CBMATTError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMATTError"}],"url":"\/documentation\/corebluetoothmock\/cbmatterror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError"},"kind":"symbol","abstract":[{"text":"An error that Core Bluetooth returns during Bluetooth transactions.","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"metadata":{"roleHeading":"Type Alias","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMError","kind":"identifier"}],"symbolKind":"typealias","navigatorTitle":[{"kind":"identifier","text":"CBMError"}],"externalID":"s:17CoreBluetoothMock8CBMErrora","title":"CBMError"},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError"],"title":"Other","generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmerror"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMError","kind":"identifier"},{"kind":"text","text":" = "},{"text":"CBError","kind":"typeIdentifier","preciseIdentifier":"s:SC7CBErrorLeV"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMError","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"url":"\/documentation\/corebluetoothmock\/cbmerror","navigatorTitle":[{"text":"CBMError","kind":"identifier"}],"title":"CBMError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"url":"\/documentation\/corebluetoothmock\/cbmatterror","navigatorTitle":[{"text":"CBMATTError","kind":"identifier"}],"title":"CBMATTError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbml2capchannel.json b/docs/data/documentation/corebluetoothmock/cbml2capchannel.json index 90743cb..4051d5e 100644 --- a/docs/data/documentation/corebluetoothmock/cbml2capchannel.json +++ b/docs/data/documentation/corebluetoothmock/cbml2capchannel.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBL2CAPChannel","preciseIdentifier":"c:objc(cs)CBL2CAPChannel"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbml2capchannel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"role":"symbol","title":"CBML2CAPChannel","roleHeading":"Type Alias","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"symbolKind":"typealias","externalID":"s:17CoreBluetoothMock15CBML2CAPChannela","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBML2CAPChannel","kind":"identifier"},{"kind":"text","text":" = "},{"text":"CBL2CAPChannel","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)CBL2CAPChannel"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbml2capchannel"]}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"metadata":{"symbolKind":"typealias","externalID":"s:17CoreBluetoothMock15CBML2CAPChannela","role":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBML2CAPChannel","kind":"identifier"}],"roleHeading":"Type Alias","title":"CBML2CAPChannel","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"platforms":[{"unavailable":false,"name":"iOS","beta":false,"deprecated":false,"introducedAt":"11.0"},{"deprecated":false,"beta":false,"name":"tvOS","unavailable":false,"introducedAt":"11.0"},{"introducedAt":"4.0","deprecated":false,"beta":false,"name":"watchOS","unavailable":false}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"},"seeAlsoSections":[{"generated":true,"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbml2cappsm.json b/docs/data/documentation/corebluetoothmock/cbml2cappsm.json index 1596bce..4a01cef 100644 --- a/docs/data/documentation/corebluetoothmock/cbml2cappsm.json +++ b/docs/data/documentation/corebluetoothmock/cbml2cappsm.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBL2CAPPSM","preciseIdentifier":"c:@T@CBL2CAPPSM"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbml2cappsm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"role":"symbol","title":"CBML2CAPPSM","roleHeading":"Type Alias","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"symbolKind":"typealias","externalID":"s:17CoreBluetoothMock11CBML2CAPPSMa","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbml2cappsm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock11CBML2CAPPSMa","roleHeading":"Type Alias","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBML2CAPPSM","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"title":"CBML2CAPPSM","role":"symbol","platforms":[{"name":"iOS","beta":false,"unavailable":false,"deprecated":false,"introducedAt":"11.0"},{"unavailable":false,"name":"tvOS","deprecated":false,"beta":false,"introducedAt":"11.0"},{"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}],"symbolKind":"typealias"},"seeAlsoSections":[{"generated":true,"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"},{"kind":"text","text":" = "},{"text":"CBL2CAPPSM","kind":"typeIdentifier","preciseIdentifier":"c:@T@CBL2CAPPSM"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerauthorization.json b/docs/data/documentation/corebluetoothmock/cbmmanagerauthorization.json index 79a9bc9..42801ad 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerauthorization.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerauthorization.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBManagerAuthorization","preciseIdentifier":"c:@E@CBManagerAuthorization"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerauthorization"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"role":"symbol","title":"CBMManagerAuthorization","roleHeading":"Type Alias","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"symbolKind":"typealias","externalID":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmmanagerauthorization"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMManagerAuthorization","kind":"identifier"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBManagerAuthorization","preciseIdentifier":"c:@E@CBManagerAuthorization"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"},"metadata":{"symbolKind":"typealias","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"roleHeading":"Type Alias","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock23CBMManagerAuthorizationa","platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"13.0","unavailable":false},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15","unavailable":false},{"name":"tvOS","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false},{"deprecated":false,"name":"watchOS","introducedAt":"6.0","unavailable":false,"beta":false}],"title":"CBMManagerAuthorization"},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"kind":"symbol","seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"],"generated":true,"title":"Central Manager"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate.json index d9239a9..7f3c3f3 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Central Manager","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"title":"CBMManagerState","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:17CoreBluetoothMock15CBMManagerStateO","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}]},"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH","doc:\/\/CoreBluetoothMock\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/resetting","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unsupported"]},{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations"],"generated":true}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","title":"CBMManagerState.poweredOn","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/resetting":{"role":"symbol","title":"CBMManagerState.resetting","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"resetting"}],"abstract":[{"type":"text","text":"A state that indicates the connection with the system service was momentarily lost."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/resetting","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/resetting"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"role":"symbol","title":"CBMManagerState.poweredOff","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/init(rawvalue:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/equatable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"role":"symbol","title":"CBMManagerAuthorization","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"type":"text","text":"The current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerAuthorization"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"role":"symbol","title":"CBMCentralManagerDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unauthorized":{"role":"symbol","title":"CBMManagerState.unauthorized","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unauthorized"}],"abstract":[{"type":"text","text":"A state that indicates the application isn’t authorized to use the Bluetooth low energy role."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unsupported":{"role":"symbol","title":"CBMManagerState.unsupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsupported"}],"abstract":[{"type":"text","text":"A state that indicates this device doesn’t support the Bluetooth low energy central or client role."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unsupported","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unsupported"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"role":"symbol","title":"CBMManagerState.unknown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"role":"symbol","title":"CBMCentralManagerDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations"},"doc://CoreBluetoothMock/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/CoreBluetoothMock\/SY"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"}}} \ No newline at end of file +{"relationshipsSections":[{"type":"conformsTo","title":"Conforms To","kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH","doc:\/\/CoreBluetoothMock\/SY"]}],"seeAlsoSections":[{"title":"Central Manager","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate"],"traits":[{"interfaceLanguage":"swift"}]}],"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/resetting","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unsupported"],"title":"Enumeration Cases"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/init(rawValue:)"],"title":"Initializers"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations"],"generated":true,"title":"Default Implementations"}],"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"CBMManagerState","kind":"identifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"},"metadata":{"roleHeading":"Enumeration","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock15CBMManagerStateO","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"title":"CBMManagerState","role":"symbol","symbolKind":"enum","navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unauthorized":{"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized","abstract":[{"type":"text","text":"A state that indicates the application isn’t authorized to use the Bluetooth low energy role."}],"fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"unauthorized"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","type":"topic","title":"CBMManagerState.unauthorized","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOff","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"CBMManagerState.poweredOff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","kind":"symbol","title":"CBMCentralManagerDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegate"}],"type":"topic","abstract":[{"type":"text","text":"A protocol that provides updates for the discovery and management of peripheral devices."}],"fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerDelegate"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/resetting":{"title":"CBMManagerState.resetting","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"resetting","kind":"identifier"}],"type":"topic","abstract":[{"type":"text","text":"A state that indicates the connection with the system service was momentarily lost."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/resetting","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/resetting","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerAuthorization":{"title":"CBMManagerAuthorization","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerAuthorization","url":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","type":"topic","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerAuthorization"}],"abstract":[{"text":"The current authorization state of a Core Bluetooth manager.","type":"text"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"text":"CBMManagerAuthorization","kind":"identifier"}]},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable"},"doc://CoreBluetoothMock/SY":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SY","title":"Swift.RawRepresentable"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegateProxy":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManagerDelegateProxy","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegateProxy","title":"CBMCentralManagerDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","role":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerDelegateProxy"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"role":"symbol","title":"CBMManagerState.unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/init(rawValue:)":{"fragments":[{"text":"init","kind":"identifier"},{"text":"?(","kind":"text"},{"text":"rawValue","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/init(rawValue:)","kind":"symbol","title":"init(rawValue:)","abstract":[],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/init(rawvalue:)","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/RawRepresentable-Implementations":{"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations","type":"topic","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations","title":"RawRepresentable Implementations","kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/Equatable-Implementations":{"abstract":[],"type":"topic","role":"collectionGroup","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/equatable-implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations","title":"Equatable Implementations","kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unsupported":{"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unsupported","role":"symbol","title":"CBMManagerState.unsupported","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unsupported","kind":"symbol","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"unsupported"}],"abstract":[{"text":"A state that indicates this device doesn’t support the Bluetooth low energy central or client role.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"poweredOn","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"topic","title":"CBMManagerState.poweredOn","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:).json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:).json index 4e753be..809a0c1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:17CoreBluetoothMock15CBMManagerStateO","extendedModule":"Swift","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/!=(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/equatable-implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/!=(_:_:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:17CoreBluetoothMock15CBMManagerStateO","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"roleHeading":"Operator","modules":[{"relatedModules":["Swift"],"name":"CoreBluetoothMock"}],"title":"!=(_:_:)","symbolKind":"op","extendedModule":"Swift","role":"symbol"},"sections":[],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/Equatable-Implementations":{"abstract":[],"type":"topic","role":"collectionGroup","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/equatable-implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations","title":"Equatable Implementations","kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/!=(_:_:)":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"abstract":[],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/!=(_:_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/!=(_:_:)","title":"!=(_:_:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations.json index cc76f66..486f924 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/!=(_:_:)"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"sections":[],"topicSections":[{"title":"Operators","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/!=(_:_:)"],"generated":true}],"metadata":{"title":"Equatable Implementations","modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup"},"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/Equatable-Implementations"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/!=(_:_:)":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"abstract":[],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/!=(_:_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/!=(_:_:)","title":"!=(_:_:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/hash(into:).json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/hash(into:).json index e6c2f55..a20c3ac 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/hash(into:).json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/hash(into:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hasher"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:17CoreBluetoothMock15CBMManagerStateO","extendedModule":"Swift","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hash(into:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"hasher"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV","text":"Hasher"},{"text":")","kind":"text"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations"]]},"metadata":{"externalID":"s:SYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF::SYNTHESIZED::s:17CoreBluetoothMock15CBMManagerStateO","conformance":{"constraints":[{"code":"Self","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"code":"RawValue","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"extendedModule":"Swift","modules":[{"name":"CoreBluetoothMock","relatedModules":["Swift"]}],"title":"hash(into:)","roleHeading":"Instance Method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Hasher","preciseIdentifier":"s:s6HasherV","kind":"typeIdentifier"},{"text":")","kind":"text"}],"symbolKind":"method"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/hash(into:)"]}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"RawRepresentable.hash(into:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hash(into:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/hash(into:)":{"type":"topic","title":"hash(into:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hash(into:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Self"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hash(into:)","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/RawRepresentable-Implementations":{"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations","type":"topic","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations","title":"RawRepresentable Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/hashvalue.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/hashvalue.json index cd894ad..417c909 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/hashvalue.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/hashvalue.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hashValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:17CoreBluetoothMock15CBMManagerStateO","extendedModule":"Swift","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hashvalue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"symbolKind":"property","role":"symbol","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"Self","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Hashable","type":"codeVoice"},{"type":"text","text":" and "},{"code":"RawValue","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}]},"extendedModule":"Swift","title":"hashValue","externalID":"s:SYsSHRzSH8RawValueSYRpzrlE04hashB0Sivp::SYNTHESIZED::s:17CoreBluetoothMock15CBMManagerStateO"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hashValue"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"hashValue","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"RawRepresentable.hashValue"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/hashValue":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"hashValue","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hashvalue","type":"topic","abstract":[],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hashValue","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Self","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Hashable","type":"codeVoice"},{"text":" and ","type":"text"},{"code":"RawValue","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Hashable","type":"codeVoice"},{"text":".","type":"text"}]},"title":"hashValue","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/RawRepresentable-Implementations":{"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations","type":"topic","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations","title":"RawRepresentable Implementations","kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:).json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:).json index 264645b..e2fc432 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:).json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/init(rawValue:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock15CBMManagerStateO8rawValueACSgSi_tcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/init(rawValue:)":{"role":"symbol","title":"init(rawValue:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/init(rawvalue:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"?(","kind":"text"},{"text":"rawValue","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/init(rawvalue:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RawRepresentable.init(rawValue:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/init(rawValue:)","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"init","kind":"identifier"},{"text":"?(","kind":"text"},{"text":"rawValue","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:17CoreBluetoothMock15CBMManagerStateO8rawValueACSgSi_tcfc","roleHeading":"Initializer","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"init(rawValue:)","symbolKind":"init"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/init(rawValue:)":{"fragments":[{"text":"init","kind":"identifier"},{"text":"?(","kind":"text"},{"text":"rawValue","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/init(rawValue:)","kind":"symbol","title":"init(rawValue:)","abstract":[],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/init(rawvalue:)","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredoff.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredoff.json index a66d29c..1cce3c6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredoff.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredoff.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"title":"CBMManagerState.poweredOff","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock15CBMManagerStateO10poweredOffyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"role":"symbol","title":"CBMManagerState.poweredOff","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"roleHeading":"Case","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOff"}],"role":"symbol","symbolKind":"case","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock15CBMManagerStateO10poweredOffyA2CmF","title":"CBMManagerState.poweredOff"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"poweredOff"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOff":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOff","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOff","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered off."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"CBMManagerState.poweredOff"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredon.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredon.json index 524e703..7892469 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredon.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/poweredon.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"title":"CBMManagerState.poweredOn","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock15CBMManagerStateO9poweredOnyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","title":"CBMManagerState.poweredOn","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"poweredOn"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn"},"metadata":{"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"poweredOn","kind":"identifier"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"case","title":"CBMManagerState.poweredOn","externalID":"s:17CoreBluetoothMock15CBMManagerStateO9poweredOnyA2CmF","roleHeading":"Case"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"A state that indicates Bluetooth is currently powered on and available to use.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/poweredOn":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"poweredOn","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/poweredOn","type":"topic","title":"CBMManagerState.poweredOn","abstract":[{"type":"text","text":"A state that indicates Bluetooth is currently powered on and available to use."}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations.json index dad53e8..9db5651 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hash(into:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/hashValue":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hashValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hashValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hashvalue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/hash(into:)":{"conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","title":"hash(into:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hash(into:)"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations"]}],"metadata":{"title":"RawRepresentable Implementations","role":"collectionGroup","modules":[{"name":"CoreBluetoothMock"}]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hashValue"],"generated":true},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hash(into:)"],"title":"Instance Methods","generated":true}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/RawRepresentable-Implementations"},"kind":"article","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/hashValue":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"hashValue","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hashvalue","type":"topic","abstract":[],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hashValue","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Self","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Hashable","type":"codeVoice"},{"text":" and ","type":"text"},{"code":"RawValue","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Hashable","type":"codeVoice"},{"text":".","type":"text"}]},"title":"hashValue","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/hash(into:)":{"type":"topic","title":"hash(into:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/hash(into:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Self"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawValue"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hash(into:)","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/resetting.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/resetting.json index ad4326e..03f9233 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/resetting.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/resetting.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"resetting"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/resetting"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/resetting","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A state that indicates the connection with the system service was momentarily lost."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"resetting"}],"title":"CBMManagerState.resetting","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock15CBMManagerStateO9resettingyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/resetting":{"role":"symbol","title":"CBMManagerState.resetting","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"resetting"}],"abstract":[{"type":"text","text":"A state that indicates the connection with the system service was momentarily lost."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/resetting","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/resetting"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"resetting","kind":"identifier"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/resetting"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/resetting"},"abstract":[{"type":"text","text":"A state that indicates the connection with the system service was momentarily lost."}],"metadata":{"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Case","symbolKind":"case","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"resetting"}],"title":"CBMManagerState.resetting","externalID":"s:17CoreBluetoothMock15CBMManagerStateO9resettingyA2CmF"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/resetting":{"title":"CBMManagerState.resetting","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"resetting","kind":"identifier"}],"type":"topic","abstract":[{"type":"text","text":"A state that indicates the connection with the system service was momentarily lost."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/resetting","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/resetting","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unauthorized.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unauthorized.json index 6363b17..798eb40 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unauthorized.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unauthorized.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unauthorized"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A state that indicates the application isn’t authorized to use the Bluetooth low energy role."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unauthorized"}],"title":"CBMManagerState.unauthorized","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock15CBMManagerStateO12unauthorizedyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unauthorized":{"role":"symbol","title":"CBMManagerState.unauthorized","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unauthorized"}],"abstract":[{"type":"text","text":"A state that indicates the application isn’t authorized to use the Bluetooth low energy role."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A state that indicates the application isn’t authorized to use the Bluetooth low energy role."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock15CBMManagerStateO12unauthorizedyA2CmF","roleHeading":"Case","role":"symbol","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"unauthorized"}],"title":"CBMManagerState.unauthorized","symbolKind":"case"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"unauthorized","kind":"identifier"}]}],"kind":"declarations"}],"kind":"symbol","sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unauthorized":{"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized","abstract":[{"type":"text","text":"A state that indicates the application isn’t authorized to use the Bluetooth low energy role."}],"fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"unauthorized"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","type":"topic","title":"CBMManagerState.unauthorized","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unknown.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unknown.json index d832922..fcb6a35 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unknown.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unknown.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"title":"CBMManagerState.unknown","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock15CBMManagerStateO7unknownyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"role":"symbol","title":"CBMManagerState.unknown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}]}]}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"metadata":{"externalID":"s:17CoreBluetoothMock15CBMManagerStateO7unknownyA2CmF","title":"CBMManagerState.unknown","roleHeading":"Case","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"symbolKind":"case","modules":[{"name":"CoreBluetoothMock"}]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"role":"symbol","title":"CBMManagerState.unknown"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unsupported.json b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unsupported.json index 741bde7..62fecd4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unsupported.json +++ b/docs/data/documentation/corebluetoothmock/cbmmanagerstate/unsupported.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsupported"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/unsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unsupported","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A state that indicates this device doesn’t support the Bluetooth low energy central or client role."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsupported"}],"title":"CBMManagerState.unsupported","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock15CBMManagerStateO11unsupportedyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unsupported":{"role":"symbol","title":"CBMManagerState.unsupported","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsupported"}],"abstract":[{"type":"text","text":"A state that indicates this device doesn’t support the Bluetooth low energy central or client role."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unsupported","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unsupported"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"role":"symbol","title":"CBMManagerState","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMManagerState"}],"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMManagerState"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmmanagerstate\/unsupported"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unsupported"},"metadata":{"roleHeading":"Case","symbolKind":"case","role":"symbol","title":"CBMManagerState.unsupported","externalID":"s:17CoreBluetoothMock15CBMManagerStateO11unsupportedyA2CmF","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsupported"}]},"abstract":[{"type":"text","text":"A state that indicates this device doesn’t support the Bluetooth low energy central or client role."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState"]]},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"unsupported","kind":"identifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unsupported":{"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unsupported","role":"symbol","title":"CBMManagerState.unsupported","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unsupported","kind":"symbol","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"unsupported"}],"abstract":[{"text":"A state that indicates this device doesn’t support the Bluetooth low energy central or client role.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState":{"abstract":[{"type":"text","text":"The possible states of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState","title":"CBMManagerState","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMManagerState"}],"navigatorTitle":[{"text":"CBMManagerState","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmpeer.json b/docs/data/documentation/corebluetoothmock/cbmpeer.json index 9f8e2d8..81c95a0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmpeer.json +++ b/docs/data/documentation/corebluetoothmock/cbmpeer.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"CBMPeer"},{"type":"text","text":" class is an abstract base class that defines common behavior for objects representing remote devices."},{"type":"text","text":" "},{"type":"text","text":"You typically don’t create instances of either "},{"type":"codeVoice","code":"CBMPeer"},{"type":"text","text":" or its concrete subclasses. Instead, the system creates them"},{"type":"text","text":" "},{"type":"text","text":"for you during the process of peer discovery."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Your app takes the role of either a central (by creating an instance of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":") or a peripheral"},{"type":"text","text":" "},{"type":"text","text":"(by creating an instance of "},{"type":"codeVoice","code":"CBPeripheralManager"},{"type":"text","text":"), and interacts through the manager with remote devices in"},{"type":"text","text":" "},{"type":"text","text":"the opposite role. During the process of peer discovery, where a central device scans for peripherals advertising services,"},{"type":"text","text":" "},{"type":"text","text":"the system creates objects from the concrete subclasses of "},{"type":"codeVoice","code":"CBMPeer"},{"type":"text","text":" to represent discovered remote devices."},{"type":"text","text":" "},{"type":"text","text":"The concrete subclasses of "},{"type":"codeVoice","code":"CBPeer"},{"type":"text","text":" are "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" and "},{"type":"codeVoice","code":"CBCentral"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmpeer"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An object that represents a remote device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"title":"CBMPeer","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeer","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"}}} \ No newline at end of file +{"metadata":{"role":"symbol","title":"CBMPeer","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeer","roleHeading":"Class","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"class","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeer"}]},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true,"title":"Peripheral"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmpeer"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"languages":["swift"]}]},{"kind":"content","content":[{"type":"heading","text":"Overview","anchor":"overview","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"CBMPeer"},{"text":" class is an abstract base class that defines common behavior for objects representing remote devices.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"You typically don’t create instances of either "},{"type":"codeVoice","code":"CBMPeer"},{"type":"text","text":" or its concrete subclasses. Instead, the system creates them"},{"text":" ","type":"text"},{"text":"for you during the process of peer discovery.","type":"text"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Your app takes the role of either a central (by creating an instance of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":") or a peripheral"},{"type":"text","text":" "},{"type":"text","text":"(by creating an instance of "},{"type":"codeVoice","code":"CBPeripheralManager"},{"type":"text","text":"), and interacts through the manager with remote devices in"},{"text":" ","type":"text"},{"text":"the opposite role. During the process of peer discovery, where a central device scans for peripherals advertising services,","type":"text"},{"text":" ","type":"text"},{"text":"the system creates objects from the concrete subclasses of ","type":"text"},{"type":"codeVoice","code":"CBMPeer"},{"type":"text","text":" to represent discovered remote devices."},{"type":"text","text":" "},{"text":"The concrete subclasses of ","type":"text"},{"code":"CBPeer","type":"codeVoice"},{"type":"text","text":" are "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true},{"type":"text","text":" and "},{"type":"codeVoice","code":"CBCentral"},{"text":".","type":"text"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer"},"relationshipsSections":[{"kind":"relationships","title":"Inherits From","identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"],"type":"inheritedBy","title":"Inherited By","kind":"relationships"},{"title":"Conforms To","kind":"relationships","type":"conformsTo","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"An object that represents a remote device."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","type":"unresolvable"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"title":"ObjectiveC.NSObject","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/SQ":{"title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral.json b/docs/data/documentation/corebluetoothmock/cbmperipheral.json index 6423c16..f4f6921 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"title":"CBMPeripheral","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:17CoreBluetoothMock13CBMPeripheralP","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}]},"abstract":[{"type":"text","text":"A remote peripheral device."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Identifying a Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate"]},{"title":"Discovering Services","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services"]},{"title":"Discovering Characteristics and Descriptors","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"]},{"title":"Reading Characteristic and Descriptor Values","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"]},{"title":"Writing Characteristic and Descriptor Values","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"]},{"title":"Setting Notifications for a Characteristic’s Value","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"]},{"title":"Monitoring a Peripheral’s Connection State","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse"]},{"title":"Accessing a Peripheral’s Signal Strength","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"]},{"title":"Working with L2CAP Channels","abstract":[{"type":"text","text":"L2CAP features are not supported by this library."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"CBMPeripheral"},{"type":"text","text":" class represents remote peripheral devices that your app discovers with a"},{"type":"text","text":" "},{"type":"text","text":"central manager (an instance of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"). Peripherals use universally unique identifiers"},{"type":"text","text":" "},{"type":"text","text":"(UUIDs), represented by "},{"type":"codeVoice","code":"NSUUID"},{"type":"text","text":" objects, to identify themselves. Peripherals may contain one or more"},{"type":"text","text":" "},{"type":"text","text":"services or provide useful information about their connected signal strength."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"You use this class to discover, explore, and interact with the services available on a remote peripheral that"},{"type":"text","text":" "},{"type":"text","text":"supports Bluetooth low energy. A service encapsulates the way part of the device behaves. For example, one"},{"type":"text","text":" "},{"type":"text","text":"service of a heart rate monitor may be to expose heart rate data from a sensor. Services themselves contain"},{"type":"text","text":" "},{"type":"text","text":"of characteristics or included services (references to other services). Characteristics provide further details about"},{"type":"text","text":" "},{"type":"text","text":"a peripheral’s service. For example, the heart rate service may contain multiple characteristics. One characteristic"},{"type":"text","text":" "},{"type":"text","text":"could describe the intended body location of the device’s heart rate sensor, and another characteristic could transmit"},{"type":"text","text":" "},{"type":"text","text":"the heart rate measurement data. Finally, characteristics contain any number of descriptors that provide more"},{"type":"text","text":" "},{"type":"text","text":"information about the characteristic’s value, such as a human-readable description and a way to format the value."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate object specified to receive peripheral events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The UUID associated with the peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Retrieves the current RSSI value for the peripheral while connected to the central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the remote device can send a write without a response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of a peripheral’s discovered services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[{"type":"text","text":"The connection state of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"}}} \ No newline at end of file +{"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"title":"Peripheral","generated":true}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},"sections":[],"metadata":{"roleHeading":"Protocol","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"title":"CBMPeripheral","externalID":"s:17CoreBluetoothMock13CBMPeripheralP","role":"symbol","symbolKind":"protocol"},"abstract":[{"type":"text","text":"A remote peripheral device."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate"],"title":"Identifying a Peripheral"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services"],"title":"Discovering Services"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"],"title":"Discovering Characteristics and Descriptors"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"],"title":"Reading Characteristic and Descriptor Values"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"],"title":"Writing Characteristic and Descriptor Values"},{"title":"Setting Notifications for a Characteristic’s Value","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"]},{"title":"Monitoring a Peripheral’s Connection State","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"],"title":"Accessing a Peripheral’s Signal Strength"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"title":"Working with L2CAP Channels","abstract":[{"type":"text","text":"L2CAP features are not supported by this library."}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"relationshipsSections":[{"type":"conformingTypes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"],"title":"Conforming Types","kind":"relationships"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMPeripheral","kind":"identifier"},{"kind":"text","text":" : AnyObject"}]}]},{"kind":"content","content":[{"type":"heading","anchor":"overview","text":"Overview","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"CBMPeripheral"},{"type":"text","text":" class represents remote peripheral devices that your app discovers with a"},{"text":" ","type":"text"},{"text":"central manager (an instance of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference","isActive":true},{"text":"). Peripherals use universally unique identifiers","type":"text"},{"type":"text","text":" "},{"type":"text","text":"(UUIDs), represented by "},{"type":"codeVoice","code":"NSUUID"},{"type":"text","text":" objects, to identify themselves. Peripherals may contain one or more"},{"type":"text","text":" "},{"type":"text","text":"services or provide useful information about their connected signal strength."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"You use this class to discover, explore, and interact with the services available on a remote peripheral that"},{"text":" ","type":"text"},{"text":"supports Bluetooth low energy. A service encapsulates the way part of the device behaves. For example, one","type":"text"},{"type":"text","text":" "},{"type":"text","text":"service of a heart rate monitor may be to expose heart rate data from a sensor. Services themselves contain"},{"text":" ","type":"text"},{"text":"of characteristics or included services (references to other services). Characteristics provide further details about","type":"text"},{"text":" ","type":"text"},{"text":"a peripheral’s service. For example, the heart rate service may contain multiple characteristics. One characteristic","type":"text"},{"type":"text","text":" "},{"type":"text","text":"could describe the intended body location of the device’s heart rate sensor, and another characteristic could transmit"},{"type":"text","text":" "},{"type":"text","text":"the heart rate measurement data. Finally, characteristics contain any number of descriptors that provide more"},{"text":" ","type":"text"},{"text":"information about the characteristic’s value, such as a human-readable description and a way to format the value.","type":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/name":{"abstract":[{"type":"text","text":"The name of the peripheral."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/name","title":"name","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/identifier":{"abstract":[{"text":"The UUID associated with the peer.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier","title":"identifier","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/delegate":{"abstract":[{"text":"The delegate object specified to receive peripheral events.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"text":"?","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate","title":"delegate","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"required":true,"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","type":"topic","title":"readRSSI()","abstract":[{"text":"Retrieves the current RSSI value for the peripheral while connected to the central manager.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/canSendWriteWithoutResponse":{"kind":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","required":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse","abstract":[{"text":"A Boolean value that indicates whether the remote device can send a write without a response.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","kind":"symbol","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/services":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/services","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","type":"topic","required":true,"title":"services","abstract":[{"text":"A list of a peripheral’s discovered services.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/maximumWriteValueLength(for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)","title":"maximumWriteValueLength(for:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"title":"discoverCharacteristics(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","kind":"symbol","abstract":[{"text":"Discovers the specified characteristics of a service.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"topic","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/state":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"kind":"symbol","title":"state","abstract":[{"text":"The connection state of the peripheral.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/state","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","required":true,"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","title":"discoverDescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)","type":"topic","title":"setNotifyValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"abstract":[{"text":"Discovers the specified included services of a previously-discovered service.","type":"text"}],"required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse.json b/docs/data/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse.json index 5c93ec3..f0577e7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If this value is "},{"type":"codeVoice","code":"false"},{"type":"text","text":", flushing all current writes sets the value to "},{"type":"codeVoice","code":"true"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"This also results in a call to the delegate’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A Boolean value that indicates whether the remote device can send a write without a response."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"canSendWriteWithoutResponse","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMPeripheralP27canSendWriteWithoutResponseSbvp","required":true,"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Monitoring a Peripheral’s Connection State","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[{"type":"text","text":"The connection state of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl":{"defaultImplementations":1,"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":", when"},{"type":"text","text":" "},{"type":"text","text":"peripheral is again ready to send characteristic value updates."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the remote device can send a write without a response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","sections":[],"metadata":{"symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"canSendWriteWithoutResponse","platforms":[{"introducedAt":"11.0","deprecated":false,"beta":false,"name":"iOS","unavailable":false},{"deprecated":false,"name":"tvOS","beta":false,"introducedAt":"11.0","unavailable":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"4.0","beta":false}],"required":true,"roleHeading":"Instance Property","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock13CBMPeripheralP27canSendWriteWithoutResponseSbvp"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"abstract":[{"type":"text","text":"A Boolean value that indicates whether the remote device can send a write without a response."}],"seeAlsoSections":[{"title":"Monitoring a Peripheral’s Connection State","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState"],"generated":true}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"canSendWriteWithoutResponse","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"text":"If this value is ","type":"text"},{"type":"codeVoice","code":"false"},{"type":"text","text":", flushing all current writes sets the value to "},{"type":"codeVoice","code":"true"},{"type":"text","text":"."},{"text":" ","type":"text"},{"type":"text","text":"This also results in a call to the delegate’s"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl"},{"type":"text","text":"."}]}],"kind":"content"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/canSendWriteWithoutResponse":{"kind":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","required":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse","abstract":[{"text":"A Boolean value that indicates whether the remote device can send a write without a response.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl","abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"text":", when","type":"text"},{"type":"text","text":" "},{"text":"peripheral is again ready to send characteristic value updates.","type":"text"}],"defaultImplementations":1,"title":"peripheralIsReady(toSendWriteWithoutResponse:)","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheralIsReady","kind":"identifier"},{"text":"(","kind":"text"},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/state":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"kind":"symbol","title":"state","abstract":[{"text":"The connection state of the peripheral.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/state","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/delegate.json b/docs/data/documentation/corebluetoothmock/cbmperipheral/delegate.json index 0972741..acabd53 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/delegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/delegate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"For information about how to implement your peripheral delegate, see "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The delegate object specified to receive peripheral events."}],"kind":"symbol","metadata":{"role":"symbol","title":"delegate","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMPeripheralP8delegateAA0D8Delegate_pSgvp","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Identifying a Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The UUID associated with the peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate object specified to receive peripheral events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"}}} \ No newline at end of file +{"sections":[],"seeAlsoSections":[{"title":"Identifying a Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name"],"generated":true}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","interfaceLanguage":"swift"},"metadata":{"role":"symbol","symbolKind":"property","required":true,"externalID":"s:17CoreBluetoothMock13CBMPeripheralP8delegateAA0D8Delegate_pSgvp","title":"delegate","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"text":"CBMPeripheralDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"text":"?","kind":"text"}]},"abstract":[{"type":"text","text":"The delegate object specified to receive peripheral events."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/delegate"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","text":"CBMPeripheralDelegate"},{"text":"? { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" ","kind":"text"},{"text":"set","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"inlineContent":[{"type":"text","text":"For information about how to implement your peripheral delegate, see "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","type":"reference","isActive":true},{"type":"text","text":"."}],"type":"paragraph"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/name":{"abstract":[{"type":"text","text":"The name of the peripheral."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/name","title":"name","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/delegate":{"abstract":[{"text":"The delegate object specified to receive peripheral events.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"text":"?","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate","title":"delegate","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/identifier":{"abstract":[{"text":"The UUID associated with the peer.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier","title":"identifier","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:).json index 39a4a31..9983095 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"characteristicUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects representing the characteristic types"},{"type":"text","text":" "},{"type":"text","text":"to be discovered. If "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, all characteristics of service will be discovered."}]}]},{"name":"service","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A GATT service."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"You can provide an array of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects—representing characteristic UUIDs — in the "},{"type":"codeVoice","code":"characteristicUUIDs"},{"type":"text","text":" "},{"type":"text","text":"parameter. When you do, the peripheral returns only the characteristics of the service that match the provided UUIDs."},{"type":"text","text":" "},{"type":"text","text":"If the "},{"type":"codeVoice","code":"characteristicUUIDs"},{"type":"text","text":" parameter is "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, this method returns all characteristics of the service."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If the "},{"type":"codeVoice","code":"characteristicUUIDs"},{"type":"text","text":" parameter is "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, this method returns all of the service’s"},{"type":"text","text":" "},{"type":"text","text":"characteristics. This is much slower than providing an array of characteristic UUIDs to search for."}]}],"type":"aside","name":"Note"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When the peripheral discovers one or more characteristics of the specified service, it calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"},{"type":"text","text":" method"},{"type":"text","text":" "},{"type":"text","text":"of its delegate object. After the peripheral discovers the service’s characteristics, you can access them through the service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},{"type":"text","text":" property."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"kind":"symbol","metadata":{"role":"symbol","title":"discoverCharacteristics(_:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Discovering Characteristics and Descriptors","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"role":"symbol","title":"characteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the characteristic(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"discoverCharacteristics","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"characteristicUUIDs","kind":"internalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"parameters":[{"content":[{"inlineContent":[{"text":"A list of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","type":"reference","isActive":true},{"text":" objects representing the characteristic types","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"to be discovered. If "},{"type":"codeVoice","code":"nil"},{"text":" or an empty array, all characteristics of service will be discovered.","type":"text"}],"type":"paragraph"}],"name":"characteristicUUIDs"},{"content":[{"inlineContent":[{"text":"A GATT service.","type":"text"}],"type":"paragraph"}],"name":"service"}],"kind":"parameters"},{"kind":"content","content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"You can provide an array of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","isActive":true,"type":"reference"},{"text":" objects—representing characteristic UUIDs — in the ","type":"text"},{"type":"codeVoice","code":"characteristicUUIDs"},{"type":"text","text":" "},{"text":"parameter. When you do, the peripheral returns only the characteristics of the service that match the provided UUIDs.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"If the "},{"type":"codeVoice","code":"characteristicUUIDs"},{"text":" parameter is ","type":"text"},{"code":"nil","type":"codeVoice"},{"text":" or an empty array, this method returns all characteristics of the service.","type":"text"}]},{"name":"Note","type":"aside","content":[{"inlineContent":[{"text":"If the ","type":"text"},{"type":"codeVoice","code":"characteristicUUIDs"},{"text":" parameter is ","type":"text"},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, this method returns all of the service’s"},{"text":" ","type":"text"},{"type":"text","text":"characteristics. This is much slower than providing an array of characteristic UUIDs to search for."}],"type":"paragraph"}],"style":"note"},{"inlineContent":[{"text":"When the peripheral discovers one or more characteristics of the specified service, it calls the","type":"text"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","isActive":true,"type":"reference"},{"text":" method","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"of its delegate object. After the peripheral discovers the service’s characteristics, you can access them through the service’s"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","isActive":true,"type":"reference"},{"text":" property.","type":"text"}],"type":"paragraph"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"kind":"symbol","seeAlsoSections":[{"title":"Discovering Characteristics and Descriptors","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"],"generated":true}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","interfaceLanguage":"swift"},"metadata":{"role":"symbol","required":true,"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","modules":[{"name":"CoreBluetoothMock"}],"title":"discoverCharacteristics(_:for:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"required":true,"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"reference"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"text":"If the characteristic(s) were read successfully, they can be retrieved via service’s","type":"text"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","isActive":true,"type":"reference"},{"type":"text","text":" property."}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristics","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":"]?","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","type":"topic","abstract":[{"text":"A list of characteristics that have so far been discovered in this service.","type":"text"}],"kind":"symbol","title":"characteristics","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","required":true,"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","title":"discoverDescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"title":"discoverCharacteristics(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","kind":"symbol","abstract":[{"text":"Discovers the specified characteristics of a service.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"topic","role":"symbol","required":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:).json index 371562e..db93eca 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A GATT characteristic."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When the peripheral discovers one or more descriptors of the specified characteristic, it calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo"},{"type":"text","text":" method"},{"type":"text","text":" "},{"type":"text","text":"of its delegate object. After the peripheral discovers the descriptors of the characteristic, you can access them through the"},{"type":"text","text":" "},{"type":"text","text":"characteristic’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors"},{"type":"text","text":" property."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"kind":"symbol","metadata":{"role":"symbol","title":"discoverDescriptors(for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP19discoverDescriptors3foryAA17CBMCharacteristicC_tF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Discovering Characteristics and Descriptors","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/descriptors":{"role":"symbol","title":"descriptors","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"descriptors"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of the descriptors that have so far been discovered"},{"type":"text","text":" "},{"type":"text","text":"in this characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the descriptors were read successfully, they can be retrieved via characteristic’s"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A GATT characteristic."}]}]}]},{"kind":"content","content":[{"type":"heading","level":2,"text":"Discussion","anchor":"discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When the peripheral discovers one or more descriptors of the specified characteristic, it calls the"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","isActive":true,"type":"reference"},{"text":" method","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"of its delegate object. After the peripheral discovers the descriptors of the characteristic, you can access them through the"},{"text":" ","type":"text"},{"type":"text","text":"characteristic’s "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","isActive":true,"type":"reference"},{"type":"text","text":" property."}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"metadata":{"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP19discoverDescriptors3foryAA17CBMCharacteristicC_tF","title":"discoverDescriptors(for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverDescriptors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":")","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","required":true},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","abstract":[{"text":"Discovers the descriptors of a characteristic.","type":"text"}],"seeAlsoSections":[{"title":"Discovering Characteristics and Descriptors","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"type":"topic","defaultImplementations":1,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"text":"If the descriptors were read successfully, they can be retrieved via characteristic’s","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/descriptors":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors","role":"symbol","title":"descriptors","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/descriptors","kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"descriptors","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":"]?","kind":"text"}],"abstract":[{"type":"text","text":"A list of the descriptors that have so far been discovered"},{"type":"text","text":" "},{"text":"in this characteristic.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"title":"discoverCharacteristics(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","kind":"symbol","abstract":[{"text":"Discovers the specified characteristics of a service.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"topic","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","required":true,"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","title":"discoverDescriptors(for:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:).json index 7674276..dc94517 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"includedServiceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"includedServiceUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects representing the included service types"},{"type":"text","text":" "},{"type":"text","text":"to be discovered. If "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, all of services included services will"},{"type":"text","text":" "},{"type":"text","text":"be discovered, which is considerably slower and not recommended."}]}]},{"name":"service","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A GATT service."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"You can provide an array of CBUUID objects — representing included service UUIDs — in the "},{"type":"codeVoice","code":"includedServiceUUIDs"},{"type":"text","text":" "},{"type":"text","text":"parameter. When you do, the peripheral returns only the services of the peripheral that match the provided UUIDs."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If the "},{"type":"codeVoice","code":"includedServiceUUIDs"},{"type":"text","text":" parameter is "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, this method returns all of the"},{"type":"text","text":" "},{"type":"text","text":"peripheral’s available services. This is much slower than providing an array of service UUIDs to search for."}]}],"type":"aside","name":"Note"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When the peripheral discovers one or more included services of the specified service, it calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q"},{"type":"text","text":" "},{"type":"text","text":"method of its delegate object. After the service discovers its included services, you can access them through the service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"type":"text","text":" property."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"kind":"symbol","metadata":{"role":"symbol","title":"discoverIncludedServices(_:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP24discoverIncludedServices_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Discovering Services","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of a peripheral’s discovered services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"role":"symbol","title":"includedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of included services that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Discovering Services","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services"],"generated":true}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"includedServiceUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"A list of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"text":" objects representing the included service types","type":"text"},{"text":" ","type":"text"},{"text":"to be discovered. If ","type":"text"},{"code":"nil","type":"codeVoice"},{"type":"text","text":" or an empty array, all of services included services will"},{"type":"text","text":" "},{"type":"text","text":"be discovered, which is considerably slower and not recommended."}]}],"name":"includedServiceUUIDs"},{"content":[{"inlineContent":[{"text":"A GATT service.","type":"text"}],"type":"paragraph"}],"name":"service"}]},{"kind":"content","content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"You can provide an array of CBUUID objects — representing included service UUIDs — in the "},{"code":"includedServiceUUIDs","type":"codeVoice"},{"text":" ","type":"text"},{"type":"text","text":"parameter. When you do, the peripheral returns only the services of the peripheral that match the provided UUIDs."}]},{"style":"note","type":"aside","name":"Note","content":[{"type":"paragraph","inlineContent":[{"text":"If the ","type":"text"},{"type":"codeVoice","code":"includedServiceUUIDs"},{"text":" parameter is ","type":"text"},{"code":"nil","type":"codeVoice"},{"text":" or an empty array, this method returns all of the","type":"text"},{"type":"text","text":" "},{"text":"peripheral’s available services. This is much slower than providing an array of service UUIDs to search for.","type":"text"}]}]},{"inlineContent":[{"text":"When the peripheral discovers one or more included services of the specified service, it calls the","type":"text"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","isActive":true},{"text":" ","type":"text"},{"text":"method of its delegate object. After the service discovers its included services, you can access them through the service’s","type":"text"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"text":" property.","type":"text"}],"type":"paragraph"}]}],"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","title":"discoverIncludedServices(_:for:)","externalID":"s:17CoreBluetoothMock13CBMPeripheralP24discoverIncludedServices_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","role":"symbol","required":true,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}]},"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q","required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"abstract":[{"type":"text","text":"This method returns the result of a "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","type":"reference","isActive":true},{"type":"text","text":" call."},{"text":" ","type":"text"},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"text":" property.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"abstract":[{"text":"Discovers the specified included services of a previously-discovered service.","type":"text"}],"required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"abstract":[{"text":"A list of included services that have so far been discovered in this service.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"includedServices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/services":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/services","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","type":"topic","required":true,"title":"services","abstract":[{"text":"A list of a peripheral’s discovered services.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:).json index b3dc2fd..cd93ffb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"serviceUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A list of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects representing the service types to be"},{"type":"text","text":" "},{"type":"text","text":"discovered. If "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, all services will be discovered."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"You can provide an array of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects — representing service UUIDs — in the "},{"type":"codeVoice","code":"serviceUUIDs"},{"type":"text","text":" "},{"type":"text","text":"parameter. When you do, the peripheral returns only the services of the peripheral that match the provided UUIDs."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If the "},{"type":"codeVoice","code":"servicesUUIDs"},{"type":"text","text":" parameter is "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, this method returns all of the peripheral’s"},{"type":"text","text":" "},{"type":"text","text":"available services. This is much slower than providing an array of service UUIDs to search for."}]}],"type":"aside","name":"Note"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When the peripheral discovers one or more services, it calls the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k"},{"type":"text","text":" method of its"},{"type":"text","text":" "},{"type":"text","text":"delegate object. After a peripheral discovers services, you can access them through the peripheral’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services"},{"type":"text","text":" property."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"kind":"symbol","metadata":{"role":"symbol","title":"discoverServices(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP16discoverServicesyySaySo6CBUUIDCGSgF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Discovering Services","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of a peripheral’s discovered services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverServices","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"serviceUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"serviceUUIDs","content":[{"inlineContent":[{"type":"text","text":"A list of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","isActive":true,"type":"reference"},{"type":"text","text":" objects representing the service types to be"},{"text":" ","type":"text"},{"type":"text","text":"discovered. If "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" or an empty array, all services will be discovered."}],"type":"paragraph"}]}]},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"inlineContent":[{"type":"text","text":"You can provide an array of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","type":"reference","isActive":true},{"type":"text","text":" objects — representing service UUIDs — in the "},{"code":"serviceUUIDs","type":"codeVoice"},{"type":"text","text":" "},{"type":"text","text":"parameter. When you do, the peripheral returns only the services of the peripheral that match the provided UUIDs."}],"type":"paragraph"},{"name":"Note","type":"aside","content":[{"inlineContent":[{"type":"text","text":"If the "},{"type":"codeVoice","code":"servicesUUIDs"},{"text":" parameter is ","type":"text"},{"code":"nil","type":"codeVoice"},{"type":"text","text":" or an empty array, this method returns all of the peripheral’s"},{"text":" ","type":"text"},{"text":"available services. This is much slower than providing an array of service UUIDs to search for.","type":"text"}],"type":"paragraph"}],"style":"note"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When the peripheral discovers one or more services, it calls the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","isActive":true,"type":"reference"},{"text":" method of its","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"delegate object. After a peripheral discovers services, you can access them through the peripheral’s"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services"},{"text":" property.","type":"text"}]}]}],"metadata":{"title":"discoverServices(_:)","required":true,"role":"symbol","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock13CBMPeripheralP16discoverServicesyySaySo6CBUUIDCGSgF","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"seeAlsoSections":[{"title":"Discovering Services","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/services":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/services","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","type":"topic","required":true,"title":"services","abstract":[{"text":"A list of a peripheral’s discovered services.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","type":"topic","title":"peripheral(_:didDiscoverServices:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"abstract":[{"text":"Discovers the specified included services of a previously-discovered service.","type":"text"}],"required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/identifier.json b/docs/data/documentation/corebluetoothmock/cbmperipheral/identifier.json index f64c058..4d9fb7e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/identifier.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/identifier.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The value of this property represents the unique identifier of the peer. The first time a local manager encounters"},{"type":"text","text":" "},{"type":"text","text":"a peer, the system assigns the peer a UUID, represented by a new UUID object. Peers use UUID instances to"},{"type":"text","text":" "},{"type":"text","text":"identify themselves, instead of by the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects that identify a peripheral’s services, characteristics, and"},{"type":"text","text":" "},{"type":"text","text":"descriptors."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The UUID associated with the peer."}],"kind":"symbol","metadata":{"role":"symbol","title":"identifier","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMPeripheralP10identifier10Foundation4UUIDVvp","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Identifying a Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The UUID associated with the peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate object specified to receive peripheral events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate"],"generated":true,"title":"Identifying a Peripheral"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"]}],"kind":"declarations"},{"content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"The value of this property represents the unique identifier of the peer. The first time a local manager encounters","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"a peer, the system assigns the peer a UUID, represented by a new UUID object. Peers use UUID instances to"},{"type":"text","text":" "},{"text":"identify themselves, instead of by the ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"type":"text","text":" objects that identify a peripheral’s services, characteristics, and"},{"type":"text","text":" "},{"type":"text","text":"descriptors."}]}],"kind":"content"}],"abstract":[{"type":"text","text":"The UUID associated with the peer."}],"metadata":{"symbolKind":"property","role":"symbol","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"required":true,"title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID","kind":"typeIdentifier"}],"externalID":"s:17CoreBluetoothMock13CBMPeripheralP10identifier10Foundation4UUIDVvp"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/identifier"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/identifier":{"abstract":[{"text":"The UUID associated with the peer.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier","title":"identifier","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/delegate":{"abstract":[{"text":"The delegate object specified to receive peripheral events.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"text":"?","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate","title":"delegate","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/name":{"abstract":[{"type":"text","text":"The name of the peripheral."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/name","title":"name","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:).json index 8089e67..9e17b27 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"type","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The characteristic write type to inspect."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"maximumWriteValueLength(for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP23maximumWriteValueLength3forSiSo016CBCharacteristicF4TypeV_tF","required":true,"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"9.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Writing Characteristic and Descriptor Values","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Method","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"9.0","deprecated":false}],"modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"maximumWriteValueLength"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":") -> ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock13CBMPeripheralP23maximumWriteValueLength3forSiSo016CBCharacteristicF4TypeV_tF","title":"maximumWriteValueLength(for:)","symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","interfaceLanguage":"swift"},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"],"generated":true,"title":"Writing Characteristic and Descriptor Values"}],"sections":[],"abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"maximumWriteValueLength","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"text":"CBMCharacteristicWriteType","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"type","content":[{"inlineContent":[{"type":"text","text":"The characteristic write type to inspect."}],"type":"paragraph"}]}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/maximumWriteValueLength(for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)","title":"maximumWriteValueLength(for:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/name.json b/docs/data/documentation/corebluetoothmock/cbmperipheral/name.json index 00f81b5..86a1b65 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/name.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/name.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Use this property to retrieve a human-readable name of the peripheral. A peripheral may have two different name types:"},{"type":"text","text":" "},{"type":"text","text":"one that the device advertises and another that the device publishes in its database as its Bluetooth low energy"},{"type":"text","text":" "},{"type":"text","text":"Generic Access Profile (GAP) device name. If a peripheral has both types of names, this property returns its GAP"},{"type":"text","text":" "},{"type":"text","text":"device name."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The name of the peripheral."}],"kind":"symbol","metadata":{"role":"symbol","title":"name","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMPeripheralP4nameSSSgvp","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Identifying a Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The UUID associated with the peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate object specified to receive peripheral events."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate"}}} \ No newline at end of file +{"metadata":{"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":"?","kind":"text"}],"title":"name","externalID":"s:17CoreBluetoothMock13CBMPeripheralP4nameSSSgvp","roleHeading":"Instance Property","required":true,"symbolKind":"property"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"? { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"anchor":"discussion","type":"heading","text":"Discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"Use this property to retrieve a human-readable name of the peripheral. A peripheral may have two different name types:","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"one that the device advertises and another that the device publishes in its database as its Bluetooth low energy"},{"type":"text","text":" "},{"text":"Generic Access Profile (GAP) device name. If a peripheral has both types of names, this property returns its GAP","type":"text"},{"type":"text","text":" "},{"type":"text","text":"device name."}]}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate"],"title":"Identifying a Peripheral","generated":true}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"The name of the peripheral."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/delegate":{"abstract":[{"text":"The delegate object specified to receive peripheral events.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"text":"?","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate","title":"delegate","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/name":{"abstract":[{"type":"text","text":"The name of the peripheral."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/name","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/name","title":"name","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/identifier":{"abstract":[{"text":"The UUID associated with the peer.","type":"text"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/identifier","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier","title":"identifier","required":true,"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/readrssi().json b/docs/data/documentation/corebluetoothmock/cbmperipheral/readrssi().json index a098bde..e1a8121 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/readrssi().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/readrssi().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"On macOS, when you call this method to retrieve the Received Signal Strength Indicator (RSSI) of the peripheral"},{"type":"text","text":" "},{"type":"text","text":"while connected to the central manager, the peripheral calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o"},{"type":"text","text":" method of its delegate object."},{"type":"text","text":" "},{"type":"text","text":"If retrieving the RSSI value of the peripheral succeeds, you can access it through the peripheral’s rssi property."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"On iOS and tvOS, when you call this method to retrieve the RSSI of the peripheral while connected to the central manager,"},{"type":"text","text":" "},{"type":"text","text":"the peripheral calls the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o"},{"type":"text","text":" "},{"type":"text","text":"method of its delegate object, which includes the RSSI value as a parameter."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Retrieves the current RSSI value for the peripheral while connected to the central manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"readRSSI()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP8readRSSIyyF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Retrieves the current RSSI value for the peripheral while connected to the central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7zu2o":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Retrieves the current RSSI value for the peripheral while connected to the central manager.","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"readRSSI","kind":"identifier"},{"text":"()","kind":"text"}],"languages":["swift"]}],"kind":"declarations"},{"content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"inlineContent":[{"type":"text","text":"On macOS, when you call this method to retrieve the Received Signal Strength Indicator (RSSI) of the peripheral"},{"text":" ","type":"text"},{"text":"while connected to the central manager, the peripheral calls the","type":"text"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o"},{"type":"text","text":" method of its delegate object."},{"text":" ","type":"text"},{"text":"If retrieving the RSSI value of the peripheral succeeds, you can access it through the peripheral’s rssi property.","type":"text"}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"On iOS and tvOS, when you call this method to retrieve the RSSI of the peripheral while connected to the central manager,"},{"text":" ","type":"text"},{"type":"text","text":"the peripheral calls the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o"},{"type":"text","text":" "},{"type":"text","text":"method of its delegate object, which includes the RSSI value as a parameter."}]}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readRSSI","kind":"identifier"},{"kind":"text","text":"()"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock13CBMPeripheralP8readRSSIyyF","title":"readRSSI()","symbolKind":"method"},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"required":true,"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","type":"topic","title":"readRSSI()","abstract":[{"text":"Retrieves the current RSSI value for the peripheral while connected to the central manager.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7zu2o":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didReadRSSI","kind":"externalParam"},{"kind":"text","text":": "},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","type":"topic","title":"peripheral(_:didReadRSSI:error:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"text":" call.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp.json b/docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp.json index e883c4d..e8c5f52 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A GATT characteristic."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When you call this method to read the value of a characteristic, the peripheral calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"},{"type":"text","text":" "},{"type":"text","text":"method of its delegate object. If the peripheral successfully reads the value of the characteristic, you can access it"},{"type":"text","text":" "},{"type":"text","text":"through the characteristic’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value"},{"type":"text","text":" property."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Not all characteristics have a readable value. You can determine whether a characteristic’s value is readable by"},{"type":"text","text":" "},{"type":"text","text":"accessing the relevant properties of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties"},{"type":"text","text":" enumeration."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","metadata":{"role":"symbol","title":"readValue(for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP9readValue3foryAA17CBMCharacteristicC_tF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Reading Characteristic and Descriptor Values","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The value of the characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/value"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"]}],"kind":"symbol","seeAlsoSections":[{"generated":true,"title":"Reading Characteristic and Descriptor Values","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","required":true,"title":"readValue(for:)","externalID":"s:17CoreBluetoothMock13CBMPeripheralP9readValue3foryAA17CBMCharacteristicC_tF","symbolKind":"method","roleHeading":"Instance Method"},"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}]}],"kind":"declarations"},{"parameters":[{"name":"characteristic","content":[{"inlineContent":[{"type":"text","text":"A GATT characteristic."}],"type":"paragraph"}]}],"kind":"parameters"},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"type":"paragraph","inlineContent":[{"text":"When you call this method to read the value of a characteristic, the peripheral calls the","type":"text"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"},{"type":"text","text":" "},{"text":"method of its delegate object. If the peripheral successfully reads the value of the characteristic, you can access it","type":"text"},{"type":"text","text":" "},{"type":"text","text":"through the characteristic’s "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value"},{"type":"text","text":" property."}]},{"inlineContent":[{"type":"text","text":"Not all characteristics have a readable value. You can determine whether a characteristic’s value is readable by"},{"text":" ","type":"text"},{"text":"accessing the relevant properties of the ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","isActive":true},{"type":"text","text":" enumeration."}],"type":"paragraph"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","kind":"symbol","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/value":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"value","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/value","type":"topic","role":"symbol","title":"value","kind":"symbol","abstract":[{"type":"text","text":"The value of the characteristic."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"kind":"symbol","abstract":[{"text":"This method is invoked after a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","type":"reference"},{"text":" call, or upon","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"receipt of a notification\/indication."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","required":true,"role":"symbol","defaultImplementations":2,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1.json b/docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1.json index f770c21..05823e7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"descriptor","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A GATT descriptor."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When you call this method to read the value of a characteristic descriptor, the peripheral calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k"},{"type":"text","text":" method of its"},{"type":"text","text":" "},{"type":"text","text":"delegate object. If the peripheral successfully retrieves the value of the characteristic descriptor, you can access it"},{"type":"text","text":" "},{"type":"text","text":"through the characteristic descriptor’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value"},{"type":"text","text":" property."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"kind":"symbol","metadata":{"role":"symbol","title":"readValue(for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP9readValue3foryAA13CBMDescriptorC_tF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Reading Characteristic and Descriptor Values","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The value of the descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/value"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier","text":"CBMDescriptor"},{"text":")","kind":"text"}]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"descriptor","content":[{"inlineContent":[{"type":"text","text":"A GATT descriptor."}],"type":"paragraph"}]}]},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"text":"When you call this method to read the value of a characteristic descriptor, the peripheral calls the","type":"text"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k"},{"text":" method of its","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"delegate object. If the peripheral successfully retrieves the value of the characteristic descriptor, you can access it"},{"type":"text","text":" "},{"type":"text","text":"through the characteristic descriptor’s "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value"},{"text":" property.","type":"text"}]}]}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","abstract":[{"text":"Retrieves the value of a specified characteristic descriptor.","type":"text"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"],"traits":[{"interfaceLanguage":"swift"}]}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"],"generated":true,"title":"Reading Characteristic and Descriptor Values"}],"metadata":{"role":"symbol","externalID":"s:17CoreBluetoothMock13CBMPeripheralP9readValue3foryAA13CBMDescriptorC_tF","modules":[{"name":"CoreBluetoothMock"}],"title":"readValue(for:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"roleHeading":"Instance Method","required":true},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","kind":"symbol","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor/value":{"kind":"symbol","title":"value","role":"symbol","abstract":[{"text":"The value of the descriptor.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor\/value","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"value"},{"text":": ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmdescriptor\/value"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k","defaultImplementations":2,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/services.json b/docs/data/documentation/corebluetoothmock/cbmperipheral/services.json index 90f9003..a35a1cb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/services.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/services.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"]? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Returns an array of services (represented by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" objects) that successful call to the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":" method discovered."},{"type":"text","text":" "},{"type":"text","text":"If you haven’t yet called the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":" method to"},{"type":"text","text":" "},{"type":"text","text":"discover the services of the peripheral, or if there was an error in doing so, the value of this property is "},{"type":"codeVoice","code":"nil"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/services"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A list of a peripheral’s discovered services."}],"kind":"symbol","metadata":{"role":"symbol","title":"services","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMPeripheralP8servicesSayAA10CBMServiceCGSgvp","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Discovering Services","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of a peripheral’s discovered services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"seeAlsoSections":[{"title":"Discovering Services","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)"],"generated":true}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"A list of a peripheral’s discovered services."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/services"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"kind":"text","text":": ["},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier","text":"CBMService"},{"text":"]? { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}]},{"kind":"content","content":[{"anchor":"discussion","type":"heading","text":"Discussion","level":2},{"inlineContent":[{"text":"Returns an array of services (represented by ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true,"type":"reference"},{"type":"text","text":" objects) that successful call to the"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","isActive":true,"type":"reference"},{"text":" method discovered.","type":"text"},{"text":" ","type":"text"},{"text":"If you haven’t yet called the ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","isActive":true,"type":"reference"},{"type":"text","text":" method to"},{"text":" ","type":"text"},{"type":"text","text":"discover the services of the peripheral, or if there was an error in doing so, the value of this property is "},{"code":"nil","type":"codeVoice"},{"text":".","type":"text"}],"type":"paragraph"}]}],"metadata":{"title":"services","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"role":"symbol","required":true,"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock13CBMPeripheralP8servicesSayAA10CBMServiceCGSgvp","symbolKind":"property"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/services":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/services","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/services","type":"topic","required":true,"title":"services","abstract":[{"text":"A list of a peripheral’s discovered services.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"abstract":[{"text":"Discovers the specified included services of a previously-discovered service.","type":"text"}],"required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:).json index 5288f20..acf32c1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"enabled","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Boolean value that indicates whether to receive notifications or indications whenever the"},{"type":"text","text":" "},{"type":"text","text":"characteristic’s value changes. true if you want to enable notifications or indications for the"},{"type":"text","text":" "},{"type":"text","text":"characteristic’s value. false if you don’t want to receive notifications or indications whenever the"},{"type":"text","text":" "},{"type":"text","text":"characteristic’s value changes."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The specified characteristic."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When you enable notifications for the characteristic’s value, the peripheral calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0"},{"type":"text","text":" method"},{"type":"text","text":" "},{"type":"text","text":"of its delegate object to indicate if the action succeeded. If successful, the peripheral then calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"},{"type":"text","text":" method of its delegate"},{"type":"text","text":" "},{"type":"text","text":"object whenever the characteristic value changes. Because the peripheral chooses when it sends an update, your app"},{"type":"text","text":" "},{"type":"text","text":"should prepare to handle them as long as notifications or indications remain enabled. If the specified characteristic’s"},{"type":"text","text":" "},{"type":"text","text":"configuration allows both notifications and indications, calling this method enables notifications only. You can disable"},{"type":"text","text":" "},{"type":"text","text":"notifications and indications for a characteristic’s value by calling this method with the enabled parameter set to "},{"type":"codeVoice","code":"false"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"kind":"symbol","metadata":{"role":"symbol","title":"setNotifyValue(_:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP14setNotifyValue_3forySb_AA17CBMCharacteristicCtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","required":true,"title":"setNotifyValue(_:for:)","externalID":"s:17CoreBluetoothMock13CBMPeripheralP14setNotifyValue_3forySb_AA17CBMCharacteristicCtF","symbolKind":"method","roleHeading":"Instance Method"},"abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"setNotifyValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"enabled","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Boolean value that indicates whether to receive notifications or indications whenever the"},{"type":"text","text":" "},{"type":"text","text":"characteristic’s value changes. true if you want to enable notifications or indications for the"},{"type":"text","text":" "},{"type":"text","text":"characteristic’s value. false if you don’t want to receive notifications or indications whenever the"},{"type":"text","text":" "},{"text":"characteristic’s value changes.","type":"text"}]}],"name":"enabled"},{"content":[{"type":"paragraph","inlineContent":[{"text":"The specified characteristic.","type":"text"}]}],"name":"characteristic"}]},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"inlineContent":[{"type":"text","text":"When you enable notifications for the characteristic’s value, the peripheral calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0"},{"type":"text","text":" method"},{"type":"text","text":" "},{"type":"text","text":"of its delegate object to indicate if the action succeeded. If successful, the peripheral then calls the"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","isActive":true},{"text":" method of its delegate","type":"text"},{"type":"text","text":" "},{"type":"text","text":"object whenever the characteristic value changes. Because the peripheral chooses when it sends an update, your app"},{"type":"text","text":" "},{"type":"text","text":"should prepare to handle them as long as notifications or indications remain enabled. If the specified characteristic’s"},{"type":"text","text":" "},{"type":"text","text":"configuration allows both notifications and indications, calling this method enables notifications only. You can disable"},{"type":"text","text":" "},{"text":"notifications and indications for a characteristic’s value by calling this method with the enabled parameter set to ","type":"text"},{"code":"false","type":"codeVoice"},{"type":"text","text":"."}],"type":"paragraph"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"kind":"symbol","abstract":[{"text":"This method is invoked after a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","type":"reference"},{"text":" call, or upon","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"receipt of a notification\/indication."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","required":true,"role":"symbol","defaultImplementations":2,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)","type":"topic","title":"setNotifyValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"type":"topic","title":"peripheral(_:didUpdateNotificationStateFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","type":"reference"},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/state.json b/docs/data/documentation/corebluetoothmock/cbmperipheral/state.json index 6dc0a51..b5b5d0e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/state.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/state.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This property represents the current connection state of the peripheral. For a list of the possible values, see"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The connection state of the peripheral."}],"kind":"symbol","metadata":{"role":"symbol","title":"state","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock13CBMPeripheralP5stateSo17CBPeripheralStateVvp","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Monitoring a Peripheral’s Connection State","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A Boolean value that indicates whether the remote device can send a write without a response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[{"type":"text","text":"The connection state of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/state"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"The connection state of the peripheral."}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse"],"title":"Monitoring a Peripheral’s Connection State","generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/state"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"}],"title":"state","externalID":"s:17CoreBluetoothMock13CBMPeripheralP5stateSo17CBPeripheralStateVvp","required":true,"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"property"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"state","kind":"identifier"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","kind":"typeIdentifier","text":"CBMPeripheralState"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}],"kind":"declarations"},{"kind":"content","content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"inlineContent":[{"type":"text","text":"This property represents the current connection state of the peripheral. For a list of the possible values, see"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","isActive":true,"type":"reference"},{"type":"text","text":"."}],"type":"paragraph"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/canSendWriteWithoutResponse":{"kind":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","required":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse","abstract":[{"text":"A Boolean value that indicates whether the remote device can send a write without a response.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/canSendWriteWithoutResponse","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/state":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"kind":"symbol","title":"state","abstract":[{"text":"The connection state of the peripheral.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/state","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:).json index c6584fb..8b84fc0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The value to write."}]}]},{"name":"descriptor","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The descriptor containing the value to write."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When you call this method to write the value of a characteristic descriptor, the peripheral calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp"},{"type":"text","text":" method of its delegate"},{"type":"text","text":" "},{"type":"text","text":"object."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"This method copies the data passed into the data parameter, and you can dispose of it after the method returns."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"You can’t use this method to write the value of a client configuration descriptor (represented by the"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBUUIDClientCharacteristicConfigurationString"},{"type":"text","text":" constant), which"},{"type":"text","text":" "},{"type":"text","text":"describes the configuration of notification or indications for a characteristic’s value. If you want to manage notifications"},{"type":"text","text":" "},{"type":"text","text":"or indications for a characteristic’s value, you must use the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"},{"type":"text","text":" "},{"type":"text","text":"method instead."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"kind":"symbol","metadata":{"role":"symbol","title":"writeValue(_:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP10writeValue_3fory10Foundation4DataV_AA13CBMDescriptorCtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Writing Characteristic and Descriptor Values","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":")","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The value to write."}]}],"name":"data"},{"content":[{"type":"paragraph","inlineContent":[{"text":"The descriptor containing the value to write.","type":"text"}]}],"name":"descriptor"}]},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"type":"paragraph","inlineContent":[{"text":"When you call this method to write the value of a characteristic descriptor, the peripheral calls the","type":"text"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp"},{"text":" method of its delegate","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"object."}]},{"inlineContent":[{"type":"text","text":"This method copies the data passed into the data parameter, and you can dispose of it after the method returns."}],"type":"paragraph"},{"inlineContent":[{"type":"text","text":"You can’t use this method to write the value of a client configuration descriptor (represented by the"},{"type":"text","text":" "},{"code":"CBUUIDClientCharacteristicConfigurationString","type":"codeVoice"},{"type":"text","text":" constant), which"},{"text":" ","type":"text"},{"type":"text","text":"describes the configuration of notification or indications for a characteristic’s value. If you want to manage notifications"},{"text":" ","type":"text"},{"text":"or indications for a characteristic’s value, you must use the ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","isActive":true},{"type":"text","text":" "},{"type":"text","text":"method instead."}],"type":"paragraph"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP10writeValue_3fory10Foundation4DataV_AA13CBMDescriptorCtF","title":"writeValue(_:for:)","role":"symbol","required":true},"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"sections":[],"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"],"title":"Writing Characteristic and Descriptor Values"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","defaultImplementations":2,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","isActive":true},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp","type":"topic","title":"peripheral(_:didWriteValueFor:error:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)","type":"topic","title":"setNotifyValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/maximumWriteValueLength(for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)","title":"maximumWriteValueLength(for:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:).json b/docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:).json index 0e77220..37720fc 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The value to write."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The characteristic containing the value to write."}]}]},{"name":"type","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The type of write to execute. For a list of the possible"},{"type":"text","text":" "},{"type":"text","text":"types of writes to a characteristic’s value, see"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"},{"type":"text","text":"."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When you call this method to write the value of a characteristic, the peripheral calls the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv"},{"type":"text","text":" "},{"type":"text","text":"method of its delegate object only if you specified the write type as "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":". The response you"},{"type":"text","text":" "},{"type":"text","text":"receive through the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv"},{"type":"text","text":" "},{"type":"text","text":"delegate method indicates whether the write was successful; if the"},{"type":"text","text":" "},{"type":"text","text":"write failed, it details the cause of the failure in an error."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"On the other hand, if you specify the write type as "},{"type":"codeVoice","code":".withoutResponse"},{"type":"text","text":", Core Bluetooth attempts to write the value"},{"type":"text","text":" "},{"type":"text","text":"but doesn’t guarantee success. If the write doesn’t succeed in this case, you aren’t notified and you don’t receive an error"},{"type":"text","text":" "},{"type":"text","text":"indicating the cause of the failure."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Use the "},{"type":"codeVoice","code":".write"},{"type":"text","text":" and "},{"type":"codeVoice","code":".writeWithoutResponse"},{"type":"text","text":" members of the"},{"type":"text","text":" "},{"type":"text","text":"characteristic’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties"},{"type":"text","text":" enumeration to determine which kinds of"},{"type":"text","text":" "},{"type":"text","text":"writes you can perform."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"This method copies the data passed into the data parameter, and you"},{"type":"text","text":" "},{"type":"text","text":"can dispose of it after the method returns."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"kind":"symbol","metadata":{"role":"symbol","title":"writeValue(_:for:type:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock13CBMPeripheralP10writeValue_3for4typey10Foundation4DataV_AA17CBMCharacteristicCSo25CBCharacteristicWriteTypeVtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Writing Characteristic and Descriptor Values","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/properties":{"role":"symbol","title":"properties","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"properties"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicProperties","preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa"}],"abstract":[{"type":"text","text":"The properties of the characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":" call,"},{"type":"text","text":" "},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" type is used."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"]}],"sections":[],"seeAlsoSections":[{"title":"Writing Characteristic and Descriptor Values","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType","kind":"typeIdentifier"},{"kind":"text","text":")"}],"required":true,"title":"writeValue(_:for:type:)","externalID":"s:17CoreBluetoothMock13CBMPeripheralP10writeValue_3for4typey10Foundation4DataV_AA17CBMCharacteristicCSo25CBCharacteristicWriteTypeVtF","roleHeading":"Instance Method","symbolKind":"method"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","text":"CBMCharacteristicWriteType","kind":"typeIdentifier"},{"text":")","kind":"text"}]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The value to write."}],"type":"paragraph"}],"name":"data"},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The characteristic containing the value to write."}]}]},{"name":"type","content":[{"type":"paragraph","inlineContent":[{"text":"The type of write to execute. For a list of the possible","type":"text"},{"type":"text","text":" "},{"type":"text","text":"types of writes to a characteristic’s value, see"},{"type":"text","text":" "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"},{"text":".","type":"text"}]}]}]},{"content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"When you call this method to write the value of a characteristic, the peripheral calls the","type":"text"},{"text":" ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"method of its delegate object only if you specified the write type as "},{"code":".withResponse","type":"codeVoice"},{"type":"text","text":". The response you"},{"type":"text","text":" "},{"text":"receive through the ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv"},{"type":"text","text":" "},{"type":"text","text":"delegate method indicates whether the write was successful; if the"},{"type":"text","text":" "},{"type":"text","text":"write failed, it details the cause of the failure in an error."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"On the other hand, if you specify the write type as "},{"type":"codeVoice","code":".withoutResponse"},{"type":"text","text":", Core Bluetooth attempts to write the value"},{"text":" ","type":"text"},{"text":"but doesn’t guarantee success. If the write doesn’t succeed in this case, you aren’t notified and you don’t receive an error","type":"text"},{"type":"text","text":" "},{"text":"indicating the cause of the failure.","type":"text"}]},{"inlineContent":[{"type":"text","text":"Use the "},{"type":"codeVoice","code":".write"},{"type":"text","text":" and "},{"code":".writeWithoutResponse","type":"codeVoice"},{"type":"text","text":" members of the"},{"type":"text","text":" "},{"text":"characteristic’s ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","isActive":true,"type":"reference"},{"text":" enumeration to determine which kinds of","type":"text"},{"type":"text","text":" "},{"type":"text","text":"writes you can perform."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This method copies the data passed into the data parameter, and you"},{"text":" ","type":"text"},{"type":"text","text":"can dispose of it after the method returns."}]}],"kind":"content"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/maximumWriteValueLength(for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/maximumWriteValueLength(for:)","abstract":[{"type":"text","text":"The maximum amount of data, in bytes, you can send to a characteristic in a single write type."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)","title":"maximumWriteValueLength(for:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","abstract":[{"text":"This method returns the result of a ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","isActive":true,"type":"reference"},{"type":"text","text":" call,"},{"text":" ","type":"text"},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"text":" type is used.","type":"text"}],"title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv","defaultImplementations":2,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/properties":{"role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"properties","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock27CBMCharacteristicPropertiesa","text":"CBMCharacteristicProperties","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/properties","type":"topic","title":"properties","abstract":[{"type":"text","text":"The properties of the characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate.json index 5ce3eff..b55b79e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"title":"CBMPeripheralDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}]},"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"},{"kind":"text","text":" : AnyObject"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The delegate of a CBPeripheral object must adopt the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":" protocol. The delegate"},{"type":"text","text":" "},{"type":"text","text":"uses this protocol’s methods to monitor the discovery, exploration, and interaction of a remote peripheral’s services"},{"type":"text","text":" "},{"type":"text","text":"and properties. This protocol doesn’t have any required methods."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the characteristic(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-4r9dx":{"defaultImplementations":1,"role":"symbol","title":"peripheralDidUpdateName(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when the name of peripheral changes."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the descriptors were read successfully, they can be retrieved via characteristic’s"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-8ac1d":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"codeVoice","code":"CBMPeripheral\/openL2CAPChannel(_:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"role":"symbol","title":"characteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-9i6xy":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didModifyServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"This method is invoked when the "},{"type":"codeVoice","code":"services"},{"type":"text","text":" of peripheral have been changed."},{"type":"text","text":" "},{"type":"text","text":"At this point, the designated "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" objects have been invalidated."},{"type":"text","text":" "},{"type":"text","text":"Services can be re-discovered via "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":" call,"},{"type":"text","text":" "},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" type is used."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl":{"defaultImplementations":1,"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":", when"},{"type":"text","text":" "},{"type":"text","text":"peripheral is again ready to send characteristic value updates."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"role":"symbol","title":"includedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of included services that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Retrieves the current RSSI value for the peripheral while connected to the central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7zu2o":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o"}}} \ No newline at end of file +{"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"title":"Peripheral","generated":true}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Protocol","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"text":"CBMPeripheralDelegate","kind":"identifier"}],"title":"CBMPeripheralDelegate","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","role":"symbol","symbolKind":"protocol"},"sections":[],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"relationshipsSections":[{"kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"],"title":"Conforming Types","type":"conformingTypes"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegate"},{"text":" : AnyObject","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Overview","level":2,"anchor":"overview","type":"heading"},{"type":"paragraph","inlineContent":[{"text":"The delegate of a CBPeripheral object must adopt the ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":" protocol. The delegate"},{"text":" ","type":"text"},{"type":"text","text":"uses this protocol’s methods to monitor the discovery, exploration, and interaction of a remote peripheral’s services"},{"type":"text","text":" "},{"type":"text","text":"and properties. This protocol doesn’t have any required methods."}]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristics","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":"]?","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","type":"topic","abstract":[{"text":"A list of characteristics that have so far been discovered in this service.","type":"text"}],"kind":"symbol","title":"characteristics","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"type":"topic","defaultImplementations":1,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"text":"If the descriptors were read successfully, they can be retrieved via characteristic’s","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"type":"topic","title":"peripheral(_:didUpdateNotificationStateFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","type":"reference"},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-8ac1d":{"role":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d","kind":"symbol","abstract":[{"type":"text","text":"This method returns the result of a "},{"code":"CBMPeripheral\/openL2CAPChannel(_:)","type":"codeVoice"},{"type":"text","text":" call."}],"defaultImplementations":1,"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didOpen","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didOpen:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","abstract":[{"text":"This method returns the result of a ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","isActive":true,"type":"reference"},{"type":"text","text":" call,"},{"text":" ","type":"text"},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"text":" type is used.","type":"text"}],"title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv","defaultImplementations":2,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"required":true,"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"reference"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"text":"If the characteristic(s) were read successfully, they can be retrieved via service’s","type":"text"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","isActive":true,"type":"reference"},{"type":"text","text":" property."}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","kind":"symbol","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-9i6xy":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didModifyServices","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"kind":"symbol","type":"topic","abstract":[{"type":"text","text":"This method is invoked when the "},{"type":"codeVoice","code":"services"},{"text":" of peripheral have been changed.","type":"text"},{"type":"text","text":" "},{"text":"At this point, the designated ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","type":"reference"},{"text":" objects have been invalidated.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"Services can be re-discovered via "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","isActive":true,"type":"reference"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","required":true,"role":"symbol","title":"peripheral(_:didModifyServices:)","defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"required":true,"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","type":"topic","title":"readRSSI()","abstract":[{"text":"Retrieves the current RSSI value for the peripheral while connected to the central manager.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","defaultImplementations":2,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","isActive":true},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp","type":"topic","title":"peripheral(_:didWriteValueFor:error:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","type":"topic","title":"peripheral(_:didDiscoverServices:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q","required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"abstract":[{"type":"text","text":"This method returns the result of a "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","type":"reference","isActive":true},{"type":"text","text":" call."},{"text":" ","type":"text"},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"text":" property.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl","abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"text":", when","type":"text"},{"type":"text","text":" "},{"text":"peripheral is again ready to send characteristic value updates.","type":"text"}],"defaultImplementations":1,"title":"peripheralIsReady(toSendWriteWithoutResponse:)","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheralIsReady","kind":"identifier"},{"text":"(","kind":"text"},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k","defaultImplementations":2,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"abstract":[{"text":"A list of included services that have so far been discovered in this service.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"includedServices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","required":true,"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","title":"discoverDescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)","type":"topic","title":"setNotifyValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7zu2o":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didReadRSSI","kind":"externalParam"},{"kind":"text","text":": "},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","type":"topic","title":"peripheral(_:didReadRSSI:error:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"text":" call.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-4r9dx":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidUpdateName"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","type":"topic","role":"symbol","defaultImplementations":1,"required":true,"title":"peripheralDidUpdateName(_:)","kind":"symbol","abstract":[{"text":"This method is invoked when the name of peripheral changes.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"kind":"symbol","abstract":[{"text":"This method is invoked after a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","type":"reference"},{"text":" call, or upon","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"receipt of a notification\/indication."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","required":true,"role":"symbol","defaultImplementations":2,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"title":"discoverCharacteristics(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","kind":"symbol","abstract":[{"text":"Discovers the specified characteristics of a service.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"topic","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"abstract":[{"text":"Discovers the specified included services of a previously-discovered service.","type":"text"}],"required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc.json index 715596c..b88e01d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverCharacteristicsFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_29didDiscoverCharacteristicsFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"role":"symbol","title":"characteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc":{"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the characteristic(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverCharacteristicsFor:error:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc"]}],"sections":[],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_29didDiscoverCharacteristicsFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"text":": ","kind":"text"},{"text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"symbolKind":"method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"title":"discoverCharacteristics(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","kind":"symbol","abstract":[{"text":"Discovers the specified characteristics of a service.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"topic","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"required":true,"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"reference"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"text":"If the characteristic(s) were read successfully, they can be retrieved via service’s","type":"text"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","isActive":true,"type":"reference"},{"type":"text","text":" property."}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristics","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":"]?","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","type":"topic","abstract":[{"text":"A list of characteristics that have so far been discovered in this service.","type":"text"}],"kind":"symbol","title":"characteristics","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"abstract":[],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk.json index 2fceecf..0f1fb50 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"service","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" object containing the characteristic(s)."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the characteristic(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},{"type":"text","text":" property."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_29didDiscoverCharacteristicsFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc":{"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the characteristic(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"role":"symbol","title":"characteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The peripheral providing this information.","type":"text"}]}],"name":"peripheral"},{"name":"service","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":" object containing the characteristic(s).","type":"text"}]}]},{"name":"error","content":[{"inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}],"type":"paragraph"}]}]}],"metadata":{"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_29didDiscoverCharacteristicsFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","roleHeading":"Instance Method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}],"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"required":true},"sections":[],"abstract":[{"type":"text","text":"This method returns the result of a "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","isActive":true,"type":"reference"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the characteristic(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},{"text":" property.","type":"text"}],"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc"],"title":"CBMPeripheralDelegate Implementations"}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"abstract":[],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-1kooc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristics","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":"]?","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","type":"topic","abstract":[{"text":"A list of characteristics that have so far been discovered in this service.","type":"text"}],"kind":"symbol","title":"characteristics","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"title":"discoverCharacteristics(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","kind":"symbol","abstract":[{"text":"Discovers the specified characteristics of a service.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"topic","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"required":true,"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"reference"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"text":"If the characteristic(s) were read successfully, they can be retrieved via service’s","type":"text"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","isActive":true,"type":"reference"},{"type":"text","text":" property."}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo.json index 016de2d..e5f484e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the descriptors were read successfully, they can be retrieved via characteristic’s"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_25didDiscoverDescriptorsFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j":{"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the descriptors were read successfully, they can be retrieved via characteristic’s"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j"],"title":"CBMPeripheralDelegate Implementations"}],"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didDiscoverDescriptorsFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_25didDiscoverDescriptorsFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","required":true,"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)"},"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","isActive":true},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the descriptors were read successfully, they can be retrieved via characteristic’s"},{"type":"text","text":" "},{"code":"descriptors","type":"codeVoice"},{"type":"text","text":" property."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didDiscoverDescriptorsFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]},{"parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}],"name":"peripheral"},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"text":" object.","type":"text"}]}]},{"name":"error","content":[{"inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}],"type":"paragraph"}]}],"kind":"parameters"}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","required":true,"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","title":"discoverDescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didDiscoverDescriptorsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"type":"topic","defaultImplementations":1,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"text":"If the descriptors were read successfully, they can be retrieved via characteristic’s","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","required":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j.json index b223f53..e383aa8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverDescriptorsFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_25didDiscoverDescriptorsFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j":{"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the descriptors were read successfully, they can be retrieved via characteristic’s"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j"]}],"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralDelegate.peripheral(_:didDiscoverDescriptorsFor:error:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_25didDiscoverDescriptorsFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didDiscoverDescriptorsFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didDiscoverDescriptorsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-8554j","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","required":true,"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","title":"discoverDescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"type":"topic","defaultImplementations":1,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"text":"If the descriptors were read successfully, they can be retrieved via characteristic’s","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q.json index 8a66b3f..faa96b4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"service","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" object containing the included services."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"type":"text","text":" property."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_30didDiscoverIncludedServicesFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"role":"symbol","title":"includedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of included services that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr":{"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_30didDiscoverIncludedServicesFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","symbolKind":"method"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","isActive":true},{"type":"text","text":" call."},{"text":" ","type":"text"},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","isActive":true,"type":"reference"},{"type":"text","text":" property."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The peripheral providing this information.","type":"text"}]}],"name":"peripheral"},{"name":"service","content":[{"inlineContent":[{"type":"text","text":"The "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true,"type":"reference"},{"type":"text","text":" object containing the included services."}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"text":"If an error occurred, the cause of the failure.","type":"text"}],"type":"paragraph"}],"name":"error"}]}],"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr"],"title":"CBMPeripheralDelegate Implementations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr":{"title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didDiscoverIncludedServicesFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr","role":"symbol","type":"topic","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q","required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"abstract":[{"type":"text","text":"This method returns the result of a "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","type":"reference","isActive":true},{"type":"text","text":" call."},{"text":" ","type":"text"},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"text":" property.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"abstract":[{"text":"A list of included services that have so far been discovered in this service.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"includedServices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"abstract":[{"text":"Discovers the specified included services of a previously-discovered service.","type":"text"}],"required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr.json index 39117cb..244447b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverIncludedServicesFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_30didDiscoverIncludedServicesFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"role":"symbol","title":"includedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of included services that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr":{"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didDiscoverIncludedServicesFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"extendedModule":"CoreBluetoothMock","role":"symbol","symbolKind":"method","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_30didDiscoverIncludedServicesFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","roleHeading":"Instance Method"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralDelegate.peripheral(_:didDiscoverIncludedServicesFor:error:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"text":" ","kind":"text"},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr":{"title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didDiscoverIncludedServicesFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-g4lr","role":"symbol","type":"topic","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"abstract":[{"text":"Discovers the specified included services of a previously-discovered service.","type":"text"}],"required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q","required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"abstract":[{"type":"text","text":"This method returns the result of a "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","type":"reference","isActive":true},{"type":"text","text":" call."},{"text":" ","type":"text"},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"text":" property.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"abstract":[{"text":"A list of included services that have so far been discovered in this service.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"includedServices"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k.json index 12e279c..d6972f2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-7annk"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDiscoverServices:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_19didDiscoverServicesyAA0D0_p_s5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-7annk":{"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-7annk","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-7annk"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didDiscoverServices","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The peripheral providing this information."}],"type":"paragraph"}],"name":"peripheral"},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","required":true,"title":"peripheral(_:didDiscoverServices:)","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_19didDiscoverServicesyAA0D0_p_s5Error_pSgtF","symbolKind":"method","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k"]}],"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-7annk"],"title":"CBMPeripheralDelegate Implementations"}],"sections":[],"abstract":[{"type":"text","text":"This method returns the result of a "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"reference","isActive":true},{"text":" call.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","type":"topic","title":"peripheral(_:didDiscoverServices:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-7annk":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverServices"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-7annk","type":"topic","title":"peripheral(_:didDiscoverServices:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-7annk","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk.json index 89cf023..4877d05 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-7annk"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-7annk","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverServices:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDiscoverServices:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_19didDiscoverServicesyAA0D0_p_s5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-7annk":{"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-7annk","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-7annk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-7annk","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-7annk"]}],"metadata":{"roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_19didDiscoverServicesyAA0D0_p_s5Error_pSgtF","title":"peripheral(_:didDiscoverServices:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralDelegate.peripheral(_:didDiscoverServices:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-7annk":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverServices"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-7annk","type":"topic","title":"peripheral(_:didDiscoverServices:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-7annk","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","type":"topic","title":"peripheral(_:didDiscoverServices:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz.json index 7b95fdd..e2a32cc 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"invalidatedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-1pvuz"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-1pvuz","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didModifyServices:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didModifyServices:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didModifyServicesyAA0D0_p_SayAA10CBMServiceCGtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-1pvuz":{"role":"symbol","title":"peripheral(_:didModifyServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-1pvuz","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-1pvuz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-9i6xy":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didModifyServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"This method is invoked when the "},{"type":"codeVoice","code":"services"},{"type":"text","text":" of peripheral have been changed."},{"type":"text","text":" "},{"type":"text","text":"At this point, the designated "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" objects have been invalidated."},{"type":"text","text":" "},{"type":"text","text":"Services can be re-discovered via "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":" "},{"text":"invalidatedServices","kind":"internalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"typeIdentifier","text":"CBMService"},{"text":"])","kind":"text"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-1pvuz"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-1pvuz"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didModifyServices:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"])","kind":"text"}],"extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didModifyServicesyAA0D0_p_SayAA10CBMServiceCGtF","title":"peripheral(_:didModifyServices:)","symbolKind":"method"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-1pvuz":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-1pvuz","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didModifyServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"])","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-1pvuz","abstract":[],"type":"topic","role":"symbol","title":"peripheral(_:didModifyServices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-9i6xy":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didModifyServices","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"kind":"symbol","type":"topic","abstract":[{"type":"text","text":"This method is invoked when the "},{"type":"codeVoice","code":"services"},{"text":" of peripheral have been changed.","type":"text"},{"type":"text","text":" "},{"text":"At this point, the designated ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","type":"reference"},{"text":" objects have been invalidated.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"Services can be re-discovered via "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","isActive":true,"type":"reference"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","required":true,"role":"symbol","title":"peripheral(_:didModifyServices:)","defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy.json index 1598fca..6afeaad 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"invalidatedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this update."}]}]},{"name":"invalidatedServices","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The services that have been invalidated."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-1pvuz"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked when the "},{"type":"codeVoice","code":"services"},{"type":"text","text":" of peripheral have been changed."},{"type":"text","text":" "},{"type":"text","text":"At this point, the designated "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" objects have been invalidated."},{"type":"text","text":" "},{"type":"text","text":"Services can be re-discovered via "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didModifyServices:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_17didModifyServicesyAA0D0_p_SayAA10CBMServiceCGtF","required":true,"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"7.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-1pvuz":{"role":"symbol","title":"peripheral(_:didModifyServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-1pvuz","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-1pvuz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-9i6xy":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didModifyServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"This method is invoked when the "},{"type":"codeVoice","code":"services"},{"type":"text","text":" of peripheral have been changed."},{"type":"text","text":" "},{"type":"text","text":"At this point, the designated "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":" objects have been invalidated."},{"type":"text","text":" "},{"type":"text","text":"Services can be re-discovered via "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","platforms":[{"name":"iOS","beta":false,"unavailable":false,"introducedAt":"7.0","deprecated":false}],"modules":[{"name":"CoreBluetoothMock"}],"required":true,"role":"symbol","title":"peripheral(_:didModifyServices:)","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_17didModifyServicesyAA0D0_p_SayAA10CBMServiceCGtF","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"text":": [","kind":"text"},{"text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier"},{"kind":"text","text":"])"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy"},"kind":"symbol","abstract":[{"type":"text","text":"This method is invoked when the "},{"type":"codeVoice","code":"services"},{"type":"text","text":" of peripheral have been changed."},{"type":"text","text":" "},{"text":"At this point, the designated ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","type":"reference","isActive":true},{"text":" objects have been invalidated.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"Services can be re-discovered via "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didModifyServices","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"invalidatedServices","kind":"internalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}]}]},{"parameters":[{"name":"peripheral","content":[{"inlineContent":[{"text":"The peripheral providing this update.","type":"text"}],"type":"paragraph"}]},{"name":"invalidatedServices","content":[{"inlineContent":[{"type":"text","text":"The services that have been invalidated."}],"type":"paragraph"}]}],"kind":"parameters"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-1pvuz"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-1pvuz":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-1pvuz","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didModifyServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"])","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-1pvuz","abstract":[],"type":"topic","role":"symbol","title":"peripheral(_:didModifyServices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didModifyServices:)-9i6xy":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didModifyServices","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"kind":"symbol","type":"topic","abstract":[{"type":"text","text":"This method is invoked when the "},{"type":"codeVoice","code":"services"},{"text":" of peripheral have been changed.","type":"text"},{"type":"text","text":" "},{"text":"At this point, the designated ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","type":"reference"},{"text":" objects have been invalidated.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"Services can be re-discovered via "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","isActive":true,"type":"reference"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didModifyServices:)-9i6xy","required":true,"role":"symbol","title":"peripheral(_:didModifyServices:)","defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d.json index 742323f..2aacc82 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":" "},{"kind":"internalParam","text":"channel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"channel","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-tise"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"codeVoice","code":"CBMPeripheral\/openL2CAPChannel(_:)"},{"type":"text","text":" call."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didOpen:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_7didOpen5erroryAA0D0_p_So14CBL2CAPChannelCSgs5Error_pSgtF","required":true,"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-8ac1d":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"codeVoice","code":"CBMPeripheral\/openL2CAPChannel(_:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-tise":{"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-tise","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-tise"}}} \ No newline at end of file +{"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-tise"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didOpen","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"platforms":[{"introducedAt":"11.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"deprecated":false,"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"4.0"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","required":true,"title":"peripheral(_:didOpen:error:)","symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_7didOpen5erroryAA0D0_p_So14CBL2CAPChannelCSgs5Error_pSgtF","roleHeading":"Instance Method"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":" "},{"text":"channel","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}]}],"kind":"declarations"},{"parameters":[{"name":"peripheral","content":[{"inlineContent":[{"type":"text","text":"The peripheral providing this information."}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"type":"text","text":"A "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","type":"reference"},{"text":" object.","type":"text"}],"type":"paragraph"}],"name":"channel"},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"text":"If an error occurred, the cause of the failure.","type":"text"}]}]}],"kind":"parameters"}],"abstract":[{"text":"This method returns the result of a ","type":"text"},{"code":"CBMPeripheral\/openL2CAPChannel(_:)","type":"codeVoice"},{"type":"text","text":" call."}],"sections":[],"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-tise":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-tise","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"text":": ","kind":"text"},{"text":"CBML2CAPChannel","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didOpen:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-tise"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-8ac1d":{"role":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d","kind":"symbol","abstract":[{"type":"text","text":"This method returns the result of a "},{"code":"CBMPeripheral\/openL2CAPChannel(_:)","type":"codeVoice"},{"type":"text","text":" call."}],"defaultImplementations":1,"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didOpen","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didOpen:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise.json index f90d0d4..4c355a0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":" "},{"kind":"internalParam","text":"channel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-tise"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-tise","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didOpen:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didOpen:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_7didOpen5erroryAA0D0_p_So14CBL2CAPChannelCSgs5Error_pSgtF","extendedModule":"CoreBluetoothMock","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-8ac1d":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"codeVoice","code":"CBMPeripheral\/openL2CAPChannel(_:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-tise":{"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-tise","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-tise"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"11.0","beta":false},{"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"11.0","unavailable":false},{"deprecated":false,"name":"watchOS","unavailable":false,"introducedAt":"4.0","beta":false}],"extendedModule":"CoreBluetoothMock","roleHeading":"Instance Method","title":"peripheral(_:didOpen:error:)","role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_7didOpen5erroryAA0D0_p_So14CBL2CAPChannelCSgs5Error_pSgtF","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didOpen","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"kind":"text","text":"?, "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}]},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didOpen:error:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"kind":"text","text":", "},{"text":"didOpen","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"channel"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","text":"CBML2CAPChannel","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-tise"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-tise"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-8ac1d":{"role":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d","kind":"symbol","abstract":[{"type":"text","text":"This method returns the result of a "},{"code":"CBMPeripheral\/openL2CAPChannel(_:)","type":"codeVoice"},{"type":"text","text":" call."}],"defaultImplementations":1,"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didOpen","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didOpen:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-8ac1d"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didOpen:error:)-tise":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-tise","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"text":": ","kind":"text"},{"text":"CBML2CAPChannel","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didOpen:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didOpen:error:)-tise"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2.json index 4757176..b2368dc 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":" "},{"kind":"internalParam","text":"RSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7xmo2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7xmo2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didReadRSSI:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_11didReadRSSI5erroryAA0D0_p_So8NSNumberCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7zu2o":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7xmo2":{"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7xmo2","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7xmo2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Retrieves the current RSSI value for the peripheral while connected to the central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o"]]},"metadata":{"role":"symbol","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_11didReadRSSI5erroryAA0D0_p_So8NSNumberCs5Error_pSgtF","roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","title":"peripheral(_:didReadRSSI:error:)","modules":[{"name":"CoreBluetoothMock"}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7xmo2"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7xmo2"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didReadRSSI","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"RSSI","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didReadRSSI:error:)"},{"text":".","type":"text"}],"sections":[],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7xmo2":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7xmo2","type":"topic","title":"peripheral(_:didReadRSSI:error:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7xmo2","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7zu2o":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didReadRSSI","kind":"externalParam"},{"kind":"text","text":": "},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","type":"topic","title":"peripheral(_:didReadRSSI:error:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"text":" call.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"required":true,"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","type":"topic","title":"readRSSI()","abstract":[{"text":"Retrieves the current RSSI value for the peripheral while connected to the central manager.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o.json index 1a46504..06ab70f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":" "},{"kind":"internalParam","text":"RSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this update."}]}]},{"name":"RSSI","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The current RSSI of the link."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7xmo2"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"type":"text","text":" call."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_11didReadRSSI5erroryAA0D0_p_So8NSNumberCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Retrieves the current RSSI value for the peripheral while connected to the central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7xmo2":{"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7xmo2","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7xmo2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7zu2o":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"text":" ","kind":"text"},{"text":"RSSI","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"parameters":[{"name":"peripheral","content":[{"inlineContent":[{"text":"The peripheral providing this update.","type":"text"}],"type":"paragraph"}]},{"name":"RSSI","content":[{"inlineContent":[{"text":"The current RSSI of the link.","type":"text"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"text":"If an error occurred, the cause of the failure.","type":"text"}]}],"name":"error"}],"kind":"parameters"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o"]}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","type":"reference","isActive":true},{"text":" call.","type":"text"}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7xmo2"]}],"metadata":{"required":true,"roleHeading":"Instance Method","title":"peripheral(_:didReadRSSI:error:)","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didReadRSSI","kind":"externalParam"},{"kind":"text","text":": "},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_11didReadRSSI5erroryAA0D0_p_So8NSNumberCs5Error_pSgtF"},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readRSSI()":{"required":true,"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()","type":"topic","title":"readRSSI()","abstract":[{"text":"Retrieves the current RSSI value for the peripheral while connected to the central manager.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7zu2o":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didReadRSSI","kind":"externalParam"},{"kind":"text","text":": "},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7zu2o","type":"topic","title":"peripheral(_:didReadRSSI:error:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readRSSI()"},{"text":" call.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didReadRSSI:error:)-7xmo2":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didReadRSSI:error:)-7xmo2","type":"topic","title":"peripheral(_:didReadRSSI:error:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7xmo2","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y.json index 9e61d08..b101cb9 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateNotificationStateFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_29didUpdateNotificationStateFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateNotificationStateFor:error:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y","interfaceLanguage":"swift"},"metadata":{"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_29didUpdateNotificationStateFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)","type":"topic","title":"setNotifyValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y","title":"peripheral(_:didUpdateNotificationStateFor:error:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"type":"topic","title":"peripheral(_:didUpdateNotificationStateFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","type":"reference"},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0.json index 3e12189..7cbff49 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"},{"type":"text","text":" call."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_29didUpdateNotificationStateFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"languages":["swift"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The peripheral providing this information."}],"type":"paragraph"}],"name":"peripheral"},{"content":[{"inlineContent":[{"type":"text","text":"A "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","isActive":true},{"text":" object.","type":"text"}],"type":"paragraph"}],"name":"characteristic"},{"name":"error","content":[{"inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}],"type":"paragraph"}]}]}],"metadata":{"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_29didUpdateNotificationStateFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","title":"peripheral(_:didUpdateNotificationStateFor:error:)","roleHeading":"Instance Method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"required":true},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y"],"title":"CBMPeripheralDelegate Implementations"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)"},{"type":"text","text":" call."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"type":"topic","title":"peripheral(_:didUpdateNotificationStateFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-9ryr0","abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","type":"reference"},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-5tl1y","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y","title":"peripheral(_:didUpdateNotificationStateFor:error:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/setNotifyValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/setNotifyValue(_:for:)","abstract":[{"type":"text","text":"Sets notifications or indications for the value of a specified characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)","type":"topic","title":"setNotifyValue(_:for:)","required":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j.json index 5752c77..dc156d6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2bu3j":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k"}}} \ No newline at end of file +{"sections":[],"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didUpdateValueFor:error:)","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","role":"symbol","extendedModule":"CoreBluetoothMock","symbolKind":"method"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","kind":"symbol","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k","defaultImplementations":2,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"kind":"symbol","abstract":[{"text":"This method is invoked after a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","type":"reference"},{"text":" call, or upon","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"receipt of a notification\/indication."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","required":true,"role":"symbol","defaultImplementations":2,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2bu3j":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j","kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0.json index f9d4831..99edfc4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2bu3j":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-62302":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","required":true,"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)"},"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"This method is invoked after a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"text":" call, or upon","type":"text"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"platforms":["macOS"]}]},{"parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}],"name":"peripheral"},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":" object."}]}]},{"content":[{"inlineContent":[{"text":"If an error occurred, the cause of the failure.","type":"text"}],"type":"paragraph"}],"name":"error"}],"kind":"parameters"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302"],"title":"CBMPeripheralDelegate Implementations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2bu3j":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j","kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-62302":{"title":"peripheral(_:didUpdateValueFor:error:)","role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"kind":"symbol","abstract":[{"text":"This method is invoked after a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","type":"reference"},{"text":" call, or upon","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"receipt of a notification\/indication."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","required":true,"role":"symbol","defaultImplementations":2,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302.json index dc05818..c94a6b4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-62302":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302"},"metadata":{"roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","title":"peripheral(_:didUpdateValueFor:error:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k","defaultImplementations":2,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","kind":"symbol","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"kind":"symbol","abstract":[{"text":"This method is invoked after a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","type":"reference"},{"text":" call, or upon","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"receipt of a notification\/indication."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","required":true,"role":"symbol","defaultImplementations":2,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-62302":{"title":"peripheral(_:didUpdateValueFor:error:)","role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k.json index 0fb1c39..149ce95 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"descriptor","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-62302":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2bu3j":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","title":"peripheral(_:didUpdateValueFor:error:)","symbolKind":"method"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k"},"kind":"symbol","defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j"],"title":"CBMPeripheralDelegate Implementations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","isActive":true},{"type":"text","text":" call."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"text":"The peripheral providing this information.","type":"text"}]}]},{"name":"descriptor","content":[{"inlineContent":[{"text":"A ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"text":" object.","type":"text"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}],"type":"paragraph"}],"name":"error"}],"kind":"parameters"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-3xyb1":{"title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","kind":"symbol","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic descriptor."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2bu3j":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j","kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2bu3j"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-73y6k":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k","defaultImplementations":2,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-3xyb1"},{"type":"text","text":" call."}],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-73y6k","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-62302":{"title":"peripheral(_:didUpdateValueFor:error:)","role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw.json index 60147ae..a2db4b8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_16didWriteValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":" call,"},{"type":"text","text":" "},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" type is used."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-2aalw":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"text":"descriptor","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"languages":["swift"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw"]}],"metadata":{"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_16didWriteValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-2aalw":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"abstract":[],"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","abstract":[{"text":"This method returns the result of a ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","isActive":true,"type":"reference"},{"type":"text","text":" call,"},{"text":" ","type":"text"},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"text":" type is used.","type":"text"}],"title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv","defaultImplementations":2,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","defaultImplementations":2,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","isActive":true},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp","type":"topic","title":"peripheral(_:didWriteValueFor:error:)","required":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi.json index 53304bd..7f90a1d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_16didWriteValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":" call,"},{"type":"text","text":" "},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" type is used."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-3ghoi":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didWriteValueFor"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"platforms":["macOS"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi"},"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi"]}],"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didWriteValueFor:error:)","extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_16didWriteValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","abstract":[{"text":"This method returns the result of a ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","isActive":true,"type":"reference"},{"type":"text","text":" call,"},{"text":" ","type":"text"},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"text":" type is used.","type":"text"}],"title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv","defaultImplementations":2,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","defaultImplementations":2,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","isActive":true},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp","type":"topic","title":"peripheral(_:didWriteValueFor:error:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-3ghoi":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi","abstract":[],"title":"peripheral(_:didWriteValueFor:error:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv.json index 46eacee..7e158f5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"important","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"On iOS 10 this callback was also incorrectly called for"},{"type":"text","text":" "},{"type":"codeVoice","code":".withoutResponse"},{"type":"text","text":" type."}]}],"type":"aside","name":"Important"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":" call,"},{"type":"text","text":" "},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" type is used."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_16didWriteValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-3ghoi":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-2aalw":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":" call,"},{"type":"text","text":" "},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" type is used."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didWriteValueFor","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"inlineContent":[{"type":"text","text":"The peripheral providing this information."}],"type":"paragraph"}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"inlineContent":[{"text":"If an error occurred, the cause of the failure.","type":"text"}],"type":"paragraph"}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"content":[{"type":"paragraph","inlineContent":[{"text":"On iOS 10 this callback was also incorrectly called for","type":"text"},{"type":"text","text":" "},{"code":".withoutResponse","type":"codeVoice"},{"text":" type.","type":"text"}]}],"type":"aside","name":"Important","style":"important"}]}],"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi"],"title":"CBMPeripheralDelegate Implementations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"metadata":{"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"required":true,"title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_16didWriteValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF"},"kind":"symbol","abstract":[{"type":"text","text":"This method returns the result of a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"text":" call,","type":"text"},{"type":"text","text":" "},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" type is used."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","abstract":[{"text":"This method returns the result of a ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","isActive":true,"type":"reference"},{"type":"text","text":" call,"},{"text":" ","type":"text"},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"text":" type is used.","type":"text"}],"title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv","defaultImplementations":2,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-3ghoi":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi","abstract":[],"title":"peripheral(_:didWriteValueFor:error:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-2aalw":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"abstract":[],"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp.json index 5281005..5383000 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this information."}]}]},{"name":"descriptor","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If an error occurred, the cause of the failure."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)"},{"type":"text","text":" call."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_16didWriteValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-2aalw":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-3ghoi":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"parameters":[{"content":[{"inlineContent":[{"text":"The peripheral providing this information.","type":"text"}],"type":"paragraph"}],"name":"peripheral"},{"name":"descriptor","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":" object."}]}]},{"name":"error","content":[{"inlineContent":[{"text":"If an error occurred, the cause of the failure.","type":"text"}],"type":"paragraph"}]}],"kind":"parameters"}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","isActive":true},{"type":"text","text":" call."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp"]}],"metadata":{"required":true,"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP10peripheral_16didWriteValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","role":"symbol","title":"peripheral(_:didWriteValueFor:error:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","defaultImplementations":2,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","isActive":true},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp","type":"topic","title":"peripheral(_:didWriteValueFor:error:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-2aalw":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-2aalw","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"abstract":[],"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-3ghoi":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-3ghoi","abstract":[],"title":"peripheral(_:didWriteValueFor:error:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx.json index 4cdb762..56743f1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this update."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-klf8"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked when the name of peripheral changes."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheralDidUpdateName(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP23peripheralDidUpdateNameyyAA0D0_pF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-4r9dx":{"defaultImplementations":1,"role":"symbol","title":"peripheralDidUpdateName(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when the name of peripheral changes."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-klf8":{"role":"symbol","title":"peripheralDidUpdateName(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-klf8","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-klf8"}}} \ No newline at end of file +{"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked when the name of peripheral changes."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":")","kind":"text"}],"symbolKind":"method","title":"peripheralDidUpdateName(_:)","required":true,"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP23peripheralDidUpdateNameyyAA0D0_pF","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-klf8"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheralDidUpdateName","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}]}]},{"parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The peripheral providing this update.","type":"text"}]}],"name":"peripheral"}],"kind":"parameters"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-klf8":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-klf8","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidUpdateName"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-klf8","type":"topic","role":"symbol","title":"peripheralDidUpdateName(_:)","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-4r9dx":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidUpdateName"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","type":"topic","role":"symbol","defaultImplementations":1,"required":true,"title":"peripheralDidUpdateName(_:)","kind":"symbol","abstract":[{"text":"This method is invoked when the name of peripheral changes.","type":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8.json index 860baa6..d178b2e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-klf8"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-klf8","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheralDidUpdateName(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheralDidUpdateName(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE23peripheralDidUpdateNameyyAA0D0_pF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-4r9dx":{"defaultImplementations":1,"role":"symbol","title":"peripheralDidUpdateName(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked when the name of peripheral changes."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-klf8":{"role":"symbol","title":"peripheralDidUpdateName(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-klf8","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-klf8"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-klf8"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx"]]},"metadata":{"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE23peripheralDidUpdateNameyyAA0D0_pF","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidUpdateName"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"peripheralDidUpdateName(_:)","extendedModule":"CoreBluetoothMock"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheralDidUpdateName(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheralDidUpdateName","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-klf8"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-klf8":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-klf8","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidUpdateName"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-klf8","type":"topic","role":"symbol","title":"peripheralDidUpdateName(_:)","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralDidUpdateName(_:)-4r9dx":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidUpdateName"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralDidUpdateName(_:)-4r9dx","type":"topic","role":"symbol","defaultImplementations":1,"required":true,"title":"peripheralDidUpdateName(_:)","kind":"symbol","abstract":[{"text":"This method is invoked when the name of peripheral changes.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl.json index c9c1bc4..a139b2f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral providing this update."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":", when"},{"type":"text","text":" "},{"type":"text","text":"peripheral is again ready to send characteristic value updates."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP17peripheralIsReady26toSendWriteWithoutResponseyAA0D0_p_tF","required":true,"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i":{"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-2cz0i"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl":{"defaultImplementations":1,"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":", when"},{"type":"text","text":" "},{"type":"text","text":"peripheral is again ready to send characteristic value updates."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"]]},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"role":"symbol","platforms":[{"deprecated":false,"beta":false,"name":"iOS","unavailable":false,"introducedAt":"11.0"},{"unavailable":false,"deprecated":false,"introducedAt":"11.0","name":"tvOS","beta":false},{"deprecated":false,"beta":false,"name":"watchOS","introducedAt":"4.0","unavailable":false}],"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegateP17peripheralIsReady26toSendWriteWithoutResponseyAA0D0_p_tF","roleHeading":"Instance Method","title":"peripheralIsReady(toSendWriteWithoutResponse:)","modules":[{"name":"CoreBluetoothMock"}],"required":true,"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheralIsReady","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl"},"abstract":[{"text":"This method is invoked after a failed call to ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","type":"reference","isActive":true},{"text":", when","type":"text"},{"text":" ","type":"text"},{"text":"peripheral is again ready to send characteristic value updates.","type":"text"}],"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i"],"title":"CBMPeripheralDelegate Implementations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheralIsReady","kind":"identifier"},{"kind":"text","text":"("},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The peripheral providing this update."}],"type":"paragraph"}],"name":"peripheral"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl","abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"text":", when","type":"text"},{"type":"text","text":" "},{"text":"peripheral is again ready to send characteristic value updates.","type":"text"}],"defaultImplementations":1,"title":"peripheralIsReady(toSendWriteWithoutResponse:)","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheralIsReady","kind":"identifier"},{"text":"(","kind":"text"},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-2cz0i","abstract":[],"title":"peripheralIsReady(toSendWriteWithoutResponse:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i.json index 9162159..25f48ce 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-2cz0i"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheralIsReady(toSendWriteWithoutResponse:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE17peripheralIsReady26toSendWriteWithoutResponseyAA0D0_p_tF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl":{"defaultImplementations":1,"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":", when"},{"type":"text","text":" "},{"type":"text","text":"peripheral is again ready to send characteristic value updates."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i":{"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-2cz0i"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-2cz0i"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheralIsReady(toSendWriteWithoutResponse:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheralIsReady","kind":"identifier"},{"kind":"text","text":"("},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}]}]}],"metadata":{"extendedModule":"CoreBluetoothMock","role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE17peripheralIsReady26toSendWriteWithoutResponseyAA0D0_p_tF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"symbolKind":"method"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-2cz0i","abstract":[],"title":"peripheralIsReady(toSendWriteWithoutResponse:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-2cz0i","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl","abstract":[{"type":"text","text":"This method is invoked after a failed call to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"text":", when","type":"text"},{"type":"text","text":" "},{"text":"peripheral is again ready to send characteristic value updates.","type":"text"}],"defaultImplementations":1,"title":"peripheralIsReady(toSendWriteWithoutResponse:)","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheralIsReady(toSendWriteWithoutResponse:)-1nvtl","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheralIsReady","kind":"identifier"},{"text":"(","kind":"text"},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy.json index e1cac41..d64ceca 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"title":"CBMPeripheralDelegateProxy","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}]},"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverCharacteristics","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverDescriptors","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverIncludedServices","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverServices","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didModifyServices","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didReadRSSI","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateCharacteristicValue","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateDescriptorValue","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateName","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateNotificationState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteCharacteristicValue","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteDescriptorValue","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/isReadyToSendWriteWithoutResponse"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverCharacteristicsFor:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverDescriptorsFor:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverIncludedServicesFor:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didModifyServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didReadRSSI:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateNotificationStateFor:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-6bw1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-88um0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2fdon","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-9twsk","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralDidUpdateName(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralIsReady(toSendWriteWithoutResponse:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"],"generated":true}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"role":"collectionGroup","title":"CBMPeripheralDelegate Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didReadRSSI:error:)":{"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didReadRSSI:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didreadrssi:error:)"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverIncludedServices":{"role":"symbol","title":"didDiscoverIncludedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverIncludedServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverIncludedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverincludedservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-6bw1b":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-6bw1b","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-6bw1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverCharacteristicsFor:error:)":{"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverCharacteristicsFor:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscovercharacteristicsfor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/isReadyToSendWriteWithoutResponse":{"role":"symbol","title":"isReadyToSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReadyToSendWriteWithoutResponse"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/isReadyToSendWriteWithoutResponse","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/isreadytosendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateName":{"role":"symbol","title":"didUpdateName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateName"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateName","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatename"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateCharacteristicValue":{"role":"symbol","title":"didUpdateCharacteristicValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateCharacteristicValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateCharacteristicValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatecharacteristicvalue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateNotificationState":{"role":"symbol","title":"didUpdateNotificationState","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateNotificationState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateNotificationState","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatenotificationstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateNotificationStateFor:error:)":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateNotificationStateFor:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatenotificationstatefor:error:)"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverDescriptors":{"role":"symbol","title":"didDiscoverDescriptors","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverDescriptors"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverDescriptors","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverdescriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-2fdon":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2fdon","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2fdon"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheralIsReady(toSendWriteWithoutResponse:)":{"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralIsReady(toSendWriteWithoutResponse:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheralisready(tosendwritewithoutresponse:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didModifyServices":{"role":"symbol","title":"didModifyServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didModifyServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didModifyServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didmodifyservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didModifyServices:)":{"role":"symbol","title":"peripheral(_:didModifyServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didModifyServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didmodifyservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheralDidUpdateName(_:)":{"role":"symbol","title":"peripheralDidUpdateName(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralDidUpdateName(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheraldidupdatename(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverIncludedServicesFor:error:)":{"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverIncludedServicesFor:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverincludedservicesfor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didReadRSSI":{"role":"symbol","title":"didReadRSSI","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didReadRSSI"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didReadRSSI","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didreadrssi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverDescriptorsFor:error:)":{"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverDescriptorsFor:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverdescriptorsfor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-88um0":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-88um0","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-88um0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverCharacteristics":{"role":"symbol","title":"didDiscoverCharacteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverCharacteristics"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverCharacteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscovercharacteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateDescriptorValue":{"role":"symbol","title":"didUpdateDescriptorValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateDescriptorValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateDescriptorValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatedescriptorvalue"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didWriteDescriptorValue":{"role":"symbol","title":"didWriteDescriptorValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteDescriptorValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteDescriptorValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritedescriptorvalue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverServices":{"role":"symbol","title":"didDiscoverServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverservices"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverServices:)":{"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-9twsk":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-9twsk","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-9twsk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didWriteCharacteristicValue":{"role":"symbol","title":"didWriteCharacteristicValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteCharacteristicValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteCharacteristicValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritecharacteristicvalue"}}} \ No newline at end of file +{"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"sections":[],"metadata":{"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"roleHeading":"Class","role":"symbol","title":"CBMPeripheralDelegateProxy","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegateProxy","kind":"identifier"}],"symbolKind":"class"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegateProxy","kind":"identifier"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"overview","text":"Overview"},{"type":"aside","name":"See Also","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"}]}]}]}],"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverCharacteristics","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverDescriptors","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverIncludedServices","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverServices","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didModifyServices","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didReadRSSI","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateCharacteristicValue","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateDescriptorValue","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateName","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateNotificationState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteCharacteristicValue","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteDescriptorValue","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/isReadyToSendWriteWithoutResponse"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverCharacteristicsFor:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverDescriptorsFor:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverIncludedServicesFor:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didModifyServices:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didReadRSSI:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateNotificationStateFor:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-6bw1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-88um0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2fdon","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-9twsk","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralDidUpdateName(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralIsReady(toSendWriteWithoutResponse:)"],"title":"Instance Methods"},{"title":"Default Implementations","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]}],"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"title":"Inherited By","type":"inheritedBy","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"],"kind":"relationships"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","type":"conformsTo","title":"Conforms To"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","interfaceLanguage":"swift"},"abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverDescriptors":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverdescriptors","role":"symbol","type":"topic","title":"didDiscoverDescriptors","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"didDiscoverDescriptors","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverDescriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheralIsReady(toSendWriteWithoutResponse:)":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheralisready(tosendwritewithoutresponse:)","abstract":[],"role":"symbol","type":"topic","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"text":"(","kind":"text"},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralIsReady(toSendWriteWithoutResponse:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didModifyServices":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didmodifyservices","role":"symbol","type":"topic","title":"didModifyServices","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didModifyServices","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]) -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didModifyServices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-6bw1b":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-6bw1b","abstract":[],"role":"symbol","type":"topic","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-6bw1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverServices:)":{"abstract":[],"title":"peripheral(_:didDiscoverServices:)","type":"topic","kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverServices:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverservices:)"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-9twsk":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-9twsk","abstract":[],"role":"symbol","type":"topic","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-9twsk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverServices":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverservices","role":"symbol","type":"topic","title":"didDiscoverServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverServices"},{"text":": ((","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverServices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateName":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatename","abstract":[],"role":"symbol","type":"topic","title":"didUpdateName","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didUpdateName","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateName"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheralDidUpdateName(_:)":{"role":"symbol","title":"peripheralDidUpdateName(_:)","type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheraldidupdatename(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralDidUpdateName(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didModifyServices:)":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didmodifyservices:)","abstract":[],"role":"symbol","title":"peripheral(_:didModifyServices:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"])","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didModifyServices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didReadRSSI:error:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didReadRSSI:error:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didReadRSSI","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didReadRSSI:error:)","type":"topic","abstract":[],"kind":"symbol","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didreadrssi:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateCharacteristicValue":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatecharacteristicvalue","role":"symbol","type":"topic","title":"didUpdateCharacteristicValue","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateCharacteristicValue"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateCharacteristicValue"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject","title":"ObjectiveC.NSObject","type":"unresolvable"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-88um0":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-88um0","abstract":[],"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-88um0"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"kind":"article","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"CBMPeripheralDelegate Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateNotificationState":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didUpdateNotificationState","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}],"title":"didUpdateNotificationState","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatenotificationstate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateNotificationState","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didReadRSSI":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didReadRSSI"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?) -> ())?","kind":"text"}],"title":"didReadRSSI","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didreadrssi","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didReadRSSI","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateDescriptorValue":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didUpdateDescriptorValue","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}],"title":"didUpdateDescriptorValue","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatedescriptorvalue","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateDescriptorValue","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverIncludedServicesFor:error:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverincludedservicesfor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverIncludedServicesFor:error:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateNotificationStateFor:error:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didUpdateNotificationStateFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatenotificationstatefor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateNotificationStateFor:error:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverDescriptorsFor:error:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didDiscoverDescriptorsFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverdescriptorsfor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverDescriptorsFor:error:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverCharacteristics":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didDiscoverCharacteristics","kind":"identifier"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"title":"didDiscoverCharacteristics","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscovercharacteristics","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverCharacteristics","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didWriteDescriptorValue":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didWriteDescriptorValue"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"title":"didWriteDescriptorValue","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritedescriptorvalue","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteDescriptorValue","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverCharacteristicsFor:error:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscovercharacteristicsfor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverCharacteristicsFor:error:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didWriteCharacteristicValue":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didWriteCharacteristicValue"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?) -> ())?","kind":"text"}],"title":"didWriteCharacteristicValue","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritecharacteristicvalue","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteCharacteristicValue","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/isReadyToSendWriteWithoutResponse":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isReadyToSendWriteWithoutResponse","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":") -> ())?","kind":"text"}],"title":"isReadyToSendWriteWithoutResponse","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/isreadytosendwritewithoutresponse","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/isReadyToSendWriteWithoutResponse","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverIncludedServices":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didDiscoverIncludedServices"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}],"title":"didDiscoverIncludedServices","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverincludedservices","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverIncludedServices","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-2fdon":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didWriteValueFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2fdon","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2fdon","kind":"symbol","type":"topic","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations.json index a45f650..7885a0f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didOpen:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-7ocld","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-nw91","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2gkk4","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-eh78"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"CBMPeripheralDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-2gkk4":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2gkk4","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2gkk4"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-nw91":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-nw91","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-nw91"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-eh78":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-eh78","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-eh78"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didOpen:error:)":{"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didOpen:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didopen:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-7ocld":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-7ocld","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-7ocld"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"kind":"article","topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didOpen:error:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-7ocld","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-nw91","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2gkk4","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-eh78"],"generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations"]}],"metadata":{"role":"collectionGroup","title":"CBMPeripheralDelegate Implementations","modules":[{"name":"CoreBluetoothMock"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-7ocld":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-7ocld","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-7ocld","title":"peripheral(_:didUpdateValueFor:error:)","abstract":[],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-eh78":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-eh78","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-eh78","type":"topic","role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-nw91":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-nw91","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-nw91","title":"peripheral(_:didUpdateValueFor:error:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didOpen:error:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didOpen","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"text":"?, ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didOpen:error:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didopen:error:)","title":"peripheral(_:didOpen:error:)","abstract":[],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-2gkk4":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2gkk4","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2gkk4","title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics.json index 7610140..c05facd 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverCharacteristics"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscovercharacteristics"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverCharacteristics","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverCharacteristics"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didDiscoverCharacteristics","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC26didDiscoverCharacteristicsyAA0D0_p_AA10CBMServiceCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverCharacteristics":{"role":"symbol","title":"didDiscoverCharacteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverCharacteristics"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverCharacteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscovercharacteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"didDiscoverCharacteristics","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?) -> ())?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"property","title":"didDiscoverCharacteristics","roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC26didDiscoverCharacteristicsyAA0D0_p_AA10CBMServiceCs5Error_pSgtcSgvp"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverCharacteristics"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didDiscoverCharacteristics","kind":"identifier"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscovercharacteristics"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverCharacteristics":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didDiscoverCharacteristics","kind":"identifier"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"title":"didDiscoverCharacteristics","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscovercharacteristics","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverCharacteristics","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors.json index 09a5776..6eb9df4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverDescriptors"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverdescriptors"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverDescriptors","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverDescriptors"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didDiscoverDescriptors","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC22didDiscoverDescriptorsyAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverDescriptors":{"role":"symbol","title":"didDiscoverDescriptors","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverDescriptors"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverDescriptors","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverdescriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didDiscoverDescriptors","kind":"identifier"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverDescriptors"},"metadata":{"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC22didDiscoverDescriptorsyAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtcSgvp","title":"didDiscoverDescriptors","roleHeading":"Instance Property","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"didDiscoverDescriptors","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverdescriptors"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverDescriptors":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverdescriptors","role":"symbol","type":"topic","title":"didDiscoverDescriptors","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"didDiscoverDescriptors","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverDescriptors"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices.json index b4a1dc4..d15f6d0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverIncludedServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverincludedservices"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverIncludedServices","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverIncludedServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didDiscoverIncludedServices","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC27didDiscoverIncludedServicesyAA0D0_p_AA10CBMServiceCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverIncludedServices":{"role":"symbol","title":"didDiscoverIncludedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverIncludedServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverIncludedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverincludedservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverIncludedServices"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"didDiscoverIncludedServices","kind":"identifier"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverincludedservices"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"metadata":{"symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}],"title":"didDiscoverIncludedServices","roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC27didDiscoverIncludedServicesyAA0D0_p_AA10CBMServiceCs5Error_pSgtcSgvp","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didDiscoverIncludedServices","kind":"identifier"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier","text":"CBMService"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}]},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverIncludedServices":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didDiscoverIncludedServices"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}],"title":"didDiscoverIncludedServices","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverincludedservices","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverIncludedServices","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices.json index 26ce9c6..849b8c2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverservices"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverServices","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didDiscoverServices","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC19didDiscoverServicesyAA0D0_p_s5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverServices":{"role":"symbol","title":"didDiscoverServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverServices","interfaceLanguage":"swift"},"sections":[],"metadata":{"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"didDiscoverServices","kind":"identifier"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"didDiscoverServices","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC19didDiscoverServicesyAA0D0_p_s5Error_pSgtcSgvp","role":"symbol","symbolKind":"property"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverServices"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?) -> ())?","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverservices"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didDiscoverServices":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverservices","role":"symbol","type":"topic","title":"didDiscoverServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didDiscoverServices"},{"text":": ((","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didDiscoverServices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices.json index 0fc098a..fc5a3df 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didModifyServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"]) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didmodifyservices"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didModifyServices","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didModifyServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]) -> ())?"}],"title":"didModifyServices","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC17didModifyServicesyAA0D0_p_SayAA10CBMServiceCGtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didModifyServices":{"role":"symbol","title":"didModifyServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didModifyServices"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didModifyServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didmodifyservices"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didModifyServices"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"metadata":{"roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didModifyServices","kind":"identifier"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", ["},{"text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ())?"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"didModifyServices","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC17didModifyServicesyAA0D0_p_SayAA10CBMServiceCGtcSgvp","role":"symbol","symbolKind":"property"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didmodifyservices"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didModifyServices","kind":"identifier"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","text":"CBMService"},{"text":"]) -> ())?","kind":"text"}]}]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didModifyServices":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didmodifyservices","role":"symbol","type":"topic","title":"didModifyServices","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didModifyServices","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]) -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didModifyServices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi.json index 62da558..84a2944 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didReadRSSI"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didreadrssi"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didReadRSSI","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didReadRSSI"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didReadRSSI","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC11didReadRSSIyAA0D0_p_So8NSNumberCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didReadRSSI":{"role":"symbol","title":"didReadRSSI","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didReadRSSI"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didReadRSSI","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didreadrssi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didReadRSSI","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didReadRSSI"},{"text":": ((","kind":"text"},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didreadrssi"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC11didReadRSSIyAA0D0_p_So8NSNumberCs5Error_pSgtcSgvp","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didReadRSSI"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"property","title":"didReadRSSI","role":"symbol"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didReadRSSI":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didReadRSSI"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?) -> ())?","kind":"text"}],"title":"didReadRSSI","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didreadrssi","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didReadRSSI","kind":"symbol","type":"topic","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue.json index 572c83f..266a9d8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateCharacteristicValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatecharacteristicvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateCharacteristicValue","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateCharacteristicValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didUpdateCharacteristicValue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC28didUpdateCharacteristicValueyAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateCharacteristicValue":{"role":"symbol","title":"didUpdateCharacteristicValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateCharacteristicValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateCharacteristicValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatecharacteristicvalue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didUpdateCharacteristicValue","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?) -> ())?"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateCharacteristicValue"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatecharacteristicvalue"]}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Property","role":"symbol","symbolKind":"property","title":"didUpdateCharacteristicValue","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC28didUpdateCharacteristicValueyAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtcSgvp","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateCharacteristicValue"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateCharacteristicValue":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatecharacteristicvalue","role":"symbol","type":"topic","title":"didUpdateCharacteristicValue","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateCharacteristicValue"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateCharacteristicValue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue.json index abbc3ee..de10f50 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateDescriptorValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatedescriptorvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateDescriptorValue","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateDescriptorValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didUpdateDescriptorValue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC24didUpdateDescriptorValueyAA0D0_p_AA13CBMDescriptorCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateDescriptorValue":{"role":"symbol","title":"didUpdateDescriptorValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateDescriptorValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateDescriptorValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatedescriptorvalue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateDescriptorValue"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateDescriptorValue"},{"kind":"text","text":": (("},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?) -> ())?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"sections":[],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC24didUpdateDescriptorValueyAA0D0_p_AA13CBMDescriptorCs5Error_pSgtcSgvp","role":"symbol","symbolKind":"property","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didUpdateDescriptorValue","kind":"identifier"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"title":"didUpdateDescriptorValue"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatedescriptorvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateDescriptorValue":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didUpdateDescriptorValue","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}],"title":"didUpdateDescriptorValue","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatedescriptorvalue","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateDescriptorValue","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename.json index 4736fa9..d2986c8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateName"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":") -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatename"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateName","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateName"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"title":"didUpdateName","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC13didUpdateNameyAA0D0_pcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateName":{"role":"symbol","title":"didUpdateName","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateName"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateName","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatename"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didUpdateName","kind":"identifier"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":") -> ())?","kind":"text"}]}]}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatename"]}],"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didUpdateName"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"didUpdateName","role":"symbol","symbolKind":"property","roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC13didUpdateNameyAA0D0_pcSgvp"},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateName","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateName":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatename","abstract":[],"role":"symbol","type":"topic","title":"didUpdateName","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didUpdateName","kind":"identifier"},{"text":": ((","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateName"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate.json index 35f2ce7..dfda61e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateNotificationState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatenotificationstate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateNotificationState","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateNotificationState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didUpdateNotificationState","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC26didUpdateNotificationStateyAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateNotificationState":{"role":"symbol","title":"didUpdateNotificationState","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateNotificationState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateNotificationState","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatenotificationstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"didUpdateNotificationState"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?) -> ())?"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC26didUpdateNotificationStateyAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtcSgvp","symbolKind":"property","title":"didUpdateNotificationState"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateNotificationState"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didUpdateNotificationState","kind":"identifier"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatenotificationstate"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didUpdateNotificationState":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"didUpdateNotificationState","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}],"title":"didUpdateNotificationState","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatenotificationstate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didUpdateNotificationState","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue.json index 8e631e6..7d74802 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteCharacteristicValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritecharacteristicvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteCharacteristicValue","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteCharacteristicValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didWriteCharacteristicValue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC27didWriteCharacteristicValueyAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didWriteCharacteristicValue":{"role":"symbol","title":"didWriteCharacteristicValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteCharacteristicValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteCharacteristicValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritecharacteristicvalue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteCharacteristicValue"},"sections":[],"metadata":{"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteCharacteristicValue"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"didWriteCharacteristicValue","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC27didWriteCharacteristicValueyAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtcSgvp","role":"symbol","symbolKind":"property"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"didWriteCharacteristicValue","kind":"identifier"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritecharacteristicvalue"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didWriteCharacteristicValue":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didWriteCharacteristicValue"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?) -> ())?","kind":"text"}],"title":"didWriteCharacteristicValue","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritecharacteristicvalue","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteCharacteristicValue","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue.json index cfc5a37..d541c8c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteDescriptorValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritedescriptorvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteDescriptorValue","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteDescriptorValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"title":"didWriteDescriptorValue","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC23didWriteDescriptorValueyAA0D0_p_AA13CBMDescriptorCs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didWriteDescriptorValue":{"role":"symbol","title":"didWriteDescriptorValue","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteDescriptorValue"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteDescriptorValue","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritedescriptorvalue"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritedescriptorvalue"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didWriteDescriptorValue"},{"text":": ((","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}]}]}],"metadata":{"roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didWriteDescriptorValue"},{"text":": ((","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?) -> ())?"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"didWriteDescriptorValue","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC23didWriteDescriptorValueyAA0D0_p_AA13CBMDescriptorCs5Error_pSgtcSgvp","role":"symbol","symbolKind":"property"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteDescriptorValue","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/didWriteDescriptorValue":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didWriteDescriptorValue"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?) -> ())?","kind":"text"}],"title":"didWriteDescriptorValue","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritedescriptorvalue","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/didWriteDescriptorValue","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse.json index bdc8989..b3612a8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReadyToSendWriteWithoutResponse"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":") -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/isreadytosendwritewithoutresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/isReadyToSendWriteWithoutResponse","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReadyToSendWriteWithoutResponse"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"title":"isReadyToSendWriteWithoutResponse","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC33isReadyToSendWriteWithoutResponseyAA0D0_pcSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/isReadyToSendWriteWithoutResponse":{"role":"symbol","title":"isReadyToSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isReadyToSendWriteWithoutResponse"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":") -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/isReadyToSendWriteWithoutResponse","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/isreadytosendwritewithoutresponse"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isReadyToSendWriteWithoutResponse"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":") -> ())?","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"metadata":{"role":"symbol","title":"isReadyToSendWriteWithoutResponse","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC33isReadyToSendWriteWithoutResponseyAA0D0_pcSgvp","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isReadyToSendWriteWithoutResponse","kind":"identifier"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":") -> ())?","kind":"text"}]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/isreadytosendwritewithoutresponse"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/isReadyToSendWriteWithoutResponse"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/isReadyToSendWriteWithoutResponse":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isReadyToSendWriteWithoutResponse","kind":"identifier"},{"kind":"text","text":": (("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":") -> ())?","kind":"text"}],"title":"isReadyToSendWriteWithoutResponse","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/isreadytosendwritewithoutresponse","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/isReadyToSendWriteWithoutResponse","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:).json index b2b97f1..a7a83bd 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscovercharacteristicsfor:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverCharacteristicsFor:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverCharacteristicsFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_29didDiscoverCharacteristicsFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverCharacteristicsFor:error:)":{"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverCharacteristicsFor:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscovercharacteristicsfor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"}}} \ No newline at end of file +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverCharacteristicsFor:error:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscovercharacteristicsfor:error:)"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"text":" ","kind":"text"},{"text":"service","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"platforms":["macOS"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverCharacteristicsFor:error:)"},"sections":[],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_29didDiscoverCharacteristicsFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"symbolKind":"method"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverCharacteristicsFor:error:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscovercharacteristicsfor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverCharacteristicsFor:error:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:).json index 6e9da2a..eb0b4da 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverdescriptorsfor:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverDescriptorsFor:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverDescriptorsFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didDiscoverDescriptorsFor:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_25didDiscoverDescriptorsFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverDescriptorsFor:error:)":{"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverDescriptorsFor:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverdescriptorsfor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverdescriptorsfor:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverDescriptorsFor:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverDescriptorsFor:error:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"title":"peripheral(_:didDiscoverDescriptorsFor:error:)","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_25didDiscoverDescriptorsFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}]},"kind":"symbol","sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverDescriptorsFor:error:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didDiscoverDescriptorsFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverdescriptorsfor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverDescriptorsFor:error:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:).json index 8d7d73b..462d5ff 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverincludedservicesfor:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverIncludedServicesFor:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverIncludedServicesFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_30didDiscoverIncludedServicesFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverIncludedServicesFor:error:)":{"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverIncludedServicesFor:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverincludedservicesfor:error:)"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"kind":"text","text":", "},{"text":"didDiscoverIncludedServicesFor","kind":"externalParam"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didDiscoverIncludedServicesFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_30didDiscoverIncludedServicesFor5erroryAA0D0_p_AA10CBMServiceCs5Error_pSgtF","roleHeading":"Instance Method","symbolKind":"method"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverIncludedServicesFor:error:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverIncludedServicesFor:error:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverincludedservicesfor:error:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverIncludedServicesFor:error:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverincludedservicesfor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverIncludedServicesFor:error:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:).json index 28dd502..8a687a5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverservices:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverServices:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverServices:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didDiscoverServices:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_19didDiscoverServicesyAA0D0_p_s5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverServices:)":{"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverservices:)"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverservices:)"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didDiscoverServices","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}]}],"kind":"declarations"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverServices:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didDiscoverServices:)"},{"text":".","type":"text"}],"metadata":{"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_19didDiscoverServicesyAA0D0_p_s5Error_pSgtF","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didDiscoverServices:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didDiscoverServices:)":{"abstract":[],"title":"peripheral(_:didDiscoverServices:)","type":"topic","kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didDiscoverServices:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheral","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral","title":"CBMPeripheral","kind":"symbol","abstract":[{"type":"text","text":"A remote peripheral device."}],"navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:).json index d9d3994..f143639 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"invalidatedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didmodifyservices:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didModifyServices:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didModifyServices:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"title":"peripheral(_:didModifyServices:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_17didModifyServicesyAA0D0_p_SayAA10CBMServiceCGtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didModifyServices:)":{"role":"symbol","title":"peripheral(_:didModifyServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didModifyServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didmodifyservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"}}} \ No newline at end of file +{"metadata":{"title":"peripheral(_:didModifyServices:)","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_17didModifyServicesyAA0D0_p_SayAA10CBMServiceCGtF","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didModifyServices","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"kind":"text","text":"])"}]},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didmodifyservices:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didModifyServices:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didModifyServices:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":" "},{"kind":"internalParam","text":"invalidatedServices"},{"kind":"text","text":": ["},{"text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didModifyServices:)":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didmodifyservices:)","abstract":[],"role":"symbol","title":"peripheral(_:didModifyServices:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didModifyServices"},{"kind":"text","text":": ["},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"])","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didModifyServices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:).json index 6ac07b5..e6dcf56 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":" "},{"kind":"internalParam","text":"channel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didopen:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didOpen:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didOpen:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didOpen:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_7didOpen5erroryAA0D0_p_So14CBL2CAPChannelCSgs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","extendedModule":"CoreBluetoothMock","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"role":"collectionGroup","title":"CBMPeripheralDelegate Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didOpen:error:)":{"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didOpen:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didopen:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didopen:error:)"]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"text":" ","kind":"text"},{"text":"channel","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBML2CAPChannel","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"11.0"},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"11.0","unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"4.0"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didOpen","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","kind":"typeIdentifier","text":"CBML2CAPChannel"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didOpen:error:)","extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_7didOpen5erroryAA0D0_p_So14CBL2CAPChannelCSgs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","symbolKind":"method"},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didOpen:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didOpen:error:)"},{"text":".","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"kind":"article","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"CBMPeripheralDelegate Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didOpen:error:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didOpen","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"text":"?, ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didOpen:error:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didopen:error:)","title":"peripheral(_:didOpen:error:)","abstract":[],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:).json index e015d96..ecb856f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":" "},{"kind":"internalParam","text":"RSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didreadrssi:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didReadRSSI:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didReadRSSI:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didReadRSSI:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_11didReadRSSI5erroryAA0D0_p_So8NSNumberCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didReadRSSI:error:)":{"role":"symbol","title":"peripheral(_:didReadRSSI:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReadRSSI"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSNumber","preciseIdentifier":"c:objc(cs)NSNumber"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didReadRSSI:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didreadrssi:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReadRSSI","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"RSSI","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didreadrssi:error:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didReadRSSI:error:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","metadata":{"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_11didReadRSSI5erroryAA0D0_p_So8NSNumberCs5Error_pSgtF","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didReadRSSI","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSNumber","text":"NSNumber","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didReadRSSI:error:)","symbolKind":"method","role":"symbol","modules":[{"name":"CoreBluetoothMock"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didReadRSSI:error:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didReadRSSI:error:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didReadRSSI:error:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didReadRSSI","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"NSNumber","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSNumber"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didReadRSSI:error:)","type":"topic","abstract":[],"kind":"symbol","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didreadrssi:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:).json index 362e296..510147f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatenotificationstatefor:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateNotificationStateFor:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateNotificationStateFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didUpdateNotificationStateFor:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_29didUpdateNotificationStateFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateNotificationStateFor:error:)":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateNotificationStateFor:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatenotificationstatefor:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatenotificationstatefor:error:)"]}],"metadata":{"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_29didUpdateNotificationStateFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didUpdateNotificationStateFor:error:)","symbolKind":"method","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateNotificationStateFor:error:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateNotificationStateFor:error:)"},{"text":".","type":"text"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateNotificationStateFor:error:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didUpdateNotificationStateFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatenotificationstatefor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateNotificationStateFor:error:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b.json index 650e1d0..43ed2f6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-6bw1b"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-6bw1b","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateValueFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didUpdateValueFor:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-6bw1b":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-6bw1b","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-6bw1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":" "},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-6bw1b","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-6bw1b"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didUpdateValueFor:error:)","symbolKind":"method","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralDelegate.peripheral(_:didUpdateValueFor:error:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-6bw1b":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-6bw1b","abstract":[],"role":"symbol","type":"topic","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-6bw1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld.json index 2f15f27..0c0a618 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-7ocld"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-7ocld","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateValueFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-7ocld":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-7ocld","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-7ocld"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"role":"collectionGroup","title":"CBMPeripheralDelegate Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralDelegate.peripheral(_:didUpdateValueFor:error:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"title":"peripheral(_:didUpdateValueFor:error:)","extendedModule":"CoreBluetoothMock","symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"role":"symbol","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-7ocld","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-7ocld"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-7ocld":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-7ocld","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-7ocld","title":"peripheral(_:didUpdateValueFor:error:)","abstract":[],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"kind":"article","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"CBMPeripheralDelegate Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0.json index 72d97f0..c25bf57 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-88um0"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-88um0","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateValueFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didUpdateValueFor:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-88um0":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-88um0","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-88um0"}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-88um0"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-88um0"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateValueFor:error:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"role":"symbol","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","title":"peripheral(_:didUpdateValueFor:error:)","symbolKind":"method"},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-88um0":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-88um0","abstract":[],"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-88um0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91.json index 48e8388..3d3fd4e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-nw91"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-nw91","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateValueFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"role":"collectionGroup","title":"CBMPeripheralDelegate Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-nw91":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-nw91","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-nw91"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-nw91"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-nw91","interfaceLanguage":"swift"},"metadata":{"title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"role":"symbol","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_17didUpdateValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock"},"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didUpdateValueFor:error:)"},{"text":".","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"kind":"article","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"CBMPeripheralDelegate Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didUpdateValueFor:error:)-nw91":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didUpdateValueFor:error:)-nw91","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-nw91","title":"peripheral(_:didUpdateValueFor:error:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon.json index f147b90..b5ef873 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2fdon"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2fdon","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didWriteValueFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didWriteValueFor:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_16didWriteValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-2fdon":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2fdon","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2fdon"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2fdon"]}],"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2fdon"},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier","text":"CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"method","title":"peripheral(_:didWriteValueFor:error:)","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_16didWriteValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF","roleHeading":"Instance Method"},"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralDelegate.peripheral(_:didWriteValueFor:error:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-2fdon":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didWriteValueFor:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2fdon","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2fdon","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4.json index 4d66867..4559dbc 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2gkk4"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2gkk4","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didWriteValueFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_16didWriteValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-2gkk4":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2gkk4","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2gkk4"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"role":"collectionGroup","title":"CBMPeripheralDelegate Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"sections":[],"metadata":{"externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_16didWriteValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","extendedModule":"CoreBluetoothMock","roleHeading":"Instance Method","title":"peripheral(_:didWriteValueFor:error:)","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}]},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2gkk4","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didWriteValueFor:error:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2gkk4"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-2gkk4":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-2gkk4","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2gkk4","title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"kind":"article","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"CBMPeripheralDelegate Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk.json index d2c60b4..61c9e15 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-9twsk"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-9twsk","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didWriteValueFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didWriteValueFor:error:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_16didWriteValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-9twsk":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-9twsk","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-9twsk"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-9twsk","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-9twsk"]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didWriteValueFor:error:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"platforms":["macOS"]}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didWriteValueFor:error:)","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC10peripheral_16didWriteValueFor5erroryAA0D0_p_AA17CBMCharacteristicCs5Error_pSgtF"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-9twsk":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-9twsk","abstract":[],"role":"symbol","type":"topic","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"didWriteValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-9twsk"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78.json index 271fd6f..5bc7a09 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-eh78"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-eh78","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didWriteValueFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_16didWriteValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-eh78":{"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-eh78","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-eh78"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"role":"collectionGroup","title":"CBMPeripheralDelegate Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didWriteValueFor"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-eh78"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-eh78"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"modules":[{"name":"CoreBluetoothMock"}],"extendedModule":"CoreBluetoothMock","role":"symbol","symbolKind":"method","title":"peripheral(_:didWriteValueFor:error:)","externalID":"s:17CoreBluetoothMock21CBMPeripheralDelegatePAAE10peripheral_16didWriteValueFor5erroryAA0D0_p_AA13CBMDescriptorCs5Error_pSgtF::SYNTHESIZED::c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxy","roleHeading":"Instance Method"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheral(_:didWriteValueFor:error:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/CBMPeripheralDelegate-Implementations":{"kind":"article","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"CBMPeripheralDelegate Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/CBMPeripheralDelegate-Implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheral(_:didWriteValueFor:error:)-eh78":{"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-eh78","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheral(_:didWriteValueFor:error:)-eh78","type":"topic","role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:).json index c184d6c..df87481 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheraldidupdatename(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralDidUpdateName(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheralDidUpdateName(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"title":"peripheralDidUpdateName(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC23peripheralDidUpdateNameyyAA0D0_pF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheralDidUpdateName(_:)":{"role":"symbol","title":"peripheralDidUpdateName(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralDidUpdateName(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheraldidupdatename(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralDidUpdateName(_:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralDelegate.peripheralDidUpdateName(_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC23peripheralDidUpdateNameyyAA0D0_pF","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"peripheralDidUpdateName(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheralDidUpdateName","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":")","kind":"text"}],"symbolKind":"method","roleHeading":"Instance Method"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheralDidUpdateName","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":")","kind":"text"}]}],"kind":"declarations"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheraldidupdatename(_:)"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheralDidUpdateName(_:)":{"role":"symbol","title":"peripheralDidUpdateName(_:)","type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheraldidupdatename(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidUpdateName"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralDidUpdateName(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:).json index 0482de7..d8d30ad 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheralisready(tosendwritewithoutresponse:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralIsReady(toSendWriteWithoutResponse:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralDelegate.peripheralIsReady(toSendWriteWithoutResponse:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"title":"peripheralIsReady(toSendWriteWithoutResponse:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC17peripheralIsReady26toSendWriteWithoutResponseyAA0D0_p_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheralIsReady(toSendWriteWithoutResponse:)":{"role":"symbol","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"kind":"text","text":"("},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralIsReady(toSendWriteWithoutResponse:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheralisready(tosendwritewithoutresponse:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"}}} \ No newline at end of file +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralDelegate.peripheralIsReady(toSendWriteWithoutResponse:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheralisready(tosendwritewithoutresponse:)"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"toSendWriteWithoutResponse"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"text":")","kind":"text"}]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralIsReady(toSendWriteWithoutResponse:)"},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralIsReady"},{"text":"(","kind":"text"},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"title":"peripheralIsReady(toSendWriteWithoutResponse:)","externalID":"s:17CoreBluetoothMock26CBMPeripheralDelegateProxyC17peripheralIsReady26toSendWriteWithoutResponseyAA0D0_p_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy/peripheralIsReady(toSendWriteWithoutResponse:)":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheralisready(tosendwritewithoutresponse:)","abstract":[],"role":"symbol","type":"topic","title":"peripheralIsReady(toSendWriteWithoutResponse:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralIsReady"},{"text":"(","kind":"text"},{"text":"toSendWriteWithoutResponse","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy\/peripheralIsReady(toSendWriteWithoutResponse:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel.json index c3af786..498c191 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","roleHeading":"Class","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxyWithL2CAPChannel","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/didOpenChannel"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/peripheral(_:didOpen:error:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This class differs from "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"},{"type":"text","text":" that it also contains callbacks added in iOS 11."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel/didOpenChannel":{"role":"symbol","title":"didOpenChannel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didOpenChannel"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/didOpenChannel","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/didopenchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel/peripheral(_:didOpen:error:)":{"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/peripheral(_:didOpen:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/peripheral(_:didopen:error:)"}}} \ No newline at end of file +{"metadata":{"symbolKind":"class","roleHeading":"Class","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralDelegateProxyWithL2CAPChannel","platforms":[{"introducedAt":"11.0","beta":false,"unavailable":false,"name":"iOS","deprecated":false},{"unavailable":false,"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"11.0"},{"beta":false,"name":"watchOS","introducedAt":"4.0","unavailable":false,"deprecated":false}]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/didOpenChannel"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/peripheral(_:didOpen:error:)"]}],"relationshipsSections":[{"kind":"relationships","title":"Inherits From","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"],"type":"inheritsFrom"},{"kind":"relationships","type":"conformsTo","title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"anchor":"overview","type":"heading","text":"Overview","level":2},{"inlineContent":[{"type":"text","text":"This class differs from "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"},{"type":"text","text":" that it also contains callbacks added in iOS 11."}],"type":"paragraph"},{"type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy"}]}],"name":"See Also"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"},"abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true,"title":"Peripheral"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"kind":"symbol","sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel/peripheral(_:didOpen:error:)":{"title":"peripheral(_:didOpen:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/peripheral(_:didopen:error:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/peripheral(_:didOpen:error:)","type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didOpen","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"text":"?, ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel/didOpenChannel":{"title":"didOpenChannel","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/didopenchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/didOpenChannel","type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didOpenChannel"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"text":"?, ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel.json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel.json index 958656d..459c2d4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didOpenChannel"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"kind":"text","text":"?, "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/didopenchannel"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/didOpenChannel","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"didOpenChannel","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didOpenChannel"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock42CBMPeripheralDelegateProxyWithL2CAPChannelC14didOpenChannelyAA0D0_p_So04CBL2I0CSgs5Error_pSgtcSgvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel/didOpenChannel":{"role":"symbol","title":"didOpenChannel","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"didOpenChannel"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> ())?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/didOpenChannel","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/didopenchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"didOpenChannel","kind":"identifier"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":"?) -> ())?","kind":"text"}],"title":"didOpenChannel","platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"11.0","unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"11.0"},{"unavailable":false,"introducedAt":"4.0","name":"watchOS","deprecated":false,"beta":false}],"externalID":"s:17CoreBluetoothMock42CBMPeripheralDelegateProxyWithL2CAPChannelC14didOpenChannelyAA0D0_p_So04CBL2I0CSgs5Error_pSgtcSgvp","symbolKind":"property","role":"symbol"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/didOpenChannel"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"didOpenChannel","kind":"identifier"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?) -> ())?","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/didopenchannel"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel/didOpenChannel":{"title":"didOpenChannel","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/didopenchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/didOpenChannel","type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"didOpenChannel"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"text":"?, ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?) -> ())?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:).json b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:).json index 9217681..f92a79b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":" "},{"kind":"internalParam","text":"channel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/peripheral(_:didopen:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/peripheral(_:didOpen:error:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didOpen:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock42CBMPeripheralDelegateProxyWithL2CAPChannelC10peripheral_7didOpen5erroryAA0D0_p_So04CBL2I0CSgs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel/peripheral(_:didOpen:error:)":{"role":"symbol","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didOpen"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBML2CAPChannel","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/peripheral(_:didOpen:error:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/peripheral(_:didopen:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"}}} \ No newline at end of file +{"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/peripheral(_:didopen:error:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didOpen","kind":"externalParam"},{"kind":"text","text":" "},{"text":"channel","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBML2CAPChannel","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela"},{"kind":"text","text":"?, "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/peripheral(_:didOpen:error:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Instance Method","title":"peripheral(_:didOpen:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didOpen","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"text":"?, ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock42CBMPeripheralDelegateProxyWithL2CAPChannelC10peripheral_7didOpen5erroryAA0D0_p_So04CBL2I0CSgs5Error_pSgtF","role":"symbol","platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"11.0","unavailable":false},{"beta":false,"introducedAt":"11.0","name":"tvOS","unavailable":false,"deprecated":false},{"beta":false,"unavailable":false,"deprecated":false,"name":"watchOS","introducedAt":"4.0"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel/peripheral(_:didOpen:error:)":{"title":"peripheral(_:didOpen:error:)","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/peripheral(_:didopen:error:)","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel\/peripheral(_:didOpen:error:)","type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"text":", ","kind":"text"},{"text":"didOpen","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock15CBML2CAPChannela","text":"CBML2CAPChannel"},{"text":"?, ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock.json index bd201a7..09c4e97 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"title":"CBMPeripheralMock","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralMock","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}]},"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/ancsAuthorized","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/canSendWriteWithoutResponse","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/hash","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/services","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/state"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverCharacteristics(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverDescriptors(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/openL2CAPChannel(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readRSSI()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-29us6","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-9on43","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/setNotifyValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:type:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This implementation will be used when creating peripherals by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Unless required, this class should not be accessed directly, but rather by the common protocol "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverDescriptors(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/hash":{"role":"symbol","title":"hash","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/hash","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/hash"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverServices(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverIncludedServices(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/ancsAuthorized":{"role":"symbol","title":"ancsAuthorized","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/ancsAuthorized","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/ancsauthorized"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/setNotifyValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readValue(for:)-29us6":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-29us6","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-29us6"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readValue(for:)-9on43":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-9on43","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-9on43"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/state"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverCharacteristics(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/openL2CAPChannel(_:)":{"role":"symbol","title":"openL2CAPChannel(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/openL2CAPChannel(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/openl2capchannel(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:type:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/maximumWriteValueLength(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readRSSI()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/canSendWriteWithoutResponse","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/delegate"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"}}} \ No newline at end of file +{"abstract":[{"text":"Mock implementation of the ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock"]}],"metadata":{"title":"CBMPeripheralMock","navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"class","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralMock","kind":"identifier"}],"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralMock","roleHeading":"Class"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralMock"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"level":2,"text":"Overview","type":"heading","anchor":"overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This implementation will be used when creating peripherals by "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","isActive":true,"type":"reference"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Unless required, this class should not be accessed directly, but rather by the common protocol "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","type":"reference"},{"type":"text","text":"."}]}]}],"seeAlsoSections":[{"generated":true,"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"]}],"relationshipsSections":[{"title":"Inherits From","type":"inheritsFrom","kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer"]},{"title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","type":"conformsTo"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/ancsAuthorized","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/canSendWriteWithoutResponse","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/hash","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/services","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/state"],"title":"Instance Properties"},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverCharacteristics(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverDescriptors(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/openL2CAPChannel(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readRSSI()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-29us6","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-9on43","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/setNotifyValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:type:)"]}],"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverIncludedServices(_:for:)":{"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverIncludedServices(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/name":{"type":"topic","kind":"symbol","title":"name","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/name","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/name","role":"symbol","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readValue(for:)-9on43":{"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-9on43","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-9on43","title":"readValue(for:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/setNotifyValue(_:for:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/setNotifyValue(_:for:)","title":"setNotifyValue(_:for:)","abstract":[],"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/setnotifyvalue(_:for:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setNotifyValue"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readValue(for:)-29us6":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-29us6","role":"symbol","title":"readValue(for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-29us6","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverServices(_:)":{"kind":"symbol","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverServices(_:)","title":"discoverServices(_:)","role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverservices(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"text":"([","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/writeValue(_:for:)":{"type":"topic","kind":"symbol","title":"writeValue(_:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible","type":"unresolvable"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/delegate":{"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/delegate","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/delegate","title":"delegate","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/ancsAuthorized":{"type":"topic","kind":"symbol","title":"ancsAuthorized","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/ancsAuthorized","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/ancsauthorized","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/openL2CAPChannel(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/openl2capchannel(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"openL2CAPChannel","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","kind":"typeIdentifier","text":"CBML2CAPPSM"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/openL2CAPChannel(_:)","role":"symbol","title":"openL2CAPChannel(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverDescriptors(for:)":{"type":"topic","kind":"symbol","title":"discoverDescriptors(for:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverDescriptors"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverDescriptors(for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverdescriptors(for:)","role":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/s7CVarArgP":{"identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","title":"Swift.CVarArg","type":"unresolvable"},"doc://CoreBluetoothMock/SH":{"identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/state":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"}],"title":"state","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/state","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readRSSI()":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"title":"readRSSI()","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readRSSI()","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/SQ":{"title":"Swift.Equatable","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/services":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"]?"}],"title":"services","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/services","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverCharacteristics(_:for:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier","text":"CBMService"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverCharacteristics(_:for:)","type":"topic","title":"discoverCharacteristics(_:for:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discovercharacteristics(_:for:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/maximumWriteValueLength(for:)":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":") -> ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"title":"maximumWriteValueLength(for:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/maximumWriteValueLength(for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/canSendWriteWithoutResponse":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"role":"symbol","title":"canSendWriteWithoutResponse","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/cansendwritewithoutresponse","abstract":[],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/canSendWriteWithoutResponse","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/writeValue(_:for:type:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:type:)","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/identifier":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/identifier","role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/identifier","title":"identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/hash":{"type":"topic","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"title":"hash","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/hash","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/hash"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized.json index a4f2bf9..de670b3 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/ancsauthorized"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/ancsAuthorized","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"ancsAuthorized","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C14ancsAuthorizedSbvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/ancsAuthorized":{"role":"symbol","title":"ancsAuthorized","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/ancsAuthorized","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/ancsauthorized"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/ancsAuthorized","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/ancsauthorized"]}],"metadata":{"role":"symbol","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"title":"ancsAuthorized","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C14ancsAuthorizedSbvp","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"ancsAuthorized","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/ancsAuthorized":{"type":"topic","kind":"symbol","title":"ancsAuthorized","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/ancsAuthorized","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/ancsauthorized","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse.json index 9989f03..733367d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/cansendwritewithoutresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/canSendWriteWithoutResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.canSendWriteWithoutResponse"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"canSendWriteWithoutResponse","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C27canSendWriteWithoutResponseSbvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/canSendWriteWithoutResponse","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/canSendWriteWithoutResponse","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"canSendWriteWithoutResponse","role":"symbol","symbolKind":"property","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"11.0"},{"deprecated":false,"introducedAt":"11.0","unavailable":false,"beta":false,"name":"tvOS"},{"introducedAt":"4.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C27canSendWriteWithoutResponseSbvp"},"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.canSendWriteWithoutResponse","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/cansendwritewithoutresponse"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/canSendWriteWithoutResponse":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"role":"symbol","title":"canSendWriteWithoutResponse","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/cansendwritewithoutresponse","abstract":[],"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/canSendWriteWithoutResponse","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/delegate.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/delegate.json index ca24d31..5a18c2e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/delegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/delegate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.delegate"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C8delegateAA0D8Delegate_pSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/delegate"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","kind":"typeIdentifier","text":"CBMPeripheralDelegate"},{"text":"?","kind":"text"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/delegate"},"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","kind":"typeIdentifier","text":"CBMPeripheralDelegate"},{"kind":"text","text":"?"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"delegate","symbolKind":"property","role":"symbol","roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C8delegateAA0D8Delegate_pSgvp"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/delegate"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.delegate","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/delegate":{"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/delegate","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/delegate","title":"delegate","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:).json index 165e32d..8dc9ae0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/discovercharacteristics(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverCharacteristics(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverCharacteristics(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"title":"discoverCharacteristics(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C23discoverCharacteristics_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverCharacteristics(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"characteristicUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"service"},{"text":": ","kind":"text"},{"text":"CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverCharacteristics(_:for:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/discovercharacteristics(_:for:)"]}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C23discoverCharacteristics_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"title":"discoverCharacteristics(_:for:)","role":"symbol","symbolKind":"method"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.discoverCharacteristics(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverCharacteristics(_:for:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier","text":"CBMService"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverCharacteristics(_:for:)","type":"topic","title":"discoverCharacteristics(_:for:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discovercharacteristics(_:for:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:).json index f1f3126..5abd255 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverdescriptors(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverDescriptors(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverDescriptors(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"discoverDescriptors(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C19discoverDescriptors3foryAA17CBMCharacteristicC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverDescriptors(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"sections":[],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C19discoverDescriptors3foryAA17CBMCharacteristicC_tF","title":"discoverDescriptors(for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"roleHeading":"Instance Method","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.discoverDescriptors(for:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverdescriptors(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverDescriptors(for:)"},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverDescriptors(for:)":{"type":"topic","kind":"symbol","title":"discoverDescriptors(for:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverDescriptors"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverDescriptors(for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverdescriptors(for:)","role":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:).json index 43cdd5f..3a0f0cd 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"includedServiceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverincludedservices(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverIncludedServices(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverIncludedServices(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"title":"discoverIncludedServices(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C24discoverIncludedServices_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverIncludedServices(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C24discoverIncludedServices_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":")","kind":"text"}],"roleHeading":"Instance Method","role":"symbol","title":"discoverIncludedServices(_:for:)"},"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"includedServiceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"text":"service","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverincludedservices(_:for:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.discoverIncludedServices(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverIncludedServices(_:for:)"},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverIncludedServices(_:for:)":{"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverIncludedServices(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:).json index d21a413..7b60366 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverservices(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverServices(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverServices(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"title":"discoverServices(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C16discoverServicesyySaySo6CBUUIDCGSgF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverServices(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverServices(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"title":"discoverServices(_:)","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C16discoverServicesyySaySo6CBUUIDCGSgF","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.discoverServices(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverservices(_:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverServices","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"serviceUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/discoverServices(_:)":{"kind":"symbol","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/discoverServices(_:)","title":"discoverServices(_:)","role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverservices(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"text":"([","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/hash.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/hash.json index e8c2f9c..d0ace47 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/hash.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/hash.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/hash"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/hash","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"hash","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralMock(py)hash","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/hash":{"role":"symbol","title":"hash","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/hash","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/hash"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/hash"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralMock(py)hash","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"title":"hash","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"]}]}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/hash","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/hash":{"type":"topic","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"title":"hash","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/hash","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/hash"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/identifier.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/identifier.json index 03b6a7d..d426113 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/identifier.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/identifier.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/identifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeer.identifier"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"title":"identifier","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C10identifier10Foundation4UUIDVvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeer.identifier"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"override"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier","text":"UUID"}],"role":"symbol","symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C10identifier10Foundation4UUIDVvp","title":"identifier"},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/identifier"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/identifier":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/identifier","role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/identifier","title":"identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:).json index 68e1715..289e540 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/maximumwritevaluelength(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/maximumWriteValueLength(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.maximumWriteValueLength(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"maximumWriteValueLength(for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C23maximumWriteValueLength3forSiSo016CBCharacteristicF4TypeV_tF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"9.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/maximumWriteValueLength(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/maximumwritevaluelength(for:)"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/maximumWriteValueLength(for:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C23maximumWriteValueLength3forSiSo016CBCharacteristicF4TypeV_tF","role":"symbol","platforms":[{"name":"iOS","unavailable":false,"introducedAt":"9.0","deprecated":false,"beta":false}],"title":"maximumWriteValueLength(for:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"maximumWriteValueLength","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method"},"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/maximumwritevaluelength(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"maximumWriteValueLength","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"type","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":") -> ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.maximumWriteValueLength(for:)"},{"text":".","type":"text"}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/maximumWriteValueLength(for:)":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":") -> ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"title":"maximumWriteValueLength(for:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/maximumWriteValueLength(for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/name.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/name.json index 3879a24..8c91b60 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/name.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/name.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.name"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C4nameSSSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/name"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/name"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.name","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/name","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"sections":[],"metadata":{"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":"?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"name","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C4nameSSSgvp","role":"symbol","symbolKind":"property"},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/name":{"type":"topic","kind":"symbol","title":"name","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/name","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/name","role":"symbol","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:).json index 1e4b89a..25927a9 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"PSM"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","text":"CBML2CAPPSM"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/openl2capchannel(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/openL2CAPChannel(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"openL2CAPChannel(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C16openL2CAPChannelyys6UInt16VF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/openL2CAPChannel(_:)":{"role":"symbol","title":"openL2CAPChannel(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/openL2CAPChannel(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/openl2capchannel(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/openl2capchannel(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C16openL2CAPChannelyys6UInt16VF","roleHeading":"Instance Method","title":"openL2CAPChannel(_:)","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"openL2CAPChannel"},{"text":"(","kind":"text"},{"text":"CBML2CAPPSM","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa"},{"text":")","kind":"text"}],"platforms":[{"name":"iOS","deprecated":false,"beta":false,"introducedAt":"11.0","unavailable":false},{"unavailable":false,"beta":false,"name":"tvOS","deprecated":false,"introducedAt":"11.0"},{"deprecated":false,"introducedAt":"4.0","beta":false,"name":"watchOS","unavailable":false}],"role":"symbol","symbolKind":"method"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"PSM","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBML2CAPPSM","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/openL2CAPChannel(_:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/openL2CAPChannel(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/openl2capchannel(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"openL2CAPChannel","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","kind":"typeIdentifier","text":"CBML2CAPPSM"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/openL2CAPChannel(_:)","role":"symbol","title":"openL2CAPChannel(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readrssi().json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readrssi().json index 8b8283c..9dca622 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readrssi().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readrssi().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/readrssi()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readRSSI()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readRSSI()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"title":"readRSSI()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C8readRSSIyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readRSSI()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/readrssi()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readRSSI","kind":"identifier"},{"text":"()","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.readRSSI()","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readRSSI()","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C8readRSSIyyF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readRSSI","kind":"identifier"},{"text":"()","kind":"text"}],"title":"readRSSI()","role":"symbol","symbolKind":"method"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readRSSI()":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"title":"readRSSI()","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readRSSI()","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6.json index b39135b..ba052d4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-29us6"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-29us6","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"readValue(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C9readValue3foryAA17CBMCharacteristicC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readValue(for:)-29us6":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-29us6","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-29us6"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.readValue(for:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-29us6","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C9readValue3foryAA17CBMCharacteristicC_tF","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":")","kind":"text"}],"symbolKind":"method","role":"symbol","title":"readValue(for:)","roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-29us6"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readValue(for:)-29us6":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-29us6","role":"symbol","title":"readValue(for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-29us6","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43.json index 49a35f5..e0f3134 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-9on43"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-9on43","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"title":"readValue(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C9readValue3foryAA13CBMDescriptorC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readValue(for:)-9on43":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-9on43","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-9on43"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":")","kind":"text"}],"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C9readValue3foryAA13CBMDescriptorC_tF","role":"symbol","symbolKind":"method","title":"readValue(for:)","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.readValue(for:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-9on43"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-9on43"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":")","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/readValue(for:)-9on43":{"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/readValue(for:)-9on43","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-9on43","title":"readValue(for:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/services.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/services.json index 21e0323..631ab35 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/services.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/services.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"]? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/services"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/services","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.services"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"title":"services","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C8servicesSayAA10CBMServiceCGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/services"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/services","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":"]? { get }","kind":"text"}]}]}],"metadata":{"symbolKind":"property","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C8servicesSayAA10CBMServiceCGSgvp","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"services"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":"]?","kind":"text"}],"roleHeading":"Instance Property","title":"services","modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/services"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.services"},{"text":".","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/services":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"]?"}],"title":"services","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/services","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:).json index 3363bf8..9226f5a 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/setnotifyvalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/setNotifyValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.setNotifyValue(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"setNotifyValue(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C14setNotifyValue_3forySb_AA17CBMCharacteristicCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/setNotifyValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/setnotifyvalue(_:for:)"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/setNotifyValue(_:for:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C14setNotifyValue_3forySb_AA17CBMCharacteristicCtF","title":"setNotifyValue(_:for:)","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"roleHeading":"Instance Method"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.setNotifyValue(_:for:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/setnotifyvalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/setNotifyValue(_:for:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/setNotifyValue(_:for:)","title":"setNotifyValue(_:for:)","abstract":[],"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/setnotifyvalue(_:for:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setNotifyValue"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/state.json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/state.json index 21c943b..5df9143 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/state.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/state.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"dynamic"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.state"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"title":"state","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralMock(py)state","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"roleHeading":"Instance Property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralMock(py)state","title":"state","role":"symbol","symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"}]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/state","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"text":" ","kind":"text"},{"text":"dynamic","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"},{"text":" { get }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.state"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/state":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"}],"title":"state","role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/state","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:).json index f7a715e..056b42d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"title":"writeValue(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C10writeValue_3fory10Foundation4DataV_AA13CBMDescriptorCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"role":"symbol","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C10writeValue_3fory10Foundation4DataV_AA13CBMDescriptorCtF","title":"writeValue(_:for:)","symbolKind":"method"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.writeValue(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/writeValue(_:for:)":{"type":"topic","kind":"symbol","title":"writeValue(_:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:).json index d83ee06..f568314 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:type:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"title":"writeValue(_:for:type:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C10writeValue_3for4typey10Foundation4DataV_AA17CBMCharacteristicCSo25CBCharacteristicWriteTypeVtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:type:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Method","title":"writeValue(_:for:type:)","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock013CBMPeripheralC0C10writeValue_3for4typey10Foundation4DataV_AA17CBMCharacteristicCSo25CBCharacteristicWriteTypeVtF","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":")","kind":"text"}]},"kind":"symbol","sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.writeValue(_:for:type:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:type:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:type:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock/writeValue(_:for:type:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock\/writeValue(_:for:type:)","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative.json index c7117b7..1c9b7be 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"title":"CBMPeripheralNative","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralNative","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/canSendWriteWithoutResponse","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/hash","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/peripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/services","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/state"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverCharacteristics(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverDescriptors(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readRSSI()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-65lsz","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-b1qu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/setNotifyValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:type:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This implementation will be used when creating peripherals by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Unless required, this class should not be accessed directly, but rather by the common protocol "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}]}]}],"references":{"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:type:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/hash":{"role":"symbol","title":"hash","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/hash","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/hash"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/canSendWriteWithoutResponse","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverIncludedServices(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/peripheral":{"role":"symbol","title":"peripheral","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBPeripheral","preciseIdentifier":"c:objc(cs)CBPeripheral"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/peripheral","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/peripheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/delegate"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readValue(for:)-b1qu":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-b1qu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-b1qu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/maximumWriteValueLength(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readRSSI()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverServices(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/setNotifyValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverDescriptors(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readValue(for:)-65lsz":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-65lsz","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-65lsz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The unique, persistent identifier associated with the peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverCharacteristics(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discovercharacteristics(_:for:)"}}} \ No newline at end of file +{"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/canSendWriteWithoutResponse","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/hash","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/peripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/services","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/state"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverCharacteristics(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverDescriptors(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readRSSI()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-65lsz","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-b1qu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/setNotifyValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:type:)"],"title":"Instance Methods"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"title":"Peripheral","generated":true}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"level":2,"anchor":"overview","type":"heading","text":"Overview"},{"inlineContent":[{"type":"text","text":"This implementation will be used when creating peripherals by "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","isActive":true,"type":"reference"},{"type":"text","text":"."}],"type":"paragraph"},{"inlineContent":[{"type":"text","text":"Unless required, this class should not be accessed directly, but rather by the common protocol "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"type":"text","text":"."}],"type":"paragraph"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer"],"title":"Inherits From","type":"inheritsFrom","kind":"relationships"},{"title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"type":"conformsTo","kind":"relationships"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"sections":[],"metadata":{"title":"CBMPeripheralNative","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralNative","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"class","role":"symbol","roleHeading":"Class","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverServices(_:)":{"abstract":[],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"text":"([","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"kind":"text","text":"]?)"}],"role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverServices(_:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/hash":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/hash","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hash"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/hash","type":"topic","role":"symbol","title":"hash","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"discoverCharacteristics","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"type":"topic","title":"discoverCharacteristics(_:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverCharacteristics(_:for:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discovercharacteristics(_:for:)","role":"symbol","kind":"symbol"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","type":"unresolvable","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/state":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/state","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/state","title":"state","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"state","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"}],"role":"symbol","type":"topic","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/setNotifyValue(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setNotifyValue"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","title":"setNotifyValue(_:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/setNotifyValue(_:for:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/setnotifyvalue(_:for:)","role":"symbol","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/writeValue(_:for:)":{"title":"writeValue(_:for:)","role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/maximumWriteValueLength(for:)":{"kind":"symbol","title":"maximumWriteValueLength(for:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/maximumwritevaluelength(for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/maximumWriteValueLength(for:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":") -> ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/delegate":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/delegate","type":"topic","role":"symbol","title":"delegate","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/SH":{"identifier":"doc:\/\/CoreBluetoothMock\/SH","type":"unresolvable","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readValue(for:)-b1qu":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-b1qu","abstract":[],"title":"readValue(for:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-b1qu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/writeValue(_:for:type:)":{"type":"topic","title":"writeValue(_:for:type:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:type:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":")"}],"kind":"symbol","role":"symbol","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:type:)"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"title":"Swift.CustomStringConvertible","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/name":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"?"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/name","title":"name","abstract":[],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/name","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/services":{"role":"symbol","abstract":[],"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/services","type":"topic","title":"services","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"kind":"text","text":": ["},{"text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier"},{"text":"]?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverDescriptors(for:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverDescriptors"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","title":"discoverDescriptors(for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverDescriptors(for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverdescriptors(for:)","abstract":[],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/canSendWriteWithoutResponse":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/canSendWriteWithoutResponse","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/cansendwritewithoutresponse","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"canSendWriteWithoutResponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverIncludedServices(_:for:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverincludedservices(_:for:)","type":"topic","kind":"symbol","role":"symbol","title":"discoverIncludedServices(_:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readRSSI()":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readrssi()","abstract":[],"role":"symbol","type":"topic","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readRSSI","kind":"identifier"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readRSSI()","kind":"symbol"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"title":"Swift.CustomDebugStringConvertible","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/SQ":{"title":"Swift.Equatable","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/peripheral":{"title":"peripheral","role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)CBPeripheral","text":"CBPeripheral","kind":"typeIdentifier"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/peripheral","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/peripheral","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/identifier":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/identifier","kind":"symbol","role":"symbol","type":"topic","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/identifier","abstract":[{"text":"The unique, persistent identifier associated with the peer.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readValue(for:)-65lsz":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-65lsz","title":"readValue(for:)","role":"symbol","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-65lsz","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse.json index afcf757..ff73490 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/cansendwritewithoutresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/canSendWriteWithoutResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.canSendWriteWithoutResponse"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"canSendWriteWithoutResponse","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC27canSendWriteWithoutResponseSbvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"11.0","deprecated":false},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"4.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/canSendWriteWithoutResponse","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.canSendWriteWithoutResponse"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/canSendWriteWithoutResponse"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/cansendwritewithoutresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"metadata":{"roleHeading":"Instance Property","platforms":[{"introducedAt":"11.0","deprecated":false,"name":"iOS","beta":false,"unavailable":false},{"introducedAt":"11.0","unavailable":false,"name":"tvOS","beta":false,"deprecated":false},{"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"4.0","deprecated":false}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC27canSendWriteWithoutResponseSbvp","title":"canSendWriteWithoutResponse","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"symbolKind":"property"},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/canSendWriteWithoutResponse":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/canSendWriteWithoutResponse","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/cansendwritewithoutresponse","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"canSendWriteWithoutResponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/delegate.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/delegate.json index 68b1eaf..ddd7671 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/delegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/delegate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.delegate"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC8delegateAA0D8Delegate_pSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/delegate"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"weak","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"text":"CBMPeripheralDelegate","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","kind":"typeIdentifier"},{"text":"? { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" ","kind":"text"},{"text":"set","kind":"keyword"},{"kind":"text","text":" }"}]}]}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.delegate"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/delegate","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"text":": ","kind":"text"},{"text":"CBMPeripheralDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"property","title":"delegate","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC8delegateAA0D8Delegate_pSgvp","roleHeading":"Instance Property"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/delegate":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/delegate","type":"topic","role":"symbol","title":"delegate","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:).json index d62820a..6f2649d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/discovercharacteristics(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverCharacteristics(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverCharacteristics(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"title":"discoverCharacteristics(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC23discoverCharacteristics_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverCharacteristics(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverCharacteristics(_:for:)","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC23discoverCharacteristics_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"kind":"text","text":"(["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"title":"discoverCharacteristics(_:for:)","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverCharacteristics"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"characteristicUUIDs","kind":"internalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"kind":"text","text":")"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.discoverCharacteristics(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/discovercharacteristics(_:for:)"]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"discoverCharacteristics","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"type":"topic","title":"discoverCharacteristics(_:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverCharacteristics(_:for:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discovercharacteristics(_:for:)","role":"symbol","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:).json index 3caa6ff..e0963cb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverdescriptors(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverDescriptors(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverDescriptors(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"discoverDescriptors(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC19discoverDescriptors3foryAA17CBMCharacteristicC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverDescriptors(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","title":"discoverDescriptors(for:)","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC19discoverDescriptors3foryAA17CBMCharacteristicC_tF","role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverDescriptors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverDescriptors(for:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.discoverDescriptors(for:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverdescriptors(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverDescriptors(for:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverDescriptors"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","title":"discoverDescriptors(for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverDescriptors(for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverdescriptors(for:)","abstract":[],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:).json index 936d305..f3c1d9a 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"includedServiceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverincludedservices(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverIncludedServices(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverIncludedServices(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"title":"discoverIncludedServices(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC24discoverIncludedServices_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverIncludedServices(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","title":"discoverIncludedServices(_:for:)","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC24discoverIncludedServices_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF"},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverIncludedServices(_:for:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.discoverIncludedServices(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"includedServiceUUIDs"},{"text":": [","kind":"text"},{"text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"service"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverincludedservices(_:for:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverIncludedServices(_:for:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverincludedservices(_:for:)","type":"topic","kind":"symbol","role":"symbol","title":"discoverIncludedServices(_:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:).json index e501204..d59e9e7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverservices(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverServices(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverServices(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"title":"discoverServices(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC16discoverServicesyySaySo6CBUUIDCGSgF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverServices(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverServices(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"title":"discoverServices(_:)","symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"discoverServices","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC16discoverServicesyySaySo6CBUUIDCGSgF"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverservices(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"serviceUUIDs","kind":"internalParam"},{"kind":"text","text":": ["},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?)","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.discoverServices(_:)"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/discoverServices(_:)":{"abstract":[],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"text":"([","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"kind":"text","text":"]?)"}],"role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/discoverServices(_:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverservices(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/hash.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/hash.json index 9f46107..7cedcc9 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/hash.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/hash.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/hash"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/hash","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"hash","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralNative(py)hash","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/hash":{"role":"symbol","title":"hash","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/hash","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/hash"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/hash"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/hash"},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"title":"hash","roleHeading":"Instance Property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralNative(py)hash","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"symbolKind":"property"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/hash":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/hash","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hash"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/hash","type":"topic","role":"symbol","title":"hash","kind":"symbol","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/identifier.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/identifier.json index fc27b9e..664e4a8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/identifier.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/identifier.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/identifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The unique, persistent identifier associated with the peer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"title":"identifier","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC10identifier10Foundation4UUIDVvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The unique, persistent identifier associated with the peer."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/identifier","interfaceLanguage":"swift"},"metadata":{"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC10identifier10Foundation4UUIDVvp","roleHeading":"Instance Property","title":"identifier","role":"symbol","symbolKind":"property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"The unique, persistent identifier associated with the peer.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/identifier":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/identifier","kind":"symbol","role":"symbol","type":"topic","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/identifier","abstract":[{"text":"The unique, persistent identifier associated with the peer.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:).json index 2751b77..e3b094f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/maximumwritevaluelength(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/maximumWriteValueLength(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.maximumWriteValueLength(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"maximumWriteValueLength(for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC23maximumWriteValueLength3forSiSo016CBCharacteristicG4TypeV_tF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"9.0","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/maximumWriteValueLength(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"maximumWriteValueLength"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","text":"CBMCharacteristicWriteType","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"title":"maximumWriteValueLength(for:)","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC23maximumWriteValueLength3forSiSo016CBCharacteristicG4TypeV_tF","symbolKind":"method","platforms":[{"name":"iOS","introducedAt":"9.0","deprecated":false,"unavailable":false,"beta":false}],"roleHeading":"Instance Method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/maximumwritevaluelength(for:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/maximumWriteValueLength(for:)"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.maximumWriteValueLength(for:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/maximumWriteValueLength(for:)":{"kind":"symbol","title":"maximumWriteValueLength(for:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/maximumwritevaluelength(for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/maximumWriteValueLength(for:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":") -> ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/name.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/name.json index 51921ab..e60a57e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/name.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/name.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.name"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC4nameSSSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.name"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"name","symbolKind":"property","roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC4nameSSSgvp"},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/name","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/name":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"?"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/name","title":"name","abstract":[],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/name","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/peripheral.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/peripheral.json index fbcb946..147a7b9 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/peripheral.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/peripheral.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBPeripheral","preciseIdentifier":"c:objc(cs)CBPeripheral"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/peripheral"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/peripheral","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBPeripheral","preciseIdentifier":"c:objc(cs)CBPeripheral"}],"title":"peripheral","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC10peripheralSo12CBPeripheralCvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/peripheral":{"role":"symbol","title":"peripheral","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBPeripheral","preciseIdentifier":"c:objc(cs)CBPeripheral"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/peripheral","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/peripheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"}}} \ No newline at end of file +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/peripheral"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/peripheral"]}],"metadata":{"symbolKind":"property","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)CBPeripheral","text":"CBPeripheral","kind":"typeIdentifier"}],"roleHeading":"Instance Property","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC10peripheralSo12CBPeripheralCvp","title":"peripheral"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":": ","kind":"text"},{"text":"CBPeripheral","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)CBPeripheral"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/peripheral":{"title":"peripheral","role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)CBPeripheral","text":"CBPeripheral","kind":"typeIdentifier"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/peripheral","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/peripheral","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readrssi().json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readrssi().json index c63f1aa..7a4881c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readrssi().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readrssi().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/readrssi()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readRSSI()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readRSSI()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"title":"readRSSI()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC8readRSSIyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readRSSI()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readRSSI()"},"metadata":{"roleHeading":"Instance Method","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"readRSSI","kind":"identifier"},{"kind":"text","text":"()"}],"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC8readRSSIyyF","symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/readrssi()"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.readRSSI()"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readRSSI","kind":"identifier"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readRSSI()":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readrssi()","abstract":[],"role":"symbol","type":"topic","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readRSSI","kind":"identifier"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readRSSI()","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz.json index c65518c..5238d43 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-65lsz"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-65lsz","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"title":"readValue(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC9readValue3foryAA13CBMDescriptorC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readValue(for:)-65lsz":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-65lsz","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-65lsz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-65lsz","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-65lsz"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC9readValue3foryAA13CBMDescriptorC_tF","title":"readValue(for:)","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier","text":"CBMDescriptor"},{"text":")","kind":"text"}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readValue(for:)-65lsz":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-65lsz","title":"readValue(for:)","role":"symbol","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-65lsz","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu.json index 6b5a628..345ebe3 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-b1qu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-b1qu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"readValue(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC9readValue3foryAA17CBMCharacteristicC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readValue(for:)-b1qu":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-b1qu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-b1qu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-b1qu"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"readValue(for:)","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC9readValue3foryAA17CBMCharacteristicC_tF","role":"symbol","symbolKind":"method"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-b1qu","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"text":".","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/readValue(for:)-b1qu":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/readValue(for:)-b1qu","abstract":[],"title":"readValue(for:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-b1qu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/services.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/services.json index 28a6482..8403e16 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/services.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/services.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"]? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/services"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/services","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.services"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"title":"services","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC8servicesSayAA10CBMServiceCGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/services"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/services","interfaceLanguage":"swift"},"metadata":{"symbolKind":"property","role":"symbol","title":"services","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"services","kind":"identifier"},{"kind":"text","text":": ["},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC8servicesSayAA10CBMServiceCGSgvp"},"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.services","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"text":": [","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":"]? { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/services":{"role":"symbol","abstract":[],"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/services","type":"topic","title":"services","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"kind":"text","text":": ["},{"text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier"},{"text":"]?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:).json index e66002e..a1b67d9 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/setnotifyvalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/setNotifyValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.setNotifyValue(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"setNotifyValue(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC14setNotifyValue_3forySb_AA17CBMCharacteristicCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/setNotifyValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"setNotifyValue","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"enabled"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/setnotifyvalue(_:for:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.setNotifyValue(_:for:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/setNotifyValue(_:for:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC14setNotifyValue_3forySb_AA17CBMCharacteristicCtF","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setNotifyValue"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":")","kind":"text"}],"title":"setNotifyValue(_:for:)","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/setNotifyValue(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setNotifyValue"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","title":"setNotifyValue(_:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/setNotifyValue(_:for:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/setnotifyvalue(_:for:)","role":"symbol","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/state.json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/state.json index bd7c1cc..d05c5a4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/state.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/state.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.state"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"title":"state","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC5stateSo17CBPeripheralStateVvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"}}} \ No newline at end of file +{"metadata":{"symbolKind":"property","roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC5stateSo17CBPeripheralStateVvp","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"text":"CBMPeripheralState","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.state"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/state"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"text":"CBMPeripheralState","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/state":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/state","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/state","title":"state","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"state","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"}],"role":"symbol","type":"topic","abstract":[]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:).json index 449e187..baea15c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"title":"writeValue(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC10writeValue_3fory10Foundation4DataV_AA13CBMDescriptorCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:)"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"data"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.writeValue(_:for:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC10writeValue_3fory10Foundation4DataV_AA13CBMDescriptorCtF","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"writeValue(_:for:)"},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/writeValue(_:for:)":{"title":"writeValue(_:for:)","role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:).json index 0732d46..70a56f8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:type:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"title":"writeValue(_:for:type:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC10writeValue_3for4typey10Foundation4DataV_AA17CBMCharacteristicCSo25CBCharacteristicWriteTypeVtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:type:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:type:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative"]]},"kind":"symbol","metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock19CBMPeripheralNativeC10writeValue_3for4typey10Foundation4DataV_AA17CBMCharacteristicCSo25CBCharacteristicWriteTypeVtF","symbolKind":"method","title":"writeValue(_:for:type:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","kind":"typeIdentifier","text":"CBMCharacteristicWriteType"},{"kind":"text","text":")"}],"role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:type:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicWriteType","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:type:)"]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative/writeValue(_:for:type:)":{"type":"topic","title":"writeValue(_:for:type:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:type:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":")"}],"kind":"symbol","role":"symbol","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative\/writeValue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview.json index 35dba6e..e739382 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"title":"CBMPeripheralPreview","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralPreview","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}]},"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/init(_:state:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/ancsAuthorized","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/canSendWriteWithoutResponse","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/services","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/state"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverCharacteristics(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverDescriptors(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/openL2CAPChannel(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readRSSI()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-5cb2u","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-kuta","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/setNotifyValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:type:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"CBMPeripheralPreview"},{"type":"text","text":" object has very limited functionality. The implementation"},{"type":"text","text":" "},{"type":"text","text":"handles connection but all request methods just call corresponding delegate method."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"All "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"s are available immediately, without the need for service discovery."},{"type":"text","text":" "},{"type":"text","text":"Bluetooth LE operations are NO OP. The device does not need to be scanned to"},{"type":"text","text":" "},{"type":"text","text":"be retrievable by any "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"},{"type":"text","text":" instance."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readRSSI()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readrssi()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverServices(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverservices(_:)"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/openL2CAPChannel(_:)":{"role":"symbol","title":"openL2CAPChannel(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/openL2CAPChannel(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/openl2capchannel(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/setNotifyValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/setnotifyvalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readValue(for:)-5cb2u":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-5cb2u","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-5cb2u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/identifier"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/delegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/init(_:state:)":{"role":"symbol","title":"init(_:state:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates the preview "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/init(_:state:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/init(_:state:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/canSendWriteWithoutResponse","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverDescriptors(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverIncludedServices(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:type:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObject","identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverCharacteristics(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/maximumWriteValueLength(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readValue(for:)-kuta":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-kuta","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-kuta"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/ancsAuthorized":{"role":"symbol","title":"ancsAuthorized","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/ancsAuthorized","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/ancsauthorized"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Class","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralPreview"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralPreview","symbolKind":"class","title":"CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"kind":"symbol","topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/init(_:state:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/ancsAuthorized","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/canSendWriteWithoutResponse","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/delegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/services","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/state"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverCharacteristics(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverDescriptors(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverIncludedServices(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverServices(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/maximumWriteValueLength(for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/openL2CAPChannel(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readRSSI()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-5cb2u","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-kuta","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/setNotifyValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:type:)"],"title":"Instance Methods"}],"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(cs)NSObject"],"title":"Inherits From","kind":"relationships","type":"inheritsFrom"},{"type":"conformsTo","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"@objc","kind":"attribute"},{"text":" ","kind":"text"},{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}]}]},{"kind":"content","content":[{"level":2,"anchor":"overview","type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"text":"The ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralPreview"},{"type":"text","text":" object has very limited functionality. The implementation"},{"type":"text","text":" "},{"text":"handles connection but all request methods just call corresponding delegate method.","type":"text"}]},{"inlineContent":[{"type":"text","text":"All "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","type":"reference","isActive":true},{"type":"text","text":"s are available immediately, without the need for service discovery."},{"type":"text","text":" "},{"type":"text","text":"Bluetooth LE operations are NO OP. The device does not need to be scanned to"},{"text":" ","type":"text"},{"text":"be retrievable by any ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","isActive":true,"type":"reference"},{"type":"text","text":" instance."}],"type":"paragraph"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"title":"Peripheral","generated":true}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"abstract":[{"text":"A stub ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/canSendWriteWithoutResponse":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/cansendwritewithoutresponse","kind":"symbol","role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"canSendWriteWithoutResponse","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/canSendWriteWithoutResponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/state":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/state","kind":"symbol","role":"symbol","title":"state","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","kind":"typeIdentifier","text":"CBMPeripheralState"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/state"},"doc://CoreBluetoothMock/objc(cs)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(cs)NSObject","title":"ObjectiveC.NSObject","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/ancsAuthorized":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/ancsauthorized","kind":"symbol","role":"symbol","title":"ancsAuthorized","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"ancsAuthorized","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/ancsAuthorized"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/maximumWriteValueLength(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/maximumwritevaluelength(for:)","kind":"symbol","role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/maximumWriteValueLength(for:)"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"title":"Swift.CustomDebugStringConvertible","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverCharacteristics(_:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discovercharacteristics(_:for:)","kind":"symbol","role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverCharacteristics"},{"text":"([","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverCharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readValue(for:)-5cb2u":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-5cb2u","kind":"symbol","role":"symbol","title":"readValue(for:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-5cb2u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverIncludedServices(_:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverincludedservices(_:for:)","kind":"symbol","role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverIncludedServices"},{"text":"([","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverdescriptors(for:)","kind":"symbol","role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverDescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/SQ":{"identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/setNotifyValue(_:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/setnotifyvalue(_:for:)","kind":"symbol","role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"setNotifyValue","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/setNotifyValue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/writeValue(_:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:)","kind":"symbol","role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier","text":"CBMDescriptor"},{"text":")","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/identifier":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/identifier","kind":"symbol","role":"symbol","title":"identifier","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID","kind":"typeIdentifier"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/name":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/name","kind":"symbol","role":"symbol","title":"name","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":"?","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/init(_:state:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/init(_:state:)","kind":"symbol","role":"symbol","title":"init(_:state:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"state"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"},{"text":")","kind":"text"}],"type":"topic","abstract":[{"type":"text","text":"Creates the preview "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/init(_:state:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/delegate":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/delegate","kind":"symbol","role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"text":"?","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/delegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readRSSI()":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readrssi()","kind":"symbol","role":"symbol","title":"readRSSI()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readRSSI","kind":"identifier"},{"text":"()","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readRSSI()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/writeValue(_:for:type:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:type:)","kind":"symbol","role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":")","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/openL2CAPChannel(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/openl2capchannel(_:)","kind":"symbol","role":"symbol","title":"openL2CAPChannel(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"openL2CAPChannel"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","kind":"typeIdentifier","text":"CBML2CAPPSM"},{"text":")","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/openL2CAPChannel(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverServices(_:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverServices(_:)","title":"discoverServices(_:)","abstract":[],"kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?)"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverservices(_:)"},"doc://CoreBluetoothMock/SH":{"identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readValue(for:)-kuta":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-kuta","kind":"symbol","role":"symbol","title":"readValue(for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-kuta"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/s7CVarArgP":{"title":"Swift.CVarArg","type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/services":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/services","kind":"symbol","role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":"]?","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/services"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized.json index f399fdc..f93bf67 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/ancsauthorized"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/ancsAuthorized","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"ancsAuthorized","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC14ancsAuthorizedSbvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/ancsAuthorized":{"role":"symbol","title":"ancsAuthorized","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"ancsAuthorized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/ancsAuthorized","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/ancsauthorized"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"ancsAuthorized","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/ancsAuthorized"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/ancsauthorized"]}],"metadata":{"roleHeading":"Instance Property","role":"symbol","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC14ancsAuthorizedSbvp","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"ancsAuthorized","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"ancsAuthorized","symbolKind":"property"},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/ancsAuthorized":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/ancsauthorized","kind":"symbol","role":"symbol","title":"ancsAuthorized","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"ancsAuthorized","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/ancsAuthorized"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse.json index 3d6019d..14958ec 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/cansendwritewithoutresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/canSendWriteWithoutResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.canSendWriteWithoutResponse"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"canSendWriteWithoutResponse","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC27canSendWriteWithoutResponseSbvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/canSendWriteWithoutResponse":{"role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/canSendWriteWithoutResponse","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/cansendwritewithoutresponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"canSendWriteWithoutResponse"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/cansendwritewithoutresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/canSendWriteWithoutResponse","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC27canSendWriteWithoutResponseSbvp","symbolKind":"property","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"canSendWriteWithoutResponse","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"canSendWriteWithoutResponse"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.canSendWriteWithoutResponse","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/canSendWriteWithoutResponse":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/cansendwritewithoutresponse","kind":"symbol","role":"symbol","title":"canSendWriteWithoutResponse","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"canSendWriteWithoutResponse","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/canSendWriteWithoutResponse"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/delegate.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/delegate.json index b5e0cfe..631b5c4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/delegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/delegate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/delegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/delegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.delegate"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"title":"delegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC8delegateAA0D8Delegate_pSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/delegate":{"role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/delegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/delegate"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/delegate"},"sections":[],"metadata":{"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","text":"CBMPeripheralDelegate","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"delegate","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC8delegateAA0D8Delegate_pSgvp","role":"symbol","symbolKind":"property"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.delegate","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","text":"CBMPeripheralDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/delegate"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/delegate":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/delegate","kind":"symbol","role":"symbol","title":"delegate","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"delegate","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralDelegate","preciseIdentifier":"s:17CoreBluetoothMock21CBMPeripheralDelegateP"},{"text":"?","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/delegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:).json index 7adb14f..88c71cc 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discovercharacteristics(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverCharacteristics(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverCharacteristics(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"title":"discoverCharacteristics(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC23discoverCharacteristics_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverCharacteristics(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverCharacteristics(_:for:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"discoverCharacteristics(_:for:)","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC23discoverCharacteristics_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","role":"symbol","symbolKind":"method"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.discoverCharacteristics(_:for:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristicUUIDs"},{"text":": [","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discovercharacteristics(_:for:)"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverCharacteristics(_:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discovercharacteristics(_:for:)","kind":"symbol","role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverCharacteristics"},{"text":"([","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverCharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:).json index f818de9..88ee956 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverdescriptors(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverDescriptors(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverDescriptors(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"discoverDescriptors(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC19discoverDescriptors3foryAA17CBMCharacteristicC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverDescriptors(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverdescriptors(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverDescriptors(for:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"kind":"text","text":")"}]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.discoverDescriptors(for:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"role":"symbol","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC19discoverDescriptors3foryAA17CBMCharacteristicC_tF","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":")"}],"symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverdescriptors(for:)","kind":"symbol","role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverDescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:).json index e0c8d3d..aa29cc2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"includedServiceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverincludedservices(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverIncludedServices(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverIncludedServices(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"title":"discoverIncludedServices(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC24discoverIncludedServices_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverIncludedServices(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverIncludedServices(_:for:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC24discoverIncludedServices_3forySaySo6CBUUIDCGSg_AA10CBMServiceCtF","symbolKind":"method","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverIncludedServices"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverIncludedServices(_:for:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverincludedservices(_:for:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"includedServiceUUIDs"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"text":": ","kind":"text"},{"text":"CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverIncludedServices(_:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverincludedservices(_:for:)","kind":"symbol","role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverIncludedServices"},{"text":"([","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:).json index 61ea19a..5a7264b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverservices(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverServices(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.discoverServices(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"title":"discoverServices(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC16discoverServicesyySaySo6CBUUIDCGSgF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverServices(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverServices(_:)"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverservices(_:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.discoverServices(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverServices","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"serviceUUIDs","kind":"internalParam"},{"kind":"text","text":": ["},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverServices","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?)","kind":"text"}],"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC16discoverServicesyySaySo6CBUUIDCGSgF"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/discoverServices(_:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/discoverServices(_:)","title":"discoverServices(_:)","abstract":[],"kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?)"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/identifier.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/identifier.json index 2a286ab..2d64617 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/identifier.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/identifier.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/identifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.identifier"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"title":"identifier","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC10identifier10Foundation4UUIDVvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"}],"symbolKind":"property","title":"identifier","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC10identifier10Foundation4UUIDVvp","role":"symbol"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/identifier","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"identifier","kind":"identifier"},{"text":": ","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.identifier"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/identifier"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/identifier":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/identifier","kind":"symbol","role":"symbol","title":"identifier","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID","kind":"typeIdentifier"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:).json index 4edd69c..bc164cb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"mock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"},{"kind":"text","text":" = .disconnected)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"mock","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The mock peripheral to base the preview on."}]}]},{"name":"state","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The state to return from "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state"},{"type":"text","text":"."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/init(_:state:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/init(_:state:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates the preview "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"},{"kind":"text","text":")"}],"title":"init(_:state:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC_5stateAcA0D4SpecC_So17CBPeripheralStateVtcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[{"type":"text","text":"The connection state of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/init(_:state:)":{"role":"symbol","title":"init(_:state:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates the preview "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/init(_:state:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/init(_:state:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/init(_:state:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"state","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"init(_:state:)","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC_5stateAcA0D4SpecC_So17CBPeripheralStateVtcfc","role":"symbol","symbolKind":"init"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/init(_:state:)"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"abstract":[{"text":"Creates the preview ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","type":"reference"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"mock"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"state","kind":"externalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","kind":"typeIdentifier","text":"CBMPeripheralState"},{"text":" = .disconnected)","kind":"text"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"name":"mock","content":[{"type":"paragraph","inlineContent":[{"text":"The mock peripheral to base the preview on.","type":"text"}]}]},{"name":"state","content":[{"type":"paragraph","inlineContent":[{"text":"The state to return from ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","type":"reference","isActive":true},{"type":"text","text":"."}]}]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/init(_:state:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/init(_:state:)","kind":"symbol","role":"symbol","title":"init(_:state:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"state"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"},{"text":")","kind":"text"}],"type":"topic","abstract":[{"type":"text","text":"Creates the preview "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/init(_:state:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/state":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"kind":"symbol","title":"state","abstract":[{"text":"The connection state of the peripheral.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/state","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/state","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:).json index 63cf027..4e40bf3 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/maximumwritevaluelength(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/maximumWriteValueLength(for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.maximumWriteValueLength(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"maximumWriteValueLength(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC23maximumWriteValueLength3forSiSo016CBCharacteristicG4TypeV_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/maximumWriteValueLength(for:)":{"role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/maximumWriteValueLength(for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/maximumwritevaluelength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"maximumWriteValueLength"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"type","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"method","title":"maximumWriteValueLength(for:)","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC23maximumWriteValueLength3forSiSo016CBCharacteristicG4TypeV_tF","roleHeading":"Instance Method"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.maximumWriteValueLength(for:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/maximumwritevaluelength(for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/maximumWriteValueLength(for:)"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/maximumWriteValueLength(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/maximumwritevaluelength(for:)","kind":"symbol","role":"symbol","title":"maximumWriteValueLength(for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"maximumWriteValueLength","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/maximumWriteValueLength(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/name.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/name.json index b8d3cb2..ac20f2c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/name.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/name.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.name"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC4nameSSSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/name","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/name"]}],"sections":[],"metadata":{"role":"symbol","title":"name","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC4nameSSSgvp","roleHeading":"Instance Property"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.name"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/name":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/name","kind":"symbol","role":"symbol","title":"name","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":"?","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:).json index cec5e25..1433b70 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"PSM"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","text":"CBML2CAPPSM"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/openl2capchannel(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/openL2CAPChannel(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa"},{"kind":"text","text":")"}],"title":"openL2CAPChannel(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC16openL2CAPChannelyys6UInt16VF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/openL2CAPChannel(_:)":{"role":"symbol","title":"openL2CAPChannel(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/openL2CAPChannel(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/openl2capchannel(_:)"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/openl2capchannel(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/openL2CAPChannel(_:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC16openL2CAPChannelyys6UInt16VF","roleHeading":"Instance Method","title":"openL2CAPChannel(_:)","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"openL2CAPChannel","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","text":"CBML2CAPPSM"},{"text":")","kind":"text"}]},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"openL2CAPChannel"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"PSM","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","text":"CBML2CAPPSM"},{"text":")","kind":"text"}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/openL2CAPChannel(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/openl2capchannel(_:)","kind":"symbol","role":"symbol","title":"openL2CAPChannel(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"openL2CAPChannel"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock11CBML2CAPPSMa","kind":"typeIdentifier","text":"CBML2CAPPSM"},{"text":")","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/openL2CAPChannel(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readrssi().json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readrssi().json index 66e7229..5ac2fcf 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readrssi().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readrssi().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readrssi()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readRSSI()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readRSSI()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"title":"readRSSI()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC8readRSSIyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readRSSI()":{"role":"symbol","title":"readRSSI()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readRSSI"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readRSSI()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readrssi()"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"readRSSI","kind":"identifier"},{"kind":"text","text":"()"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readRSSI()"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"metadata":{"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC8readRSSIyyF","role":"symbol","title":"readRSSI()","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readRSSI"},{"text":"()","kind":"text"}]},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readrssi()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readRSSI()"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readRSSI()":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readrssi()","kind":"symbol","role":"symbol","title":"readRSSI()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readRSSI","kind":"identifier"},{"text":"()","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readRSSI()"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u.json index 9f076f9..36918cb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-5cb2u"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-5cb2u","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"readValue(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC9readValue3foryAA17CBMCharacteristicC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readValue(for:)-5cb2u":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-5cb2u","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-5cb2u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheral.readValue(for:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-5cb2u","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-5cb2u"]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"sections":[],"metadata":{"externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC9readValue3foryAA17CBMCharacteristicC_tF","roleHeading":"Instance Method","symbolKind":"method","role":"symbol","title":"readValue(for:)","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"kind":"text","text":")"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readValue(for:)-5cb2u":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-5cb2u","kind":"symbol","role":"symbol","title":"readValue(for:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-5cb2u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta.json index 9e72b06..6af1f64 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-kuta"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-kuta","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"title":"readValue(for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC9readValue3foryAA13CBMDescriptorC_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readValue(for:)-kuta":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-kuta","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-kuta"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"]}]}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheral.readValue(for:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-kuta"]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"text":"(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"readValue(for:)","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC9readValue3foryAA13CBMDescriptorC_tF","symbolKind":"method","role":"symbol","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-kuta","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/readValue(for:)-kuta":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-kuta","kind":"symbol","role":"symbol","title":"readValue(for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/readValue(for:)-kuta"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/services.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/services.json index 2d0434f..90676bd 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/services.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/services.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"]?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/services"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/services","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.services"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"title":"services","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC8servicesSayAA10CBMServiceCGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC8servicesSayAA10CBMServiceCGSgvp","title":"services","symbolKind":"property","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":"]?","kind":"text"}],"roleHeading":"Instance Property"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.services","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/services"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/services"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"kind":"text","text":"]?"}],"platforms":["macOS"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/services":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/services","kind":"symbol","role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":"]?","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:).json index bfa83c6..9ae9821 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/setnotifyvalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/setNotifyValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.setNotifyValue(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"title":"setNotifyValue(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC14setNotifyValue_3forySb_AA17CBMCharacteristicCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/setNotifyValue(_:for:)":{"role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/setNotifyValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/setnotifyvalue(_:for:)"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/setnotifyvalue(_:for:)"]}],"metadata":{"externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC14setNotifyValue_3forySb_AA17CBMCharacteristicCtF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setNotifyValue"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"title":"setNotifyValue(_:for:)","symbolKind":"method","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"setNotifyValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"enabled","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/setNotifyValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.setNotifyValue(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/setNotifyValue(_:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/setnotifyvalue(_:for:)","kind":"symbol","role":"symbol","title":"setNotifyValue(_:for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"setNotifyValue","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/setNotifyValue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/state.json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/state.json index 1312087..77e6f07 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/state.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/state.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":" "},{"kind":"keyword","text":"dynamic"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/state"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/state","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.state"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"title":"state","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralPreview(py)state","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/state":{"role":"symbol","title":"state","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralState","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/state","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"}}} \ No newline at end of file +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheral.state","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/state"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/state"},"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"state"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","text":"CBMPeripheralState"}],"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMPeripheralPreview(py)state","role":"symbol","symbolKind":"property","title":"state","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"attribute","text":"@objc"},{"text":" ","kind":"text"},{"text":"dynamic","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","text":"CBMPeripheralState","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea"},{"kind":"text","text":" { get }"}]}]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/state":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/state","kind":"symbol","role":"symbol","title":"state","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"state","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock18CBMPeripheralStatea","kind":"typeIdentifier","text":"CBMPeripheralState"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/state"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:).json index 724f2cc..c2ff012 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"title":"writeValue(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC10writeValue_3fory10Foundation4DataV_AA13CBMDescriptorCtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}]}],"sections":[],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":")","kind":"text"}],"title":"writeValue(_:for:)","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC10writeValue_3fory10Foundation4DataV_AA13CBMDescriptorCtF","symbolKind":"method","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/writeValue(_:for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:)","kind":"symbol","role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier","text":"CBMDescriptor"},{"text":")","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:).json index fb069de..16cf465 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:type:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:type:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"title":"writeValue(_:for:type:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC10writeValue_3for4typey10Foundation4DataV_AA17CBMCharacteristicCSo25CBCharacteristicWriteTypeVtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:type:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:type:)"},"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":")","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"writeValue(_:for:type:)","externalID":"s:17CoreBluetoothMock20CBMPeripheralPreviewC10writeValue_3for4typey10Foundation4DataV_AA17CBMCharacteristicCSo25CBCharacteristicWriteTypeVtF","role":"symbol","symbolKind":"method"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheral.writeValue(_:for:type:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType"},{"kind":"text","text":")"}],"platforms":["macOS"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:type:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview/writeValue(_:for:type:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:type:)","kind":"symbol","role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristicWriteType","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"text":")","kind":"text"}],"type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview\/writeValue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec.json index e9617b8..e298072 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Mocking Bluetooth LE Devices","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"title":"CBMPeripheralSpec","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}]},"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/SQ"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initialization","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]},{"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"]},{"title":"Advanced","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"]},{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"]},{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected"]},{"title":"Default Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations"],"generated":true}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This specification should represent the behavior of a real Bluetooth LE device as much as possible."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Use "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)"},{"type":"text","text":" to"},{"type":"text","text":" "},{"type":"text","text":"create a new instance builder."}]},{"anchor":"Mocking-a-Real-Peripheral","level":2,"type":"heading","text":"Mocking a Real Peripheral"},{"type":"paragraph","inlineContent":[{"type":"text","text":"By defining a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" instance you may create a mock implemntation"},{"type":"text","text":" "},{"type":"text","text":"of a real Bluetooth LE devices."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Such device can advertise (broadcast) Bluetooth LE packets, support connection,"},{"type":"text","text":" "},{"type":"text","text":"handle GATT events, like reading a characterstic value, sending notifications, etc."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"},{"type":"text","text":" can send scan and send GATT requests to such device just"},{"type":"text","text":" "},{"type":"text","text":"like the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"},{"type":"text","text":" can interact with real devices."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","title":"simulateMacChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateMacChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a change of the device’s MAC address."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","title":"simulateServiceChange(newName:newServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateServiceChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"Simulates a situation when the device changes its services."},{"type":"text","text":" "},{"type":"text","text":"Only services that were not in the previous list of services"},{"type":"text","text":" "},{"type":"text","text":"will be reported as invalidated."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"role":"symbol","title":"simulateReset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isAdvertisingWhenConnected":{"role":"symbol","title":"isAdvertisingWhenConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisementData":{"role":"symbol","title":"advertisementData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"The device’s advertising data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"role":"symbol","title":"simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Creates a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"type":"text","text":" instance, which can be used to define"},{"type":"text","text":" "},{"type":"text","text":"the behavior or a mocked peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisingInterval":{"role":"symbol","title":"advertisingInterval","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The advertising interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","title":"simulateConnection()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateConnection"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates the situation when another application on the device"},{"type":"text","text":" "},{"type":"text","text":"connects to the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"role":"symbol","title":"simulateDisconnection(withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralSpec"}]}]},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"overview","text":"Overview"},{"inlineContent":[{"text":"This specification should represent the behavior of a real Bluetooth LE device as much as possible.","type":"text"}],"type":"paragraph"},{"inlineContent":[{"text":"Use ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","isActive":true},{"type":"text","text":" to"},{"text":" ","type":"text"},{"type":"text","text":"create a new instance builder."}],"type":"paragraph"},{"type":"heading","level":2,"text":"Mocking a Real Peripheral","anchor":"Mocking-a-Real-Peripheral"},{"inlineContent":[{"text":"By defining a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","type":"reference"},{"type":"text","text":" instance you may create a mock implemntation"},{"text":" ","type":"text"},{"text":"of a real Bluetooth LE devices.","type":"text"}],"type":"paragraph"},{"inlineContent":[{"text":"Such device can advertise (broadcast) Bluetooth LE packets, support connection,","type":"text"},{"type":"text","text":" "},{"text":"handle GATT events, like reading a characterstic value, sending notifications, etc.","type":"text"}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","isActive":true,"type":"reference"},{"type":"text","text":" can send scan and send GATT requests to such device just"},{"type":"text","text":" "},{"type":"text","text":"like the "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","isActive":true},{"type":"text","text":" can interact with real devices."}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"relationshipsSections":[{"type":"conformsTo","identifiers":["doc:\/\/CoreBluetoothMock\/SQ"],"title":"Conforms To","kind":"relationships"}],"seeAlsoSections":[{"title":"Mocking Bluetooth LE Devices","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"],"generated":true}],"metadata":{"roleHeading":"Class","title":"CBMPeripheralSpec","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralSpec","kind":"identifier"}],"symbolKind":"class","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}]},"topicSections":[{"title":"Initialization","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"],"title":"Simulation Methods"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"],"title":"Advanced"},{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected"],"title":"Deprecated"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations"],"generated":true,"title":"Default Implementations"}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateServiceChange","kind":"identifier"},{"kind":"text","text":"("},{"text":"newName","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"text":"newServices","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"type":"topic","title":"simulateServiceChange(newName:newServices:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)","abstract":[{"text":"Simulates a situation when the device changes its services.","type":"text"},{"text":" ","type":"text"},{"text":"Only services that were not in the previous list of services","type":"text"},{"type":"text","text":" "},{"text":"will be reported as invalidated.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"text":"identifier","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier","text":"UUID"},{"kind":"text","text":", "},{"text":"proximity","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"kind":"symbol","role":"symbol","title":"simulatePeripheral(identifier:proximity:)","abstract":[{"type":"text","text":"Creates a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"text":" instance, which can be used to define","type":"text"},{"text":" ","type":"text"},{"text":"the behavior or a mocked peripheral.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"},"doc://CoreBluetoothMock/SQ":{"title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"simulateReset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisingInterval":{"deprecated":true,"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"advertisingInterval","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"The advertising interval."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval","title":"advertisingInterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isAdvertisingWhenConnected":{"deprecated":true,"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"isAdvertisingWhenConnected","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected","title":"isAdvertisingWhenConnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisementData":{"deprecated":true,"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"advertisementData","kind":"identifier"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","role":"symbol","kind":"symbol","abstract":[{"text":"The device’s advertising data.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata","title":"advertisementData"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateMacChange","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":")","kind":"text"}],"type":"topic","title":"simulateMacChange(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)","abstract":[{"text":"Simulates a change of the device’s MAC address.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateConnection","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","title":"simulateConnection()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()","abstract":[{"text":"Simulates the situation when another application on the device","type":"text"},{"text":" ","type":"text"},{"text":"connects to the device.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Equatable-Implementations":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"Equatable Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations","kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateDisconnection","kind":"identifier"},{"kind":"text","text":"("},{"text":"withError","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"simulateDisconnection(withError:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:).json index 9fc407e..d56a42b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:17CoreBluetoothMock17CBMPeripheralSpecC","extendedModule":"Swift","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/!=(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]}],"kind":"declarations"}],"sections":[],"metadata":{"extendedModule":"Swift","roleHeading":"Operator","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"CoreBluetoothMock"}],"title":"!=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:17CoreBluetoothMock17CBMPeripheralSpecC","symbolKind":"op"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Equatable-Implementations":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"Equatable Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations","kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/!=(_:_:)":{"title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"role":"symbol","abstract":[],"type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/!=(_:_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:).json index 4b64c01..1ab30ed 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/==(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"==(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC2eeoiySbAC_ACtFZ","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/==(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/==(_:_:)"},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"roleHeading":"Operator","modules":[{"name":"CoreBluetoothMock"}],"title":"==(_:_:)","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC2eeoiySbAC_ACtFZ","symbolKind":"op","extendedModule":"CoreBluetoothMock","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Equatable-Implementations":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations","abstract":[],"role":"collectionGroup","type":"topic","title":"Equatable Implementations","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations","kind":"article"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/==(_:_:)":{"title":"==(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol","type":"topic","abstract":[],"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/==(_:_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/==(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisement.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisement.json index 590baf8..0016e21 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisement.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisement.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig"},{"kind":"text","text":"]? { get }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A device can advertise with multiple packets with different advertising interval and"},{"type":"text","text":" "},{"type":"text","text":"initial delay."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"0.15.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"title":"advertisement","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC13advertisementSayAA22CBMAdvertisementConfigVGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig"},{"kind":"text","text":"]? { get }"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A device can advertise with multiple packets with different advertising interval and"},{"type":"text","text":" "},{"text":"initial delay.","type":"text"}]},{"name":"Since","type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"0.15.0"}]}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"kind":"symbol","seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true,"title":"Properties"}],"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}],"modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC13advertisementSayAA22CBMAdvertisementConfigVGSgvp","title":"advertisement","symbolKind":"property","roleHeading":"Instance Property"},"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata.json index 0a2669b..12dc7ec 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This property was deprecated in version 0.15.0 with added support for multiple"},{"type":"text","text":" "},{"type":"text","text":"advertisements per peripheral. Use "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement"},{"type":"text","text":" instead."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use advertisement configurations instead"}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The device’s advertising data."}],"kind":"symbol","metadata":{"role":"symbol","title":"advertisementData","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC17advertisementDataSDySSypGSgvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisingInterval":{"role":"symbol","title":"advertisingInterval","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The advertising interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisementData":{"role":"symbol","title":"advertisementData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"The device’s advertising data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isAdvertisingWhenConnected":{"role":"symbol","title":"isAdvertisingWhenConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"metadata":{"roleHeading":"Instance Property","platforms":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advertisementData"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"advertisementData","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC17advertisementDataSDySSypGSgvp","role":"symbol","symbolKind":"property"},"seeAlsoSections":[{"generated":true,"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected"]}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use advertisement configurations instead","type":"text"}]}],"kind":"symbol","abstract":[{"type":"text","text":"The device’s advertising data."}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advertisementData"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]? { "},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}]},{"content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"inlineContent":[{"type":"text","text":"This property was deprecated in version 0.15.0 with added support for multiple"},{"type":"text","text":" "},{"type":"text","text":"advertisements per peripheral. Use "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","isActive":true,"type":"reference"},{"type":"text","text":" instead."}],"type":"paragraph"}],"kind":"content"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisementData":{"deprecated":true,"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"advertisementData","kind":"identifier"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","role":"symbol","kind":"symbol","abstract":[{"text":"The device’s advertising data.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata","title":"advertisementData"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisingInterval":{"deprecated":true,"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"advertisingInterval","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"The advertising interval."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval","title":"advertisingInterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isAdvertisingWhenConnected":{"deprecated":true,"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"isAdvertisingWhenConnected","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected","title":"isAdvertisingWhenConnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval.json index b1a9e6e..79594d1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This property was deprecated in version 0.15.0 with added support for multiple"},{"type":"text","text":" "},{"type":"text","text":"advertisements per peripheral. Use "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement"},{"type":"text","text":" instead."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use advertisement configurations instead"}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The advertising interval."}],"kind":"symbol","metadata":{"role":"symbol","title":"advertisingInterval","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC19advertisingIntervalSdSgvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isAdvertisingWhenConnected":{"role":"symbol","title":"isAdvertisingWhenConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisingInterval":{"role":"symbol","title":"advertisingInterval","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The advertising interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisementData":{"role":"symbol","title":"advertisementData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"The device’s advertising data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected"],"generated":true}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","interfaceLanguage":"swift"},"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use advertisement configurations instead"}],"type":"paragraph"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"text":"The advertising interval.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"advertisingInterval","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"? { "},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"]}]},{"kind":"content","content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"This property was deprecated in version 0.15.0 with added support for multiple","type":"text"},{"type":"text","text":" "},{"type":"text","text":"advertisements per peripheral. Use "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement"},{"text":" instead.","type":"text"}]}]}],"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"advertisingInterval","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"advertisingInterval","role":"symbol","platforms":[],"symbolKind":"property","roleHeading":"Instance Property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC19advertisingIntervalSdSgvp"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisementData":{"deprecated":true,"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"advertisementData","kind":"identifier"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","role":"symbol","kind":"symbol","abstract":[{"text":"The device’s advertising data.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata","title":"advertisementData"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisingInterval":{"deprecated":true,"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"advertisingInterval","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"The advertising interval."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval","title":"advertisingInterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isAdvertisingWhenConnected":{"deprecated":true,"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"isAdvertisingWhenConnected","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected","title":"isAdvertisingWhenConnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder.json index 9bcebec..5aa14d4 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Initialization","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The builder should be used to create a mock implementation of a real peripheral device."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Call "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()"},{"type":"text","text":" to create a mock peripheral specification."}]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"Builder"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/build()":{"role":"symbol","title":"build()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"build"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}],"abstract":[{"type":"text","text":"Builds the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)":{"role":"symbol","title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"kind":"text","text":"("},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"withInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"type":"text","text":" "},{"type":"text","text":"interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"role":"symbol","title":"simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Creates a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"type":"text","text":" instance, which can be used to define"},{"type":"text","text":" "},{"type":"text","text":"the behavior or a mocked peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connectable(name:services:delegate:connectionInterval:mtu:)":{"role":"symbol","title":"connectable(name:services:delegate:connectionInterval:mtu:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device connectable, but not connected at the moment"},{"type":"text","text":" "},{"type":"text","text":"of initialization."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connected(name:services:delegate:connectionInterval:mtu:)":{"role":"symbol","title":"connected(name:services:delegate:connectionInterval:mtu:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device connectable, and also marks already connected"},{"type":"text","text":" "},{"type":"text","text":"by some other application. Such device, if not advertising,"},{"type":"text","text":" "},{"type":"text","text":"can be obtained using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","metadata":{"symbolKind":"class","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Builder"}],"navigatorTitle":[{"kind":"identifier","text":"Builder"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Class","role":"symbol","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","title":"CBMPeripheralSpec.Builder"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Defines the behavior of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","type":"reference","isActive":true},{"text":" object.","type":"text"}],"seeAlsoSections":[{"generated":true,"title":"Initialization","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"Builder","kind":"identifier"}]}]},{"content":[{"type":"heading","text":"Overview","level":2,"anchor":"overview"},{"type":"paragraph","inlineContent":[{"text":"The builder should be used to create a mock implementation of a real peripheral device.","type":"text"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Call "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","type":"reference"},{"type":"text","text":" to create a mock peripheral specification."}]}],"kind":"content"}],"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connectable(name:services:delegate:connectionInterval:mtu:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","text":"CBMPeripheralSpecDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"connectionInterval","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"kind":"text","text":", "},{"text":"mtu","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"connectable(name:services:delegate:connectionInterval:mtu:)","abstract":[{"text":"Makes the device connectable, but not connected at the moment","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"of initialization."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/build()":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"build","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}],"kind":"symbol","role":"symbol","title":"build()","abstract":[{"type":"text","text":"Builds the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":" object.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"kind":"symbol","role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","abstract":[{"text":"Returns a list of the peripherals connected to the system whose","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"services match a given set of criteria."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"text":"(","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"], ","kind":"text"},{"text":"withInterval","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"kind":"symbol","role":"symbol","title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"text":" ","type":"text"},{"text":"interval.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"text":"identifier","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier","text":"UUID"},{"kind":"text","text":", "},{"text":"proximity","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"kind":"symbol","role":"symbol","title":"simulatePeripheral(identifier:proximity:)","abstract":[{"type":"text","text":"Creates a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"text":" instance, which can be used to define","type":"text"},{"text":" ","type":"text"},{"text":"the behavior or a mocked peripheral.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connected(name:services:delegate:connectionInterval:mtu:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connected","kind":"identifier"},{"kind":"text","text":"("},{"text":"name","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":", "},{"text":"services","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier","text":"CBMServiceMock"},{"text":"], ","kind":"text"},{"text":"delegate","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate"},{"text":"?, ","kind":"text"},{"text":"connectionInterval","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"connected(name:services:delegate:connectionInterval:mtu:)","abstract":[{"text":"Makes the device connectable, and also marks already connected","type":"text"},{"text":" ","type":"text"},{"text":"by some other application. Such device, if not advertising,","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"can be obtained using "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:).json index 7ff3352..639b49a 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"kind":"text","text":"("},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"withInterval"},{"kind":"text","text":" "},{"kind":"internalParam","text":"interval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":" = 0.100, "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":" = 0.0, "},{"kind":"externalParam","text":"alsoWhenConnected"},{"kind":"text","text":" "},{"kind":"internalParam","text":"advertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"advertisementData","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The advertising data."}]}]},{"name":"interval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Advertising interval, in seconds. Use 0 for one time advertisements."}]}]},{"name":"delay","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The delay of the first packet of that type, counted from when the peripheral"},{"type":"text","text":" "},{"type":"text","text":"is added to the simulation."}]}]},{"name":"advertisingWhenConnected","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If "},{"type":"codeVoice","code":"true"},{"type":"text","text":", the device will also"},{"type":"text","text":" "},{"type":"text","text":"be returned in scan results when"},{"type":"text","text":" "},{"type":"text","text":"connected. By default set to"},{"type":"text","text":" "},{"type":"codeVoice","code":"false"},{"type":"text","text":"."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The builder."}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Starting from version 0.15.0 this method may be called multiple times"},{"type":"text","text":" "},{"type":"text","text":"if the device advertises with muiltiple different packets."}]}],"type":"aside","name":"Note"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"type":"text","text":" "},{"type":"text","text":"interval."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"kind":"text","text":"("},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"withInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC11advertising17advertisementData12withInterval5delay17alsoWhenConnectedAESDySSypG_S2dSbtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)":{"role":"symbol","title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"kind":"text","text":"("},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"withInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"type":"text","text":" "},{"type":"text","text":"interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"advertising","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"], ","kind":"text"},{"text":"withInterval","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"interval","kind":"internalParam"},{"kind":"text","text":": "},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":" = 0.100, "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":" = 0.0, "},{"kind":"externalParam","text":"alsoWhenConnected"},{"kind":"text","text":" "},{"kind":"internalParam","text":"advertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" = false) -> "},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec"},{"text":".","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","text":"Builder","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"name":"advertisementData","content":[{"inlineContent":[{"type":"text","text":"The advertising data."}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Advertising interval, in seconds. Use 0 for one time advertisements."}]}],"name":"interval"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The delay of the first packet of that type, counted from when the peripheral"},{"text":" ","type":"text"},{"type":"text","text":"is added to the simulation."}]}],"name":"delay"},{"name":"advertisingWhenConnected","content":[{"type":"paragraph","inlineContent":[{"text":"If ","type":"text"},{"type":"codeVoice","code":"true"},{"type":"text","text":", the device will also"},{"text":" ","type":"text"},{"text":"be returned in scan results when","type":"text"},{"type":"text","text":" "},{"text":"connected. By default set to","type":"text"},{"text":" ","type":"text"},{"code":"false","type":"codeVoice"},{"type":"text","text":"."}]}]}]},{"content":[{"type":"heading","anchor":"return-value","level":2,"text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The builder."}]}],"kind":"content"},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"type":"aside","name":"Note","style":"note","content":[{"inlineContent":[{"type":"text","text":"Starting from version 0.15.0 this method may be called multiple times"},{"type":"text","text":" "},{"type":"text","text":"if the device advertises with multiple different packets."}],"type":"paragraph"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"text":" ","type":"text"},{"text":"interval.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)"]}],"metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"advertising","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"withInterval"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"delay","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"text":"alsoWhenConnected","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC11advertising17advertisementData12withInterval5delay17alsoWhenConnectedAESDySSypG_S2dSbtF","roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"text":"(","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"], ","kind":"text"},{"text":"withInterval","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"kind":"symbol","role":"symbol","title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"text":" ","type":"text"},{"text":"interval.","type":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval().json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval().json index 0471ba5..f1b96b0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"That means, that the manager has perviously scanned and cached the"},{"type":"text","text":" "},{"type":"text","text":"peripheral and can obtain it by the identfier."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"title":"allowForRetrieval()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC17allowForRetrievalAEyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allowForRetrieval","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":".","kind":"text"},{"text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]},{"content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"That means, that the manager has perviously scanned and cached the"},{"text":" ","type":"text"},{"type":"text","text":"peripheral and can obtain it by the identifier."}]}],"kind":"content"}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Make the peripheral available through"},{"text":" ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","type":"reference"},{"text":" ","type":"text"},{"type":"text","text":"without scanning."}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"allowForRetrieval","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Builder","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"role":"symbol","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC17allowForRetrievalAEyF","title":"allowForRetrieval()","symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/build().json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/build().json index 95913ea..f206a9b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/build().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/build().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"build"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Builds the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"build"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}],"title":"build()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC5buildACyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/build()":{"role":"symbol","title":"build()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"build"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}],"abstract":[{"type":"text","text":"Builds the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"build","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"kind":"symbol","metadata":{"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"title":"build()","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC5buildACyF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"build"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}],"role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()"]}],"sections":[],"abstract":[{"type":"text","text":"Builds the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","type":"reference","isActive":true},{"text":" object.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/build()":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"build","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}],"kind":"symbol","role":"symbol","title":"build()","abstract":[{"type":"text","text":"Builds the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":" object.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:).json index 1653d0c..31eb64a 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","text":"CBMPeripheralSpecDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":" = 0.045, "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" = 23) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"name","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The device name, returned by Device Name characteristic."}]}]},{"name":"services","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"List of services that will be returned from service"},{"type":"text","text":" "},{"type":"text","text":"discovery."}]}]},{"name":"connectionDelegate","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The connection delegate that will handle"},{"type":"text","text":" "},{"type":"text","text":"GATT requests."}]}]},{"name":"connectionInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Connection interval, in seconds."}]}]},{"name":"mtu","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The MTU (Maximum Transfer Unit). Min 23 (default), max 517."},{"type":"text","text":" "},{"type":"text","text":"The maximum value length for Write Without Response is"},{"type":"text","text":" "},{"type":"text","text":"MTU - 3 bytes (3 bytes are used by GATT for handle and"},{"type":"text","text":" "},{"type":"text","text":"command)."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Makes the device connectable, but not connected at the moment"},{"type":"text","text":" "},{"type":"text","text":"of initialization."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"title":"connectable(name:services:delegate:connectionInterval:mtu:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC11connectable4name8services8delegate18connectionInterval3mtuAESS_SayAA010CBMServiceC0CGAA0dE8Delegate_pSgSdSitF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connectable(name:services:delegate:connectionInterval:mtu:)":{"role":"symbol","title":"connectable(name:services:delegate:connectionInterval:mtu:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device connectable, but not connected at the moment"},{"type":"text","text":" "},{"type":"text","text":"of initialization."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectable","kind":"identifier"},{"text":"(","kind":"text"},{"text":"name","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"text":"services","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"text":"delegate","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","text":"CBMPeripheralSpecDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"text":": ","kind":"text"},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":" = 0.045, ","kind":"text"},{"text":"mtu","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":" = 23) -> "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":".","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"typeIdentifier"}]}],"kind":"declarations"},{"parameters":[{"name":"name","content":[{"inlineContent":[{"type":"text","text":"The device name, returned by Device Name characteristic."}],"type":"paragraph"}]},{"name":"services","content":[{"inlineContent":[{"type":"text","text":"List of services that will be returned from service"},{"type":"text","text":" "},{"type":"text","text":"discovery."}],"type":"paragraph"}]},{"name":"connectionDelegate","content":[{"inlineContent":[{"text":"The connection delegate that will handle","type":"text"},{"type":"text","text":" "},{"type":"text","text":"GATT requests."}],"type":"paragraph"}]},{"name":"connectionInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Connection interval, in seconds."}]}]},{"content":[{"inlineContent":[{"type":"text","text":"The MTU (Maximum Transfer Unit). Min 23 (default), max 517."},{"type":"text","text":" "},{"type":"text","text":"The maximum value length for Write Without Response is"},{"text":" ","type":"text"},{"text":"MTU - 3 bytes (3 bytes are used by GATT for handle and","type":"text"},{"type":"text","text":" "},{"type":"text","text":"command)."}],"type":"paragraph"}],"name":"mtu"}],"kind":"parameters"}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"text":"name","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"services","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"text":"CBMPeripheralSpecDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"text":"?, ","kind":"text"},{"text":"connectionInterval","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"kind":"text","text":", "},{"text":"mtu","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":".","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder","kind":"typeIdentifier"}],"title":"connectable(name:services:delegate:connectionInterval:mtu:)","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"method","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC11connectable4name8services8delegate18connectionInterval3mtuAESS_SayAA010CBMServiceC0CGAA0dE8Delegate_pSgSdSitF"},"abstract":[{"type":"text","text":"Makes the device connectable, but not connected at the moment"},{"type":"text","text":" "},{"type":"text","text":"of initialization."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connectable(name:services:delegate:connectionInterval:mtu:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","text":"CBMPeripheralSpecDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"connectionInterval","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"kind":"text","text":", "},{"text":"mtu","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"connectable(name:services:delegate:connectionInterval:mtu:)","abstract":[{"text":"Makes the device connectable, but not connected at the moment","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"of initialization."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:).json index e85ef2a..815f845 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","text":"CBMPeripheralSpecDelegate"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":" = 0.045, "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" = 23) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"name","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The device name, returned by Device Name characteristic."}]}]},{"name":"services","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"List of services that will be returned from service"},{"type":"text","text":" "},{"type":"text","text":"discovery."}]}]},{"name":"connectionDelegate","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The connection delegate that will handle"},{"type":"text","text":" "},{"type":"text","text":"GATT requests."}]}]},{"name":"connectionInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Connection interval, in seconds."}]}]},{"name":"mtu","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The MTU (Maximum Transfer Unit). Min 23 (default), max 517."},{"type":"text","text":" "},{"type":"text","text":"The maximum value length for Write Without Response is"},{"type":"text","text":" "},{"type":"text","text":"MTU - 3 bytes (3 bytes are used by GATT for handle and"},{"type":"text","text":" "},{"type":"text","text":"command)."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral needs to be in range."}]}],"type":"aside","name":"Note"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Makes the device connectable, and also marks already connected"},{"type":"text","text":" "},{"type":"text","text":"by some other application. Such device, if not advertising,"},{"type":"text","text":" "},{"type":"text","text":"can be obtained using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"title":"connected(name:services:delegate:connectionInterval:mtu:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC9connected4name8services8delegate18connectionInterval3mtuAESS_SayAA010CBMServiceC0CGAA0dE8Delegate_pSgSdSitF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connected(name:services:delegate:connectionInterval:mtu:)":{"role":"symbol","title":"connected(name:services:delegate:connectionInterval:mtu:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device connectable, and also marks already connected"},{"type":"text","text":" "},{"type":"text","text":"by some other application. Such device, if not advertising,"},{"type":"text","text":" "},{"type":"text","text":"can be obtained using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)"},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC9connected4name8services8delegate18connectionInterval3mtuAESS_SayAA010CBMServiceC0CGAA0dE8Delegate_pSgSdSitF","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connected"},{"text":"(","kind":"text"},{"text":"name","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"title":"connected(name:services:delegate:connectionInterval:mtu:)","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"connected","kind":"identifier"},{"text":"(","kind":"text"},{"text":"name","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"},{"text":"], ","kind":"text"},{"text":"delegate","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"connectionInterval"},{"text":": ","kind":"text"},{"text":"TimeInterval","kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":" = 0.045, ","kind":"text"},{"text":"mtu","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":" = 23) -> ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","text":"Builder","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"name","content":[{"type":"paragraph","inlineContent":[{"text":"The device name, returned by Device Name characteristic.","type":"text"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"List of services that will be returned from service"},{"text":" ","type":"text"},{"type":"text","text":"discovery."}]}],"name":"services"},{"content":[{"inlineContent":[{"text":"The connection delegate that will handle","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"GATT requests."}],"type":"paragraph"}],"name":"connectionDelegate"},{"content":[{"type":"paragraph","inlineContent":[{"text":"Connection interval, in seconds.","type":"text"}]}],"name":"connectionInterval"},{"content":[{"type":"paragraph","inlineContent":[{"text":"The MTU (Maximum Transfer Unit). Min 23 (default), max 517.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The maximum value length for Write Without Response is"},{"type":"text","text":" "},{"type":"text","text":"MTU - 3 bytes (3 bytes are used by GATT for handle and"},{"text":" ","type":"text"},{"text":"command).","type":"text"}]}],"name":"mtu"}]},{"content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"name":"Note","type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"text":"The peripheral needs to be in range.","type":"text"}]}]}],"kind":"content"}],"abstract":[{"type":"text","text":"Makes the device connectable, and also marks already connected"},{"type":"text","text":" "},{"type":"text","text":"by some other application. Such device, if not advertising,"},{"text":" ","type":"text"},{"text":"can be obtained using ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"reference","isActive":true},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"kind":"symbol","role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","abstract":[{"text":"Returns a list of the peripherals connected to the system whose","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"services match a given set of criteria."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connected(name:services:delegate:connectionInterval:mtu:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connected","kind":"identifier"},{"kind":"text","text":"("},{"text":"name","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":", "},{"text":"services","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier","text":"CBMServiceMock"},{"text":"], ","kind":"text"},{"text":"delegate","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate"},{"text":"?, ","kind":"text"},{"text":"connectionInterval","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"connected(name:services:delegate:connectionInterval:mtu:)","abstract":[{"text":"Makes the device connectable, and also marks already connected","type":"text"},{"text":" ","type":"text"},{"text":"by some other application. Such device, if not advertising,","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"can be obtained using "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate.json index 060813e..df437d8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","text":"CBMPeripheralSpecDelegate"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"title":"connectionDelegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC18connectionDelegateAA0deG0_pSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"}}} \ No newline at end of file +{"abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"text":"?","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true,"title":"Properties"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC18connectionDelegateAA0deG0_pSgvp","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"property","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","text":"CBMPeripheralSpecDelegate","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"roleHeading":"Instance Property","title":"connectionDelegate"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval.json index 109a5de..6800b78 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The connection interval."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"title":"connectionInterval","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC18connectionIntervalSdSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"metadata":{"roleHeading":"Instance Property","title":"connectionInterval","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC18connectionIntervalSdSgvp","symbolKind":"property","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"kind":"symbol","abstract":[{"type":"text","text":"The connection interval."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionInterval","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"kind":"text","text":"?"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations.json index afdac5d..cdc4034 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/!=(_:_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/==(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/!=(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/==(_:_:)":{"role":"symbol","title":"==(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/==(_:_:)"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations"]}],"kind":"article","metadata":{"title":"Equatable Implementations","modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup"},"sections":[],"topicSections":[{"title":"Operators","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/!=(_:_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/==(_:_:)"],"generated":true}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Equatable-Implementations","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/==(_:_:)":{"title":"==(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol","type":"topic","abstract":[],"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/==(_:_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/==(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/!=(_:_:)":{"title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"role":"symbol","abstract":[],"type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/!=(_:_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/identifier.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/identifier.json index 227a11a..775262f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/identifier.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/identifier.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The peripheral identifier."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"title":"identifier","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC10identifier10Foundation4UUIDVvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier"},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"title":"Properties","generated":true}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Instance Property","title":"identifier","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"}],"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC10identifier10Foundation4UUIDVvp","role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier","text":"UUID"},{"kind":"text","text":" { get }"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"text":"The peripheral identifier.","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected.json index 7808e75..51cbeb5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This property was deprecated in version 0.15.0 with added support for multiple"},{"type":"text","text":" "},{"type":"text","text":"advertisements per peripheral. Use "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement"},{"type":"text","text":" instead."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use advertisement configurations instead"}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"kind":"symbol","metadata":{"role":"symbol","title":"isAdvertisingWhenConnected","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC26isAdvertisingWhenConnectedSbvp","modules":[{"name":"CoreBluetoothMock"}],"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isAdvertisingWhenConnected":{"role":"symbol","title":"isAdvertisingWhenConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisementData":{"role":"symbol","title":"advertisementData","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"The device’s advertising data."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisingInterval":{"role":"symbol","title":"advertisingInterval","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The advertising interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval"],"generated":true}],"kind":"symbol","metadata":{"platforms":[],"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC26isAdvertisingWhenConnectedSbvp","symbolKind":"property","title":"isAdvertisingWhenConnected"},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use advertisement configurations instead","type":"text"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}]},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"inlineContent":[{"type":"text","text":"This property was deprecated in version 0.15.0 with added support for multiple"},{"text":" ","type":"text"},{"text":"advertisements per peripheral. Use ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","isActive":true,"type":"reference"},{"type":"text","text":" instead."}],"type":"paragraph"}]}],"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisementData":{"deprecated":true,"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"advertisementData","kind":"identifier"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisementData","role":"symbol","kind":"symbol","abstract":[{"text":"The device’s advertising data.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata","title":"advertisementData"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isAdvertisingWhenConnected":{"deprecated":true,"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"isAdvertisingWhenConnected","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isAdvertisingWhenConnected","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s connected."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected","title":"isAdvertisingWhenConnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisingInterval":{"deprecated":true,"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"advertisingInterval","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisingInterval","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"The advertising interval."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval","title":"advertisingInterval"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isconnected.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isconnected.json index cec0fd9..0885e80 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isconnected.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isconnected.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isConnected","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC11isConnectedSbvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isConnected"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"metadata":{"role":"symbol","title":"isConnected","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC11isConnectedSbvp","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"symbolKind":"property"},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"kind":"symbol","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"title":"Properties"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isknown.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isknown.json index f283d2d..119e312 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isknown.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/isknown.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When set, the system has scanned for this device"},{"type":"text","text":" "},{"type":"text","text":"previously and stored its UUID."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isKnown","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7isKnownSbvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"}}} \ No newline at end of file +{"sections":[],"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"]}],"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isKnown","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"title":"isKnown","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC7isKnownSbvp","symbolKind":"property","role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isKnown","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" { get }"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","type":"heading","text":"Discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"When set, the system has scanned for this device","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"previously and stored its UUID."}]}]}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"text":" ","type":"text"},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true,"type":"reference"},{"type":"text","text":" "},{"type":"text","text":"or "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/mtu.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/mtu.json index 1d757fc..0ca6864 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/mtu.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/mtu.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Min value is 23, max 517."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The maximum value length for Write Without Response is MTU - 3 bytes, as 3 bytes"},{"type":"text","text":" "},{"type":"text","text":"are reserved for the Hndle number and Op Code on the GATT layer."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"title":"mtu","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC3mtuSiSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Property","role":"symbol","title":"mtu","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC3mtuSiSgvp","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":"?","kind":"text"}],"symbolKind":"property"},"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu"},"kind":"symbol","seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":"?","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]},{"content":[{"anchor":"discussion","type":"heading","text":"Discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"Min value is 23, max 517.","type":"text"}]},{"inlineContent":[{"type":"text","text":"The maximum value length for Write Without Response is MTU - 3 bytes, as 3 bytes"},{"text":" ","type":"text"},{"text":"are reserved for the Handle number and Op Code on the GATT layer.","type":"text"}],"type":"paragraph"}],"kind":"content"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/name.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/name.json index 415e7d5..1045b56 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/name.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/name.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"name","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC4nameSSSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"]}],"abstract":[{"text":"The name of the peripheral returned by Device Name characteristic.","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"? { get }"}],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"sections":[],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true,"title":"Properties"}],"metadata":{"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":"?","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"name","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC4nameSSSgvp","role":"symbol","symbolKind":"property"},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/proximity.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/proximity.json index b07dfeb..9d5bfe8 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/proximity.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/proximity.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"How far the device is."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"title":"proximity","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC9proximityAA12CBMProximityOvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"}}} \ No newline at end of file +{"sections":[],"seeAlsoSections":[{"generated":true,"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"]}],"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity","kind":"typeIdentifier"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Property","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC9proximityAA12CBMProximityOvp","title":"proximity","role":"symbol"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":" { get }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"How far the device is.","type":"text"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/services.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/services.json index 4c74f55..687910e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/services.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/services.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":"]? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"List of services available for service discovery."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"title":"services","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC8servicesSayAA010CBMServiceC0CGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","title":"advertisement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","title":"isConnected","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether the device is connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","title":"allowForRetrieval()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowForRetrieval"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Make the peripheral available through"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","title":"connectionDelegate","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that will handle connection requests."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","title":"isKnown","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()"},{"type":"text","text":" "},{"type":"text","text":"or "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","title":"services","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"List of services available for service discovery."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","title":"proximity","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}],"abstract":[{"type":"text","text":"How far the device is."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"}],"abstract":[{"type":"text","text":"The peripheral identifier."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","title":"connectionInterval","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The connection interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The MTU (Maximum Transfer Unit)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/services"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]? { get }"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown"],"generated":true,"title":"Properties"}],"metadata":{"roleHeading":"Instance Property","title":"services","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC8servicesSayAA010CBMServiceC0CGSgvp","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"services"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":"]?","kind":"text"}]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services"},"abstract":[{"text":"List of services available for service discovery.","type":"text"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/name":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/name","title":"name","kind":"symbol","abstract":[{"type":"text","text":"The name of the peripheral returned by Device Name characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionDelegate":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionDelegate","title":"connectionDelegate","abstract":[{"text":"The delegate that will handle connection requests.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connectionDelegate","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/services":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/services","title":"services","kind":"symbol","abstract":[{"type":"text","text":"List of services available for service discovery."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"services","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isConnected":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isConnected","title":"isConnected","abstract":[{"text":"A flag indicating whether the device is connected.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isConnected","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/identifier":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/identifier","title":"identifier","kind":"symbol","abstract":[{"type":"text","text":"The peripheral identifier."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"identifier","kind":"identifier"},{"kind":"text","text":": "},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/allowForRetrieval()":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","title":"allowForRetrieval()","abstract":[{"text":"Make the peripheral available through","type":"text"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":" "},{"type":"text","text":"without scanning."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowForRetrieval"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/proximity":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/proximity","title":"proximity","kind":"symbol","abstract":[{"type":"text","text":"How far the device is."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"proximity","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/connectionInterval":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/connectionInterval","kind":"symbol","title":"connectionInterval","abstract":[{"type":"text","text":"The connection interval."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","type":"topic","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"kind":"identifier","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"text":"?","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/isKnown":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/isKnown","title":"isKnown","kind":"symbol","abstract":[{"type":"text","text":"A flag indicating that the peripheral can be obtained using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"without scanning. This is set to true whenever the peripheral"},{"type":"text","text":" "},{"type":"text","text":"gets scanned, but can also be forced using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/allowForRetrieval()","isActive":true},{"type":"text","text":" "},{"text":"or ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isKnown"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/advertisement":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/advertisement","kind":"symbol","title":"advertisement","abstract":[{"type":"text","text":"Advertisement configurations of the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"advertisement","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/retrievePeripherals(withIdentifiers:)":{"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/retrievePeripherals(withIdentifiers:)","title":"retrievePeripherals(withIdentifiers:)","kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"retrievePeripherals","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withIdentifiers"},{"text":": [","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"]","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/mtu":{"role":"symbol","title":"mtu","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/mtu","abstract":[{"text":"The MTU (Maximum Transfer Unit).","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","type":"topic","fragments":[{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"mtu","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":"?"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:).json index efb0c04..2bc3bd1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"advertisement"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig"},{"kind":"text","text":"]?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"advertisement","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The new advertrising configuration."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The delays in the config will be applied from the time this method is called."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"0.15.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"title":"simulateAdvertisementChange(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC27simulateAdvertisementChangeyySayAA22CBMAdvertisementConfigVGSgF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"role":"symbol","title":"simulateDisconnection(withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"role":"symbol","title":"simulateReset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Simulates a change in the advertising packet.","type":"text"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"advertisement","kind":"internalParam"},{"text":": [","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"text":"]?)","kind":"text"}]}]},{"kind":"parameters","parameters":[{"name":"advertisement","content":[{"inlineContent":[{"type":"text","text":"The new advertising configuration."}],"type":"paragraph"}]}]},{"kind":"content","content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"The delays in the config will be applied from the time this method is called.","type":"text"}]},{"style":"note","name":"Since","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"0.15.0"}]}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","kind":"typeIdentifier","text":"CBMAdvertisementConfig"},{"text":"]?)","kind":"text"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC27simulateAdvertisementChangeyySayAA22CBMAdvertisementConfigVGSgF","symbolKind":"method","title":"simulateAdvertisementChange(_:)"},"sections":[],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"],"title":"Simulation Methods","generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateDisconnection","kind":"identifier"},{"kind":"text","text":"("},{"text":"withError","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"simulateDisconnection(withError:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"simulateReset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching().json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching().json index 7368ce0..9d46e71 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When scanning is performed by a mock central manager, and the device is"},{"type":"text","text":" "},{"type":"text","text":"in range, this gets called automatically."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"title":"simulateCaching()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC15simulateCachingyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Advanced","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","title":"simulateMacChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateMacChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a change of the device’s MAC address."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","title":"simulateConnection()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateConnection"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates the situation when another application on the device"},{"type":"text","text":" "},{"type":"text","text":"connects to the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","title":"simulateServiceChange(newName:newServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateServiceChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"Simulates a situation when the device changes its services."},{"type":"text","text":" "},{"type":"text","text":"Only services that were not in the previous list of services"},{"type":"text","text":" "},{"type":"text","text":"will be reported as invalidated."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)"}}} \ No newline at end of file +{"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"],"generated":true,"title":"Advanced"}],"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"simulateCaching()","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC15simulateCachingyyF","role":"symbol","symbolKind":"method"},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"text":"and caches scanned results. Scanned devices become available for retrieval","type":"text"},{"text":" ","type":"text"},{"text":"using ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","type":"reference","isActive":true},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"text":"()","kind":"text"}]}]},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"type":"paragraph","inlineContent":[{"text":"When scanning is performed by a mock central manager, and the device is","type":"text"},{"text":" ","type":"text"},{"text":"in range, this gets called automatically.","type":"text"}]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateMacChange","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":")","kind":"text"}],"type":"topic","title":"simulateMacChange(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)","abstract":[{"text":"Simulates a change of the device’s MAC address.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateConnection","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","title":"simulateConnection()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()","abstract":[{"text":"Simulates the situation when another application on the device","type":"text"},{"text":" ","type":"text"},{"text":"connects to the device.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateServiceChange","kind":"identifier"},{"kind":"text","text":"("},{"text":"newName","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"text":"newServices","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"type":"topic","title":"simulateServiceChange(newName:newServices:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)","abstract":[{"text":"Simulates a situation when the device changes its services.","type":"text"},{"text":" ","type":"text"},{"text":"Only services that were not in the previous list of services","type":"text"},{"type":"text","text":" "},{"text":"will be reported as invalidated.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection().json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection().json index 9eb9754..da64754 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateConnection"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the device has advertisement configuration with"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected"},{"type":"text","text":" flag set"},{"type":"text","text":" "},{"type":"text","text":"to "},{"type":"codeVoice","code":"false"},{"type":"text","text":", the given advertisement will stop showing up on scan results."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"A manager registered for connection event will receive an event."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Connected devices are be available for managers using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"type":"text","text":"."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral needs to be in range."}]}],"type":"aside","name":"Note"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates the situation when another application on the device"},{"type":"text","text":" "},{"type":"text","text":"connects to the device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateConnection"},{"kind":"text","text":"()"}],"title":"simulateConnection()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC18simulateConnectionyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Advanced","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","title":"simulateServiceChange(newName:newServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateServiceChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"Simulates a situation when the device changes its services."},{"type":"text","text":" "},{"type":"text","text":"Only services that were not in the previous list of services"},{"type":"text","text":" "},{"type":"text","text":"will be reported as invalidated."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","title":"simulateMacChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateMacChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a change of the device’s MAC address."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","title":"simulateConnection()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateConnection"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates the situation when another application on the device"},{"type":"text","text":" "},{"type":"text","text":"connects to the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/isAdvertisingWhenConnected":{"role":"symbol","title":"isAdvertisingWhenConnected","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Should the mock peripheral appear in scan results when it’s"},{"type":"text","text":" "},{"type":"text","text":"connected."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"text":"Simulates the situation when another application on the device","type":"text"},{"type":"text","text":" "},{"text":"connects to the device.","type":"text"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","interfaceLanguage":"swift"},"sections":[],"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"],"title":"Advanced"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateConnection","kind":"identifier"},{"text":"()","kind":"text"}],"languages":["swift"]}]},{"content":[{"text":"Discussion","anchor":"discussion","type":"heading","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the device has advertisement configuration with"},{"type":"text","text":" "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","type":"reference"},{"text":" flag set","type":"text"},{"type":"text","text":" "},{"text":"to ","type":"text"},{"code":"false","type":"codeVoice"},{"text":", the given advertisement will stop showing up on scan results.","type":"text"}]},{"inlineContent":[{"type":"text","text":"A manager registered for connection event will receive an event."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Connected devices are be available for managers using"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","isActive":true,"type":"reference"},{"text":".","type":"text"}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral needs to be in range."}]}],"name":"Note","type":"aside"}],"kind":"content"}],"metadata":{"role":"symbol","title":"simulateConnection()","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC18simulateConnectionyyF","roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateConnection","kind":"identifier"},{"text":"()","kind":"text"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"kind":"symbol","role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","abstract":[{"text":"Returns a list of the peripherals connected to the system whose","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"services match a given set of criteria."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig/isAdvertisingWhenConnected":{"role":"symbol","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isAdvertisingWhenConnected"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"type":"topic","title":"isAdvertisingWhenConnected","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig\/isAdvertisingWhenConnected","url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected","abstract":[{"text":"Should the mock peripheral appear in scan results when it’s","type":"text"},{"type":"text","text":" "},{"text":"connected.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateMacChange","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":")","kind":"text"}],"type":"topic","title":"simulateMacChange(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)","abstract":[{"text":"Simulates a change of the device’s MAC address.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateConnection","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","title":"simulateConnection()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()","abstract":[{"text":"Simulates the situation when another application on the device","type":"text"},{"text":" ","type":"text"},{"text":"connects to the device.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateServiceChange","kind":"identifier"},{"kind":"text","text":"("},{"text":"newName","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"text":"newServices","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"type":"topic","title":"simulateServiceChange(newName:newServices:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)","abstract":[{"text":"Simulates a situation when the device changes its services.","type":"text"},{"text":" ","type":"text"},{"text":"Only services that were not in the previous list of services","type":"text"},{"type":"text","text":" "},{"text":"will be reported as invalidated.","type":"text"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:).json index 3ad6347..78a8c00 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":" = CBMError(.peripheralDisconnected))"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The disconnection reason. Use "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError"},{"type":"text","text":" or"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError"},{"type":"text","text":" errors."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"All connected mock central managers will receive"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48"},{"type":"text","text":" callback."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"title":"simulateDisconnection(withError:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC21simulateDisconnection9withErrorys0I0_p_tF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didDisconnectPeripheral:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnectPeripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked upon the disconnection of a peripheral that was"},{"type":"text","text":" "},{"type":"text","text":"connected by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If the disconnection was not initiated by"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"type":"text","text":" "},{"type":"text","text":"Once this method has been called, no more methods will be"},{"type":"text","text":" "},{"type":"text","text":"invoked on peripheral’s "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"role":"symbol","title":"simulateDisconnection(withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"role":"symbol","title":"simulateReset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"role":"symbol","title":"CBMError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMError"}],"url":"\/documentation\/corebluetoothmock\/cbmerror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"role":"symbol","title":"cancelPeripheralConnection(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cancelPeripheralConnection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Cancels an active or pending local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"role":"symbol","title":"CBMATTError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMATTError"}],"url":"\/documentation\/corebluetoothmock\/cbmatterror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)"},"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"text":"(","kind":"text"},{"text":"withError","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":" = CBMError(.peripheralDisconnected))","kind":"text"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"text":"The disconnection reason. Use ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","type":"reference","isActive":true},{"type":"text","text":" or"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","isActive":true},{"text":" errors.","type":"text"}],"type":"paragraph"}],"name":"error"}]},{"kind":"content","content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"All connected mock central managers will receive","type":"text"},{"text":" ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","type":"reference"},{"text":" callback.","type":"text"}]}]}],"seeAlsoSections":[{"generated":true,"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"text":"Simulates peripheral disconnection from the device.","type":"text"}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC21simulateDisconnection9withErrorys0I0_p_tF","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":")","kind":"text"}],"title":"simulateDisconnection(withError:)","role":"symbol","symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/cancelPeripheralConnection(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"cancelPeripheralConnection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"text":"Cancels an active or pending local connection to a peripheral.","type":"text"}],"title":"cancelPeripheralConnection(_:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didDisconnectPeripheral:error:)-1lv48":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didDisconnectPeripheral:error:)-1lv48","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48","kind":"symbol","required":true,"abstract":[{"text":"This method is invoked upon the disconnection of a peripheral that was","type":"text"},{"text":" ","type":"text"},{"text":"connected by ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","type":"reference"},{"text":".","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"If the disconnection was not initiated by"},{"text":" ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/cancelPeripheralConnection(_:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"the cause will be detailed in the error parameter."},{"text":" ","type":"text"},{"text":"Once this method has been called, no more methods will be","type":"text"},{"text":" ","type":"text"},{"text":"invoked on peripheral’s ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","isActive":true,"type":"reference"},{"type":"text","text":"."}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"text":"CBMCentralManager","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"text":", ","kind":"text"},{"text":"didDisconnectPeripheral","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"role":"symbol","defaultImplementations":1,"type":"topic","title":"centralManager(_:didDisconnectPeripheral:error:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"simulateReset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMError","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"url":"\/documentation\/corebluetoothmock\/cbmerror","navigatorTitle":[{"text":"CBMError","kind":"identifier"}],"title":"CBMError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"url":"\/documentation\/corebluetoothmock\/cbmatterror","navigatorTitle":[{"text":"CBMATTError","kind":"identifier"}],"title":"CBMATTError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateDisconnection","kind":"identifier"},{"kind":"text","text":"("},{"text":"withError","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"simulateDisconnection(withError:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:).json index 52cce3f..c20e0ab 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateMacChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"newIdentifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":" = UUID())"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"newIdentifier","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The new peripheral identifier."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"MAC addresses are not available through iOS API. Each MAC gets"},{"type":"text","text":" "},{"type":"text","text":"assigned a UUID by which the device can be identified and retrieved"},{"type":"text","text":" "},{"type":"text","text":"after it has been scanned and cached."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"If a device is connected, this will not cause disconnection."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates a change of the device’s MAC address."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateMacChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":")"}],"title":"simulateMacChange(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC17simulateMacChangeyy10Foundation4UUIDVF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Advanced","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","title":"simulateMacChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateMacChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a change of the device’s MAC address."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","title":"simulateConnection()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateConnection"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates the situation when another application on the device"},{"type":"text","text":" "},{"type":"text","text":"connects to the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","title":"simulateServiceChange(newName:newServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateServiceChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"Simulates a situation when the device changes its services."},{"type":"text","text":" "},{"type":"text","text":"Only services that were not in the previous list of services"},{"type":"text","text":" "},{"type":"text","text":"will be reported as invalidated."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateMacChange"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"newIdentifier","kind":"internalParam"},{"kind":"text","text":": "},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"text":" = UUID())","kind":"text"}]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"newIdentifier","content":[{"inlineContent":[{"type":"text","text":"The new peripheral identifier."}],"type":"paragraph"}]}]},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"inlineContent":[{"type":"text","text":"MAC addresses are not available through iOS API. Each MAC gets"},{"type":"text","text":" "},{"type":"text","text":"assigned a UUID by which the device can be identified and retrieved"},{"text":" ","type":"text"},{"type":"text","text":"after it has been scanned and cached."}],"type":"paragraph"},{"inlineContent":[{"type":"text","text":"If a device is connected, this will not cause disconnection."}],"type":"paragraph"}],"kind":"content"}],"abstract":[{"type":"text","text":"Simulates a change of the device’s MAC address."}],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"],"generated":true,"title":"Advanced"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)"]}],"kind":"symbol","metadata":{"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC17simulateMacChangeyy10Foundation4UUIDVF","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"title":"simulateMacChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateMacChange"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateServiceChange","kind":"identifier"},{"kind":"text","text":"("},{"text":"newName","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"text":"newServices","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"type":"topic","title":"simulateServiceChange(newName:newServices:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)","abstract":[{"text":"Simulates a situation when the device changes its services.","type":"text"},{"text":" ","type":"text"},{"text":"Only services that were not in the previous list of services","type":"text"},{"type":"text","text":" "},{"text":"will be reported as invalidated.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateMacChange","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":")","kind":"text"}],"type":"topic","title":"simulateMacChange(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)","abstract":[{"text":"Simulates a change of the device’s MAC address.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateConnection","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","title":"simulateConnection()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()","abstract":[{"text":"Simulates the situation when another application on the device","type":"text"},{"text":" ","type":"text"},{"text":"connects to the device.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:).json index 9ea9a9c..b13d8a2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":" = UUID(), "},{"kind":"externalParam","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity"},{"kind":"text","text":" = .immediate) -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"identifier","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral identifier. If not given, a random"},{"type":"text","text":" "},{"type":"text","text":"UUID will be used."}]}]},{"name":"proximity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Approximate distance to the device. By default set"},{"type":"text","text":" "},{"type":"text","text":"to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate"},{"type":"text","text":"."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Use builder’s methods to customize your device and call "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()"},{"type":"text","text":" "},{"type":"text","text":"to create the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"type":"text","text":" instance, which can be used to define"},{"type":"text","text":" "},{"type":"text","text":"the behavior or a mocked peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"title":"simulatePeripheral(identifier:proximity:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC18simulatePeripheral10identifier9proximityAC7BuilderC10Foundation4UUIDV_AA12CBMProximityOtFZ","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Initialization","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/build()":{"role":"symbol","title":"build()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"build"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}],"abstract":[{"type":"text","text":"Builds the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"role":"symbol","title":"simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Creates a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"type":"text","text":" instance, which can be used to define"},{"type":"text","text":" "},{"type":"text","text":"the behavior or a mocked peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/immediate":{"role":"symbol","title":"CBMProximity.immediate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"immediate"}],"abstract":[{"type":"text","text":"The device will have RSSI values around -70 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/immediate"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Creates a "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","isActive":true},{"type":"text","text":" instance, which can be used to define"},{"type":"text","text":" "},{"text":"the behavior or a mocked peripheral.","type":"text"}],"seeAlsoSections":[{"generated":true,"title":"Initialization","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulatePeripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"identifier"},{"text":": ","kind":"text"},{"text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier"},{"kind":"text","text":" = UUID(), "},{"kind":"externalParam","text":"proximity"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"},{"kind":"text","text":" = .immediate) -> "},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":".","kind":"text"},{"text":"Builder","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"parameters":[{"name":"identifier","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral identifier. If not given, a random"},{"type":"text","text":" "},{"text":"UUID will be used.","type":"text"}]}]},{"content":[{"inlineContent":[{"text":"Approximate distance to the device. By default set","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"to "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate"},{"text":".","type":"text"}],"type":"paragraph"}],"name":"proximity"}],"kind":"parameters"},{"kind":"content","content":[{"anchor":"discussion","text":"Discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Use builder’s methods to customize your device and call "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","type":"reference","isActive":true},{"type":"text","text":" "},{"type":"text","text":"to create the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","isActive":true,"type":"reference"},{"type":"text","text":" object."}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulatePeripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"identifier","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","text":"UUID","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"proximity"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"simulatePeripheral(identifier:proximity:)","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC18simulatePeripheral10identifier9proximityAC7BuilderC10Foundation4UUIDV_AA12CBMProximityOtFZ","roleHeading":"Type Method"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"text":"identifier","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier","text":"UUID"},{"kind":"text","text":", "},{"text":"proximity","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"kind":"symbol","role":"symbol","title":"simulatePeripheral(identifier:proximity:)","abstract":[{"type":"text","text":"Creates a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"text":" instance, which can be used to define","type":"text"},{"text":" ","type":"text"},{"text":"the behavior or a mocked peripheral.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/build()":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/build()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"build","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"}],"kind":"symbol","role":"symbol","title":"build()","abstract":[{"type":"text","text":"Builds the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":" object.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/immediate":{"type":"topic","title":"CBMProximity.immediate","role":"symbol","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"immediate","kind":"identifier"}],"kind":"symbol","abstract":[{"type":"text","text":"The device will have RSSI values around -70 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","url":"\/documentation\/corebluetoothmock\/cbmproximity\/immediate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:).json index b562c8b..9e48935 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"proximity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The new peripheral proximity."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If the proximity is changed to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"},{"type":"text","text":", the peripheral will"},{"type":"text","text":" "},{"type":"text","text":"be disconnected and will not appear on scan results."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"title":"simulateProximityChange(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC23simulateProximityChangeyyAA12CBMProximityOF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"role":"symbol","title":"simulateReset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"role":"symbol","title":"simulateDisconnection(withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/outOfRange":{"role":"symbol","title":"CBMProximity.outOfRange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"outOfRange"}],"abstract":[{"type":"text","text":"The device is out of range."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"sections":[],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC23simulateProximityChangeyyAA12CBMProximityOF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateProximityChange","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity","kind":"typeIdentifier"},{"kind":"text","text":")"}],"symbolKind":"method","title":"simulateProximityChange(_:)","roleHeading":"Instance Method","role":"symbol"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateProximityChange","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"proximity"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity"},{"kind":"text","text":")"}]}]},{"kind":"parameters","parameters":[{"name":"proximity","content":[{"inlineContent":[{"type":"text","text":"The new peripheral proximity."}],"type":"paragraph"}]}]},{"content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"If the proximity is changed to ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"},{"text":", the peripheral will","type":"text"},{"type":"text","text":" "},{"text":"be disconnected and will not appear on scan results.","type":"text"}]}],"kind":"content"}],"abstract":[{"text":"Simulates a situation when the peripheral was moved closer","type":"text"},{"text":" ","type":"text"},{"text":"or away from the phone.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)"},"seeAlsoSections":[{"generated":true,"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateDisconnection","kind":"identifier"},{"kind":"text","text":"("},{"text":"withError","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"simulateDisconnection(withError:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"simulateReset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/outOfRange":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange","abstract":[{"text":"The device is out of range.","type":"text"}],"role":"symbol","title":"CBMProximity.outOfRange","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"outOfRange","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatereset().json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatereset().json index 51598db..3fb9827 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatereset().json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatereset().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral will start advertising again (if advertising was enabled) immediately."},{"type":"text","text":" "},{"type":"text","text":"Connected central managers will be notified after the supervision timeout is over."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"title":"simulateReset()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC13simulateResetyyF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"role":"symbol","title":"simulateDisconnection(withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"role":"symbol","title":"simulateReset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"sections":[],"abstract":[{"text":"Simulates a reset of the peripheral.","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateReset","kind":"identifier"},{"text":"()","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"inlineContent":[{"type":"text","text":"The peripheral will start advertising again (if advertising was enabled) immediately."},{"type":"text","text":" "},{"type":"text","text":"Connected central managers will be notified after the supervision timeout is over."}],"type":"paragraph"}],"kind":"content"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"]}],"seeAlsoSections":[{"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)"],"generated":true}],"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"text":"()","kind":"text"}],"roleHeading":"Instance Method","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC13simulateResetyyF","title":"simulateReset()"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateDisconnection","kind":"identifier"},{"kind":"text","text":"("},{"text":"withError","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"simulateDisconnection(withError:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"simulateReset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:).json index 5b7cd22..6c28ddd 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateServiceChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"newName","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The new device name after change."}]}]},{"name":"newServices","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The new services after change."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The device must be connectable, otherwise this method does"},{"type":"text","text":" "},{"type":"text","text":"nothing."}]},{"style":"important","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"In the mock implementation the order of services"},{"type":"text","text":" "},{"type":"text","text":"is irrelevant. This is in contrary to the physical"},{"type":"text","text":" "},{"type":"text","text":"Bluetooth LE device, where handle numbers depend"},{"type":"text","text":" "},{"type":"text","text":"on order of the services in the attribute database."}]}],"type":"aside","name":"Important"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates a situation when the device changes its services."},{"type":"text","text":" "},{"type":"text","text":"Only services that were not in the previous list of services"},{"type":"text","text":" "},{"type":"text","text":"will be reported as invalidated."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateServiceChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"])"}],"title":"simulateServiceChange(newName:newServices:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC21simulateServiceChange7newName0I8ServicesySSSg_SayAA010CBMServiceC0CGtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Advanced","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","title":"simulateMacChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateMacChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a change of the device’s MAC address."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","title":"simulateServiceChange(newName:newServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateServiceChange"},{"kind":"text","text":"("},{"kind":"externalParam","text":"newName"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"newServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"Simulates a situation when the device changes its services."},{"type":"text","text":" "},{"type":"text","text":"Only services that were not in the previous list of services"},{"type":"text","text":" "},{"type":"text","text":"will be reported as invalidated."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","title":"simulateConnection()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateConnection"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates the situation when another application on the device"},{"type":"text","text":" "},{"type":"text","text":"connects to the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"seeAlsoSections":[{"title":"Advanced","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)"],"generated":true}],"abstract":[{"type":"text","text":"Simulates a situation when the device changes its services."},{"text":" ","type":"text"},{"text":"Only services that were not in the previous list of services","type":"text"},{"type":"text","text":" "},{"text":"will be reported as invalidated.","type":"text"}],"metadata":{"externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC21simulateServiceChange7newName0I8ServicesySSSg_SayAA010CBMServiceC0CGtF","title":"simulateServiceChange(newName:newServices:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateServiceChange","kind":"identifier"},{"text":"(","kind":"text"},{"text":"newName","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"newServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"])"}]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateServiceChange","kind":"identifier"},{"kind":"text","text":"("},{"text":"newName","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"newServices"},{"text":": [","kind":"text"},{"text":"CBMServiceMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The new device name after change."}],"type":"paragraph"}],"name":"newName"},{"name":"newServices","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The new services after change."}]}]}]},{"content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The device must be connectable, otherwise this method does"},{"text":" ","type":"text"},{"type":"text","text":"nothing."}]},{"type":"aside","style":"important","name":"Important","content":[{"inlineContent":[{"type":"text","text":"In the mock implementation the order of services"},{"text":" ","type":"text"},{"type":"text","text":"is irrelevant. This is in contrary to the physical"},{"text":" ","type":"text"},{"text":"Bluetooth LE device, where handle numbers depend","type":"text"},{"text":" ","type":"text"},{"text":"on order of the services in the attribute database.","type":"text"}],"type":"paragraph"}]}],"kind":"content"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateServiceChange(newName:newServices:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateServiceChange","kind":"identifier"},{"kind":"text","text":"("},{"text":"newName","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"text":"newServices","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"type":"topic","title":"simulateServiceChange(newName:newServices:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateServiceChange(newName:newServices:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)","abstract":[{"text":"Simulates a situation when the device changes its services.","type":"text"},{"text":" ","type":"text"},{"text":"Only services that were not in the previous list of services","type":"text"},{"type":"text","text":" "},{"text":"will be reported as invalidated.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateMacChange","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":")","kind":"text"}],"type":"topic","title":"simulateMacChange(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)","abstract":[{"text":"Simulates a change of the device’s MAC address.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateConnection","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","title":"simulateConnection()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()","abstract":[{"text":"Simulates the situation when another application on the device","type":"text"},{"text":" ","type":"text"},{"text":"connects to the device.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:).json b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:).json index 3fc8537..303e864 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:).json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The notification\/indication data."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The characteristic from which a"},{"type":"text","text":" "},{"type":"text","text":"notification or indication is to be sent."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"All central managers that have enabled notifications on it"},{"type":"text","text":" "},{"type":"text","text":"will receive "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"title":"simulateValueUpdate(_:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC19simulateValueUpdate_3fory10Foundation4DataV_AA017CBMCharacteristicC0CtF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"seeAlsoSections":[{"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"role":"symbol","title":"simulateReset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-62302":{"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"role":"symbol","title":"simulateDisconnection(withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"]]},"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulateValueUpdate","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":")","kind":"text"}],"title":"simulateValueUpdate(_:for:)","externalID":"s:17CoreBluetoothMock17CBMPeripheralSpecC19simulateValueUpdate_3fory10Foundation4DataV_AA017CBMCharacteristicC0CtF"},"sections":[],"kind":"symbol","seeAlsoSections":[{"generated":true,"title":"Simulation Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"data","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"},{"kind":"text","text":")"}]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"data","content":[{"inlineContent":[{"text":"The notification\/indication data.","type":"text"}],"type":"paragraph"}]},{"name":"characteristic","content":[{"inlineContent":[{"text":"The characteristic from which a","type":"text"},{"text":" ","type":"text"},{"text":"notification or indication is to be sent.","type":"text"}],"type":"paragraph"}]}]},{"kind":"content","content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"All central managers that have enabled notifications on it","type":"text"},{"type":"text","text":" "},{"text":"will receive ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302","type":"reference"},{"text":".","type":"text"}]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"simulateReset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-62302":{"title":"peripheral(_:didUpdateValueFor:error:)","role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didUpdateValueFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-62302"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateDisconnection","kind":"identifier"},{"kind":"text","text":"("},{"text":"withError","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"simulateDisconnection(withError:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate.json index 7abaae0..aad78de 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Mocking Bluetooth LE Devices","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"title":"CBMPeripheralSpecDelegate","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Handling Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg"]},{"title":"Handling Service Discovery","abstract":[{"type":"text","text":"The default implementation will successfully return all requested attributes. This can be modified to return an error, if needed."}],"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"]},{"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"]},{"title":"Handling Notifications","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash"]},{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-4aash":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"type":"text","text":" "},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"defaultImplementations":1,"role":"symbol","title":"reset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"This method is called when the mock peripheral has been reset."},{"type":"text","text":" "},{"type":"text","text":"It should reset all values to the initial state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"defaultImplementations":1,"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when client requested enabling or disabling notifications or"},{"type":"text","text":" "},{"type":"text","text":"indications on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery of included services was"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDisconnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when disconnection was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"type":"text","text":"returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"}}} \ No newline at end of file +{"sections":[],"seeAlsoSections":[{"generated":true,"title":"Mocking Bluetooth LE Devices","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"]}],"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg"],"title":"Handling Connection Events"},{"abstract":[{"type":"text","text":"The default implementation will successfully return all requested attributes. This can be modified to return an error, if needed."}],"title":"Handling Service Discovery","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"]},{"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash"],"title":"Handling Notifications"},{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"]}],"metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Protocol","symbolKind":"protocol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","title":"CBMPeripheralSpecDelegate","role":"symbol"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f","required":true,"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","abstract":[{"text":"This method will be called when service discovery was initiated using a","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"text":"returned automatically based on the device specification.","type":"text"}],"title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q","role":"symbol","abstract":[{"text":"This method will be called when client requested enabling or disabling notifications or","type":"text"},{"text":" ","type":"text"},{"text":"indications on the given characteristic using a mock central manager.","type":"text"}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","role":"symbol","abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"role":"symbol","defaultImplementations":1,"title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","abstract":[{"text":"This method will be called when disconnection was initiated from a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"role":"symbol","defaultImplementations":1,"title":"peripheral(_:didDisconnect:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didDisconnect","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-4aash":{"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"text":" ","type":"text"},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash","title":"peripheral(_:didUpdateNotificationStateFor:error:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"text":"automatically based on the device specification.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","abstract":[{"text":"This method is called when the mock peripheral has been reset.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"It should reset all values to the initial state."}],"role":"symbol","defaultImplementations":1,"title":"reset()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reset"},{"text":"()","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"defaultImplementations":2,"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","abstract":[{"text":"This method will be called when service discovery of included services was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","defaultImplementations":2,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","abstract":[{"text":"This method will be called when write command has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65.json index 027f38f..f61f064 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral specification that is disconnected."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An optional reason of disconnection, in case it was initiated"},{"type":"text","text":" "},{"type":"text","text":"from the peripheral side."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-9slvl"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when disconnection was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDisconnect:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_13didDisconnectyAA0dE0C_s5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-9slvl":{"role":"symbol","title":"peripheral(_:didDisconnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-9slvl","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-9slvl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"defaultImplementations":1,"role":"symbol","title":"reset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"This method is called when the mock peripheral has been reset."},{"type":"text","text":" "},{"type":"text","text":"It should reset all values to the initial state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDisconnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when disconnection was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"defaultImplementations":1,"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didDisconnect","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}]}],"kind":"declarations"},{"parameters":[{"content":[{"inlineContent":[{"text":"The peripheral specification that is disconnected.","type":"text"}],"type":"paragraph"}],"name":"peripheral"},{"name":"error","content":[{"inlineContent":[{"type":"text","text":"An optional reason of disconnection, in case it was initiated"},{"text":" ","type":"text"},{"text":"from the peripheral side.","type":"text"}],"type":"paragraph"}]}],"kind":"parameters"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"This method will be called when disconnection was initiated from a","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager or peripheral side."}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-9slvl"]}],"kind":"symbol","seeAlsoSections":[{"title":"Handling Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg"],"generated":true}],"metadata":{"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_13didDisconnectyAA0dE0C_s5Error_pSgtF","role":"symbol","required":true,"title":"peripheral(_:didDisconnect:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"role":"symbol","defaultImplementations":1,"title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","abstract":[{"text":"This method will be called when disconnection was initiated from a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"role":"symbol","defaultImplementations":1,"title":"peripheral(_:didDisconnect:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didDisconnect","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-9slvl":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-9slvl","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-9slvl","title":"peripheral(_:didDisconnect:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didDisconnect","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","abstract":[{"text":"This method is called when the mock peripheral has been reset.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"It should reset all values to the initial state."}],"role":"symbol","defaultImplementations":1,"title":"reset()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reset"},{"text":"()","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl.json index bcb3636..fc894d5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-9slvl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-9slvl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didDisconnect:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didDisconnect:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_13didDisconnectyAA0dE0C_s5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-9slvl":{"role":"symbol","title":"peripheral(_:didDisconnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-9slvl","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-9slvl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDisconnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when disconnection was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didDisconnect:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDisconnect"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"error"},{"text":": ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}]}],"kind":"declarations"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-9slvl"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-9slvl"]}],"kind":"symbol","metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_13didDisconnectyAA0dE0C_s5Error_pSgtF","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"title":"peripheral(_:didDisconnect:)","role":"symbol","symbolKind":"method","extendedModule":"CoreBluetoothMock"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","abstract":[{"text":"This method will be called when disconnection was initiated from a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"role":"symbol","defaultImplementations":1,"title":"peripheral(_:didDisconnect:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didDisconnect","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-9slvl":{"kind":"symbol","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-9slvl","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-9slvl","title":"peripheral(_:didDisconnect:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didDisconnect","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal.json index 4abdca7..d586be6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target device."}]}]},{"name":"characteristicUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional characteristics requested."}]}]},{"name":"service","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The parent service."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or a service discovery error. The error will be reported"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_41didReceiveCharacteristicsDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA010CBMServiceC0CtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Service Discovery","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"role":"symbol","title":"characteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"role":"symbol","title":"discoverCharacteristics(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverCharacteristics"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified characteristics of a service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverCharacteristicsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the characteristic(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"type":"text","text":"returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery of included services was"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_41didReceiveCharacteristicsDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA010CBMServiceC0CtF","required":true,"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)"},"kind":"symbol","sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"This method will be called when characteristic discovery was initiated using a","type":"text"},{"type":"text","text":" "},{"text":"mock central manager. When success is returned, the characteristics will be returned","type":"text"},{"text":" ","type":"text"},{"text":"automatically based on the device specification.","type":"text"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier","text":"CBMServiceMock"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":">","kind":"text"}]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"inlineContent":[{"text":"The target device.","type":"text"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"text":"Optional characteristics requested.","type":"text"}],"type":"paragraph"}],"name":"characteristicUUIDs"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The parent service."}]}],"name":"service"}]},{"content":[{"anchor":"return-value","type":"heading","text":"Return Value","level":2},{"inlineContent":[{"type":"text","text":"Success, or a service discovery error. The error will be reported"},{"text":" ","type":"text"},{"type":"text","text":"using "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk","isActive":true,"type":"reference"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"}],"seeAlsoSections":[{"generated":true,"title":"Handling Service Discovery","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal"},"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f","required":true,"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","abstract":[{"text":"This method will be called when service discovery was initiated using a","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"text":"returned automatically based on the device specification.","type":"text"}],"title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5","type":"topic","kind":"symbol","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk":{"required":true,"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"didDiscoverCharacteristicsFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"reference"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"text":"If the characteristic(s) were read successfully, they can be retrieved via service’s","type":"text"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","isActive":true,"type":"reference"},{"type":"text","text":" property."}],"title":"peripheral(_:didDiscoverCharacteristicsFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverCharacteristicsFor:error:)-2pyjk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"defaultImplementations":2,"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","abstract":[{"text":"This method will be called when service discovery of included services was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"text":"automatically based on the device specification.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","role":"symbol","abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverCharacteristics(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"discoverCharacteristics","kind":"identifier"},{"text":"([","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":")","kind":"text"}],"title":"discoverCharacteristics(_:for:)","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","kind":"symbol","abstract":[{"text":"Discovers the specified characteristics of a service.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverCharacteristics(_:for:)","type":"topic","role":"symbol","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristics","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":"]?","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","type":"topic","abstract":[{"text":"A list of characteristics that have so far been discovered in this service.","type":"text"}],"kind":"symbol","title":"characteristics","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr.json index e821a05..e4f1f0e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_41didReceiveCharacteristicsDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA10CBMServiceCtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristicUUIDs","kind":"internalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_41didReceiveCharacteristicsDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA10CBMServiceCtF","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","symbolKind":"method"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","role":"symbol","abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9.json index 3a09bee..c5aa69b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMServiceMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_41didReceiveCharacteristicsDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA10CBMServiceCtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":" "},{"text":"characteristicUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"service"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","text":"CBMService","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5"],"title":"CBMPeripheralSpecDelegate Implementations"}],"kind":"symbol","seeAlsoSections":[{"generated":true,"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"]}],"deprecationSummary":[{"inlineContent":[{"text":"Use similar method with CBMServiceMock parameter type.","type":"text"}],"type":"paragraph"}],"metadata":{"symbolKind":"method","platforms":[],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_41didReceiveCharacteristicsDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA10CBMServiceCtF","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","roleHeading":"Instance Method","required":true,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5","type":"topic","kind":"symbol","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-7lbyr","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5.json index a98c5a3..cde5878 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristicUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_41didReceiveCharacteristicsDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA010CBMServiceC0CtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5":{"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5"}}} \ No newline at end of file +{"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_41didReceiveCharacteristicsDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA010CBMServiceC0CtF","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5"]}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":" "},{"text":"characteristicUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"text":"CBMServiceMock","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","role":"symbol","abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-995x5","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5","type":"topic","kind":"symbol","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav.json index 5a08b86..6863826 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_40didReceiveDescriptorsDiscoveryRequestFors6ResultOyyts5Error_pGAA0dE0C_AA017CBMCharacteristicC0CtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"p","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier","text":"CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav"},"metadata":{"extendedModule":"CoreBluetoothMock","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_40didReceiveDescriptorsDiscoveryRequestFors6ResultOyyts5Error_pGAA0dE0C_AA017CBMCharacteristicC0CtF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier","text":"CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"text":"automatically based on the device specification.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","abstract":[],"type":"topic","role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of.json index 5715b44..19ecacf 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMCharacteristicMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_40didReceiveDescriptorsDiscoveryRequestFors6ResultOyyts5Error_pGAA0dE0C_AA17CBMCharacteristicCtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"seeAlsoSections":[{"generated":true,"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"]}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use similar method with CBMCharacteristicMock parameter type.","type":"text"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","interfaceLanguage":"swift"},"sections":[],"metadata":{"roleHeading":"Instance Method","platforms":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"required":true,"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_40didReceiveDescriptorsDiscoveryRequestFors6ResultOyyts5Error_pGAA0dE0C_AA17CBMCharacteristicCtF","role":"symbol","symbolKind":"method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav"],"title":"CBMPeripheralSpecDelegate Implementations"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","abstract":[],"type":"topic","role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","type":"topic","abstract":[],"kind":"symbol","role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13.json index ac33948..39fd208 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target device."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The parent characteristic."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or a service discovery error. The error will be reported"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_40didReceiveDescriptorsDiscoveryRequestFors6ResultOyyts5Error_pGAA0dE0C_AA017CBMCharacteristicC0CtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Service Discovery","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery of included services was"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"role":"symbol","title":"discoverDescriptors(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverDescriptors"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"type":"text","text":"returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the descriptors were read successfully, they can be retrieved via characteristic’s"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"]}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_40didReceiveDescriptorsDiscoveryRequestFors6ResultOyyts5Error_pGAA0dE0C_AA017CBMCharacteristicC0CtF","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","symbolKind":"method"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"},"kind":"symbol","defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"text":" ","type":"text"},{"text":"mock central manager. When success is returned, the descriptors will be returned","type":"text"},{"text":" ","type":"text"},{"text":"automatically based on the device specification.","type":"text"}],"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal"],"title":"Handling Service Discovery"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target device."}]}],"name":"peripheral"},{"content":[{"inlineContent":[{"text":"The parent characteristic.","type":"text"}],"type":"paragraph"}],"name":"characteristic"}],"kind":"parameters"},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"return-value","text":"Return Value"},{"type":"paragraph","inlineContent":[{"text":"Success, or a service discovery error. The error will be reported","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"using "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","type":"reference","isActive":true},{"type":"text","text":"."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverDescriptorsFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"type":"topic","defaultImplementations":1,"kind":"symbol","abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"text":"If the descriptors were read successfully, they can be retrieved via characteristic’s","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"descriptors"},{"type":"text","text":" property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo","title":"peripheral(_:didDiscoverDescriptorsFor:error:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverDescriptorsFor:error:)-240qo","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverDescriptors(for:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"discoverDescriptors","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"type":"topic","required":true,"abstract":[{"type":"text","text":"Discovers the descriptors of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverDescriptors(for:)","title":"discoverDescriptors(for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"defaultImplementations":2,"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","abstract":[{"text":"This method will be called when service discovery of included services was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"text":"automatically based on the device specification.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","role":"symbol","abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","type":"topic","abstract":[],"kind":"symbol","role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-2baav","abstract":[],"type":"topic","role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f","required":true,"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","abstract":[{"text":"This method will be called when service discovery was initiated using a","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"text":"returned automatically based on the device specification.","type":"text"}],"title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l.json index dcf813a..6d0babb 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_40didReceiveDescriptorsDiscoveryRequestFors6ResultOyyts5Error_pGAA0dE0C_AA17CBMCharacteristicCtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l":{"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","interfaceLanguage":"swift"},"metadata":{"role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_40didReceiveDescriptorsDiscoveryRequestFors6ResultOyyts5Error_pGAA0dE0C_AA17CBMCharacteristicCtF","extendedModule":"CoreBluetoothMock","roleHeading":"Instance Method","symbolKind":"method","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"text":"automatically based on the device specification.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-9ao7l","type":"topic","abstract":[],"kind":"symbol","role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5.json index f9f126c..1ab345c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMServiceMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_41didReceiveIncludedServiceDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA10CBMServiceCtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"}}} \ No newline at end of file +{"sections":[],"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","interfaceLanguage":"swift"},"kind":"symbol","defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs"]}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMServiceMock parameter type."}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didReceiveIncludedServiceDiscoveryRequest","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"serviceUUIDs","kind":"internalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","text":"CBMService","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"metadata":{"roleHeading":"Instance Method","platforms":[],"modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveIncludedServiceDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_41didReceiveIncludedServiceDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA10CBMServiceCtF","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","symbolKind":"method"},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveIncludedServiceDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","type":"topic","kind":"symbol","abstract":[],"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us","abstract":[],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2.json index e620504..f0d18c0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target device."}]}]},{"name":"serviceUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional services requested."}]}]},{"name":"service","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The primary service."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or a service discovery error. The error will be reported"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when service discovery of included services was"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_41didReceiveIncludedServiceDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA010CBMServiceC0CtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Service Discovery","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery of included services was"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"type":"text","text":"returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"role":"symbol","title":"includedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of included services that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"type":"text","text":" property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"role":"symbol","title":"discoverIncludedServices(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverIncludedServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Discovers the specified included services of a previously-discovered service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"required":true,"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_41didReceiveIncludedServiceDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA010CBMServiceC0CtF","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}]},"seeAlsoSections":[{"title":"Handling Service Discovery","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"],"generated":true}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"serviceUUIDs"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier","text":"CBMServiceMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"text":"The target device.","type":"text"}]}]},{"name":"serviceUUIDs","content":[{"type":"paragraph","inlineContent":[{"text":"Optional services requested.","type":"text"}]}]},{"content":[{"inlineContent":[{"text":"The primary service.","type":"text"}],"type":"paragraph"}],"name":"service"}]},{"content":[{"anchor":"return-value","type":"heading","text":"Return Value","level":2},{"type":"paragraph","inlineContent":[{"text":"Success, or a service discovery error. The error will be reported","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"using "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","isActive":true},{"text":".","type":"text"}]}],"kind":"content"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2"},"abstract":[{"text":"This method will be called when service discovery of included services was","type":"text"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"text":" ","type":"text"},{"text":"will be returned automatically based on the device specification.","type":"text"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverIncludedServices(_:for:)":{"abstract":[{"text":"Discovers the specified included services of a previously-discovered service.","type":"text"}],"required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"discoverIncludedServices","kind":"identifier"},{"text":"([","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"discoverIncludedServices(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"text":"automatically based on the device specification.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveIncludedServiceDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","type":"topic","kind":"symbol","abstract":[],"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f","required":true,"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","abstract":[{"text":"This method will be called when service discovery was initiated using a","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"text":"returned automatically based on the device specification.","type":"text"}],"title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us","abstract":[],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","role":"symbol","abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverIncludedServicesFor:error:)-6b62q","title":"peripheral(_:didDiscoverIncludedServicesFor:error:)","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q","required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didDiscoverIncludedServicesFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"defaultImplementations":1,"abstract":[{"type":"text","text":"This method returns the result of a "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverIncludedServices(_:for:)","type":"reference","isActive":true},{"type":"text","text":" call."},{"text":" ","type":"text"},{"type":"text","text":"If the included service(s) were read successfully, they can be retrieved via service’s"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices"},{"text":" property.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"defaultImplementations":2,"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","abstract":[{"text":"This method will be called when service discovery of included services was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"abstract":[{"text":"A list of included services that have so far been discovered in this service.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"includedServices"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs.json index 2420f78..c7d5838 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_41didReceiveIncludedServiceDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA010CBMServiceC0CtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery of included services was"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"service","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","interfaceLanguage":"swift"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)"},{"type":"text","text":"."}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_41didReceiveIncludedServiceDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA010CBMServiceC0CtF","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","role":"symbol","modules":[{"name":"CoreBluetoothMock"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveIncludedServiceDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-7iofs","type":"topic","kind":"symbol","abstract":[],"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"defaultImplementations":2,"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","abstract":[{"text":"This method will be called when service discovery of included services was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us.json index d0335bf..ccd1d74 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_41didReceiveIncludedServiceDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA10CBMServiceCtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery of included services was"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us":{"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveIncludedServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":" "},{"text":"serviceUUIDs","kind":"internalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"text":"]?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"service"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"metadata":{"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_41didReceiveIncludedServiceDiscoveryRequest3fors6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgAA10CBMServiceCtF","roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveIncludedServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"defaultImplementations":2,"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","abstract":[{"text":"This method will be called when service discovery of included services was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-9y6us","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us","abstract":[],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp.json index 273ac02..712b6c7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA13CBMDescriptorCtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}]}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp"]}],"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"extendedModule":"CoreBluetoothMock","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA13CBMDescriptorCtF","role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","symbolKind":"method"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c.json index 413edce..bd8ab3f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMCharacteristicMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA17CBMCharacteristicCtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"]}],"metadata":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA17CBMCharacteristicCtF","roleHeading":"Instance Method","required":true,"modules":[{"name":"CoreBluetoothMock"}],"platforms":[],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}]},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls"],"title":"CBMPeripheralSpecDelegate Implementations"}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","interfaceLanguage":"swift"},"kind":"symbol","deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMCharacteristicMock parameter type."}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","type":"topic","title":"peripheral(_:didReceiveReadRequestFor:)","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls.json index 3e7b045..ae0e3a6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","text":"CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA013CBMDescriptorC0CtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"p"},{"text":": ","kind":"text"},{"text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"languages":["swift"]}]}],"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"extendedModule":"CoreBluetoothMock","title":"peripheral(_:didReceiveReadRequestFor:)","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA013CBMDescriptorC0CtF","symbolKind":"method"},"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw.json index 2e35fbc..9326a0e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMDescriptorMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA13CBMDescriptorCtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use similar method with CBMDescriptorMock parameter type."}],"type":"paragraph"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","interfaceLanguage":"swift"},"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp"]}],"sections":[],"metadata":{"platforms":[],"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA13CBMDescriptorCtF","symbolKind":"method","title":"peripheral(_:didReceiveReadRequestFor:)","required":true},"seeAlsoSections":[{"generated":true,"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","type":"topic","title":"peripheral(_:didReceiveReadRequestFor:)","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg.json index c7bcc54..acf3c52 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA017CBMCharacteristicC0CtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"}}} \ No newline at end of file +{"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA017CBMCharacteristicC0CtF","extendedModule":"CoreBluetoothMock","role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"p","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x.json index 781f599..70947f3 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","text":"CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target peripheral specification."}]}]},{"name":"descriptor","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The descriptor, which value should be returned."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When success, the descriptor value should be returned. In case"},{"type":"text","text":" "},{"type":"text","text":"of a failure, the returned error will be returned to the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA013CBMDescriptorC0CtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"}}} \ No newline at end of file +{"seeAlsoSections":[{"generated":true,"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"]}],"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","text":"CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"required":true,"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didReceiveReadRequestFor:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA013CBMDescriptorC0CtF","role":"symbol","symbolKind":"method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"},"sections":[],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"typeIdentifier","text":"CBMDescriptorMock"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}]},{"parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The target peripheral specification."}],"type":"paragraph"}],"name":"peripheral"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The descriptor, which value should be returned."}]}],"name":"descriptor"}],"kind":"parameters"},{"content":[{"text":"Return Value","anchor":"return-value","type":"heading","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"When success, the descriptor value should be returned. In case"},{"text":" ","type":"text"},{"type":"text","text":"of a failure, the returned error will be returned to the"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","isActive":true},{"text":".","type":"text"}]}],"kind":"content"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","defaultImplementations":2,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","abstract":[{"text":"This method will be called when write command has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"kind":"symbol","abstract":[{"text":"This method is invoked after a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","type":"reference"},{"text":" call, or upon","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"receipt of a notification\/indication."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","required":true,"role":"symbol","defaultImplementations":2,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","type":"topic","title":"peripheral(_:didReceiveReadRequestFor:)","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73.json index b4ddc7c..6358f22 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA17CBMCharacteristicCtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA17CBMCharacteristicCtF","roleHeading":"Instance Method","title":"peripheral(_:didReceiveReadRequestFor:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","extendedModule":"CoreBluetoothMock","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","type":"topic","title":"peripheral(_:didReceiveReadRequestFor:)","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod.json index daa9a8f..ce3d5f1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target peripheral specification."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The characteristic, which value should be returned."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"When success, the characteristic value should be returned. In case"},{"type":"text","text":" "},{"type":"text","text":"of a failure, the returned error will be returned to the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA017CBMCharacteristicC0CtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"role":"symbol","title":"readValue(for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"readValue"},{"kind":"text","text":"("},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didUpdateValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked after a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp"},{"type":"text","text":" call, or upon"},{"type":"text","text":" "},{"type":"text","text":"receipt of a notification\/indication."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"}}} \ No newline at end of file +{"seeAlsoSections":[{"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],"generated":true}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"modules":[{"name":"CoreBluetoothMock"}],"required":true,"title":"peripheral(_:didReceiveReadRequestFor:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_24didReceiveReadRequestFors6ResultOy10Foundation4DataVs5Error_pGAA0dE0C_AA017CBMCharacteristicC0CtF","role":"symbol","symbolKind":"method"},"sections":[],"abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier","text":"CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">"}]}]},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The target peripheral specification.","type":"text"}]}],"name":"peripheral"},{"content":[{"inlineContent":[{"text":"The characteristic, which value should be returned.","type":"text"}],"type":"paragraph"}],"name":"characteristic"}]},{"kind":"content","content":[{"type":"heading","level":2,"text":"Return Value","anchor":"return-value"},{"inlineContent":[{"type":"text","text":"When success, the characteristic value should be returned. In case"},{"text":" ","type":"text"},{"type":"text","text":"of a failure, the returned error will be returned to the"},{"text":" ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","isActive":true},{"text":".","type":"text"}],"type":"paragraph"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","defaultImplementations":2,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","abstract":[{"text":"This method will be called when write command has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-3sqgp":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-3sqgp","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9aw73":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","type":"topic","title":"peripheral(_:didReceiveReadRequestFor:)","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9aw73","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6tewg":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6tewg","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didUpdateValueFor:error:)-2xce0":{"kind":"symbol","abstract":[{"text":"This method is invoked after a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","type":"reference"},{"text":" call, or upon","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"receipt of a notification\/indication."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","required":true,"role":"symbol","defaultImplementations":2,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didUpdateValueFor:error:)-2xce0","title":"peripheral(_:didUpdateValueFor:error:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":"?)"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/readValue(for:)-1hqxp":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","abstract":[{"type":"text","text":"Retrieves the value of a specified characteristic."}],"kind":"symbol","required":true,"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/readValue(for:)-1hqxp","title":"readValue(for:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"readValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-5c1ls":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-5c1ls","kind":"symbol","type":"topic","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el.json index cc5b3fd..e9a69d7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveServiceDiscoveryRequest:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_33didReceiveServiceDiscoveryRequests6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"type":"text","text":"returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el":{"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_33didReceiveServiceDiscoveryRequests6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgtF","roleHeading":"Instance Method","role":"symbol","extendedModule":"CoreBluetoothMock","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"modules":[{"name":"CoreBluetoothMock"}]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},{"kind":"text","text":"]?) -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveServiceDiscoveryRequest:)"},{"type":"text","text":"."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f","required":true,"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","abstract":[{"text":"This method will be called when service discovery was initiated using a","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"text":"returned automatically based on the device specification.","type":"text"}],"title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el","type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el","kind":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?) -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f.json index 7d23fdd..6381211 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target device."}]}]},{"name":"serviceUUIDs","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional services requested."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or a service discovery error. The error will be reported"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when service discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"type":"text","text":"returned automatically based on the device specification."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_33didReceiveServiceDiscoveryRequests6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Service Discovery","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el":{"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDiscoverServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"type":"text","text":" call."},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"type":"text","text":"returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when service discovery of included services was"},{"type":"text","text":" "},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"role":"symbol","title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Discovers the specified services of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal"}}} \ No newline at end of file +{"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el"],"title":"CBMPeripheralSpecDelegate Implementations"}],"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13"],"title":"Handling Service Discovery","generated":true}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveServiceDiscoveryRequest","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"serviceUUIDs"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","text":"CBMUUID"},{"text":"]?) -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target device."}]}],"name":"peripheral"},{"name":"serviceUUIDs","content":[{"type":"paragraph","inlineContent":[{"text":"Optional services requested.","type":"text"}]}]}]},{"content":[{"type":"heading","level":2,"anchor":"return-value","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or a service discovery error. The error will be reported"},{"type":"text","text":" "},{"type":"text","text":"using "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k"},{"type":"text","text":"."}]}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f"},"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"text":"]?) -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_33didReceiveServiceDiscoveryRequests6ResultOyyts5Error_pGAA0dE0C_SaySo6CBUUIDCGSgtF","required":true},"abstract":[{"text":"This method will be called when service discovery was initiated using a","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"text":" ","type":"text"},{"type":"text","text":"returned automatically based on the device specification."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-2doal","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveCharacteristicsDiscoveryRequest","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","role":"symbol","abstract":[{"type":"text","text":"This method will be called when characteristic discovery was initiated using a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager. When success is returned, the characteristics will be returned"},{"type":"text","text":" "},{"type":"text","text":"automatically based on the device specification."}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13":{"defaultImplementations":2,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-6rk13","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when descriptor discovery was initiated using a"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the descriptors will be returned"},{"type":"text","text":" "},{"text":"automatically based on the device specification.","type":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didDiscoverServices:)-6mi4k":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDiscoverServices"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didDiscoverServices:)-6mi4k","type":"topic","title":"peripheral(_:didDiscoverServices:)","defaultImplementations":1,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)"},{"text":" call.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"If the service(s) were read successfully, they can be retrieved via peripheral’s services property."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/discoverServices(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/discoverServices(_:)","type":"topic","required":true,"abstract":[{"text":"Discovers the specified services of the peripheral.","type":"text"}],"title":"discoverServices(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"discoverServices"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":"]?)","kind":"text"}],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f","required":true,"type":"topic","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-pq5f","abstract":[{"text":"This method will be called when service discovery was initiated using a","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"mock central manager. When success is returned, the services will be"},{"type":"text","text":" "},{"text":"returned automatically based on the device specification.","type":"text"}],"title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveServiceDiscoveryRequest","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?) -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"defaultImplementations":1},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el":{"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el","type":"topic","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveServiceDiscoveryRequest:)-1p1el","kind":"symbol","title":"peripheral(_:didReceiveServiceDiscoveryRequest:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?) -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2":{"required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"defaultImplementations":2,"type":"topic","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4mqk2","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","abstract":[{"text":"This method will be called when service discovery of included services was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"initiated using a mock central manager. When success is returned, the services"},{"type":"text","text":" "},{"type":"text","text":"will be returned automatically based on the device specification."}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i.json index f51fee6..fda6323 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveSetNotifyRequest:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_26didReceiveSetNotifyRequest3fors6ResultOyyts5Error_pGAA0dE0C_SbAA017CBMCharacteristicC0CtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when client requested enabling or disabling notifications or"},{"type":"text","text":" "},{"type":"text","text":"indications on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"text":" ","kind":"text"},{"text":"enabled","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_26didReceiveSetNotifyRequest3fors6ResultOyyts5Error_pGAA0dE0C_SbAA017CBMCharacteristicC0CtF","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveSetNotifyRequest:for:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i","abstract":[],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q","role":"symbol","abstract":[{"text":"This method will be called when client requested enabling or disabling notifications or","type":"text"},{"text":" ","type":"text"},{"text":"indications on the given characteristic using a mock central manager.","type":"text"}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc.json index e9666ca..62497c2 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMCharacteristicMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_26didReceiveSetNotifyRequest3fors6ResultOyyts5Error_pGAA0dE0C_SbAA17CBMCharacteristicCtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"seeAlsoSections":[{"title":"Deprecated","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"]}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use similar method with CBMCharacteristicMock parameter type.","type":"text"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","platforms":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">"}],"modules":[{"name":"CoreBluetoothMock"}],"required":true,"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_26didReceiveSetNotifyRequest3fors6ResultOyyts5Error_pGAA0dE0C_SbAA17CBMCharacteristicCtF","role":"symbol","symbolKind":"method"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i","abstract":[],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q.json index 8773ee1..849e5aa 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target peripheral specification."}]}]},{"name":"enabled","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Whether notifications or indications were enabled or disabled."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target characteristic."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or the reason of a failure."}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Value updates initiated from this method using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)"},{"type":"text","text":" "},{"type":"text","text":"will be ignored until"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash"},{"type":"text","text":" "},{"type":"text","text":"is received."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when client requested enabling or disabling notifications or"},{"type":"text","text":" "},{"type":"text","text":"indications on the given characteristic using a mock central manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_26didReceiveSetNotifyRequest3fors6ResultOyyts5Error_pGAA0dE0C_SbAA017CBMCharacteristicC0CtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Notifications","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when client requested enabling or disabling notifications or"},{"type":"text","text":" "},{"type":"text","text":"indications on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-4aash":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"type":"text","text":" "},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"}}} \ No newline at end of file +{"sections":[],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash"],"title":"Handling Notifications","generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q"]}],"metadata":{"required":true,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_26didReceiveSetNotifyRequest3fors6ResultOyyts5Error_pGAA0dE0C_SbAA017CBMCharacteristicC0CtF","symbolKind":"method","role":"symbol"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The target peripheral specification.","type":"text"}]}],"name":"peripheral"},{"name":"enabled","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Whether notifications or indications were enabled or disabled."}]}]},{"content":[{"inlineContent":[{"type":"text","text":"The target characteristic."}],"type":"paragraph"}],"name":"characteristic"}],"kind":"parameters"},{"kind":"content","content":[{"type":"heading","text":"Return Value","level":2,"anchor":"return-value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or the reason of a failure."}]}]},{"kind":"content","content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"inlineContent":[{"type":"text","text":"Value updates initiated from this method using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)"},{"text":" ","type":"text"},{"text":"will be ignored until","type":"text"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","isActive":true},{"type":"text","text":" "},{"type":"text","text":"is received."}],"type":"paragraph"}]}],"abstract":[{"type":"text","text":"This method will be called when client requested enabling or disabling notifications or"},{"type":"text","text":" "},{"type":"text","text":"indications on the given characteristic using a mock central manager."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-4aash":{"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"text":" ","type":"text"},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash","title":"peripheral(_:didUpdateNotificationStateFor:error:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-6yb1i","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i","abstract":[],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q","role":"symbol","abstract":[{"text":"This method will be called when client requested enabling or disabling notifications or","type":"text"},{"text":" ","type":"text"},{"text":"indications on the given characteristic using a mock central manager.","type":"text"}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut.json index bb8d61d..c83c93f 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveSetNotifyRequest:for:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_26didReceiveSetNotifyRequest3fors6ResultOyyts5Error_pGAA0dE0C_SbAA17CBMCharacteristicCtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when client requested enabling or disabling notifications or"},{"type":"text","text":" "},{"type":"text","text":"indications on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut":{"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"enabled"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveSetNotifyRequest:for:)"},{"type":"text","text":"."}],"metadata":{"role":"symbol","extendedModule":"CoreBluetoothMock","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_26didReceiveSetNotifyRequest3fors6ResultOyyts5Error_pGAA0dE0C_SbAA17CBMCharacteristicCtF"},"kind":"symbol","sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveSetNotifyRequest","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-jbut","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q","role":"symbol","abstract":[{"text":"This method will be called when client requested enabling or disabling notifications or","type":"text"},{"text":" ","type":"text"},{"text":"indications on the given characteristic using a mock central manager.","type":"text"}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0.json index ec2d6b4..4c2210b 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMCharacteristicMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteCommandFor4datayAA0dE0C_AA17CBMCharacteristicC10Foundation4DataVtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"schemaVersion":{"patch":0,"major":0,"minor":3},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use similar method with CBMCharacteristicMock parameter type.","type":"text"}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"metadata":{"symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"required":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didReceiveWriteCommandFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":")","kind":"text"}],"platforms":[],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteCommandFor4datayAA0dE0C_AA17CBMCharacteristicC10Foundation4DataVtF"},"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"]}],"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m","role":"symbol","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m","title":"peripheral(_:didReceiveWriteCommandFor:data:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteCommandFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":")","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht.json index 0af652a..9ab23aa 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveWriteCommandFor:data:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteCommandFor4datayAA0dE0C_AA017CBMCharacteristicC0C10Foundation4DataVtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveWriteCommandFor:data:)"},{"text":".","type":"text"}],"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn"]]},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveWriteCommandFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"},{"kind":"text","text":")"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","extendedModule":"CoreBluetoothMock","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteCommandFor4datayAA0dE0C_AA017CBMCharacteristicC0C10Foundation4DataVtF"},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","defaultImplementations":2,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","abstract":[{"text":"This method will be called when write command has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn.json index cc66d4b..212a3d0 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target peripheral specification."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target characteristic."}]}]},{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The data written."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteCommandFor4datayAA0dE0C_AA017CBMCharacteristicC0C10Foundation4DataVtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"text":" ","type":"text"},{"text":"central manager. Write command is also known as write without response.","type":"text"}],"metadata":{"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteCommandFor4datayAA0dE0C_AA017CBMCharacteristicC0C10Foundation4DataVtF","symbolKind":"method","required":true,"role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"},{"kind":"text","text":")"}],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","sections":[],"seeAlsoSections":[{"title":"Handling Requests","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn"},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveWriteCommandFor","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"},{"text":")","kind":"text"}]}],"kind":"declarations"},{"parameters":[{"content":[{"inlineContent":[{"text":"The target peripheral specification.","type":"text"}],"type":"paragraph"}],"name":"peripheral"},{"content":[{"type":"paragraph","inlineContent":[{"text":"The target characteristic.","type":"text"}]}],"name":"characteristic"},{"content":[{"inlineContent":[{"text":"The data written.","type":"text"}],"type":"paragraph"}],"name":"data"}],"kind":"parameters"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m","role":"symbol","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m","title":"peripheral(_:didReceiveWriteCommandFor:data:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteCommandFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":")","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-2v5ht","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","abstract":[],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","defaultImplementations":2,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","abstract":[{"text":"This method will be called when write command has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m.json index 4839dad..f68e688 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveWriteCommandFor:data:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteCommandFor4datayAA0dE0C_AA17CBMCharacteristicC10Foundation4DataVtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m":{"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteCommandFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","extendedModule":"CoreBluetoothMock","role":"symbol","symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteCommandFor4datayAA0dE0C_AA17CBMCharacteristicC10Foundation4DataVtF","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didReceiveWriteCommandFor:data:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m","role":"symbol","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-65o4m","title":"peripheral(_:didReceiveWriteCommandFor:data:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteCommandFor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":")","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","defaultImplementations":2,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","abstract":[{"text":"This method will be called when write command has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi.json index 07472dc..eed6f42 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA017CBMCharacteristicC0C10Foundation4DataVtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"languages":["swift"]}]}],"kind":"symbol","metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">"}],"extendedModule":"CoreBluetoothMock","symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Instance Method","title":"peripheral(_:didReceiveWriteRequestFor:data:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA017CBMCharacteristicC0C10Foundation4DataVtF"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u.json index b94f48e..2efad7d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA17CBMCharacteristicC10Foundation4DataVtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]]},"sections":[],"metadata":{"extendedModule":"CoreBluetoothMock","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA17CBMCharacteristicC10Foundation4DataVtF","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}]},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b.json index f23b3c2..622b63d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMCharacteristicMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA17CBMCharacteristicC10Foundation4DataVtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"kind":"symbol","defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"title":"Deprecated"}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use similar method with CBMCharacteristicMock parameter type.","type":"text"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"metadata":{"roleHeading":"Instance Method","platforms":[],"modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA17CBMCharacteristicC10Foundation4DataVtF","title":"peripheral(_:didReceiveWriteRequestFor:data:)","symbolKind":"method"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7.json index 03f852a..047e3c1 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use similar method with CBMDescriptorMock parameter type."}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA13CBMDescriptorC10Foundation4DataVtF","required":true,"platforms":[]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Deprecated","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveDescriptorsDiscoveryRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"defaultImplementations":2,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"},"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc"],"title":"Deprecated"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":" "},{"text":"descriptor","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA13CBMDescriptorC10Foundation4DataVtF","modules":[{"name":"CoreBluetoothMock"}],"platforms":[],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"required":true,"title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"]}],"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use similar method with CBMDescriptorMock parameter type."}],"type":"paragraph"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveIncludedServiceDiscoveryRequest"},{"text":": [","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":"]?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMService","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)-4g4y5","abstract":[],"title":"peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveDescriptorsDiscoveryRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)-3y8of","abstract":[],"title":"peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-47a2c":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-47a2c","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveCharacteristicsDiscoveryRequest"},{"kind":"text","text":": ["},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]?, "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)-88ij9","abstract":[],"title":"peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-14ln0","abstract":[],"title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":2,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-8yagc","abstract":[],"title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-6p4xw":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":") -> "},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-6p4xw","abstract":[],"title":"peripheral(_:didReceiveReadRequestFor:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh.json index e585ffa..fcb4421 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA13CBMDescriptorC10Foundation4DataVtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"]}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA13CBMDescriptorC10Foundation4DataVtF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","symbolKind":"method","extendedModule":"CoreBluetoothMock"},"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","kind":"typeIdentifier","text":"CBMDescriptor"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw.json index a8790ef..986d5f9 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","text":"CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA013CBMDescriptorC0C10Foundation4DataVtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"defaultImplementations":4,"deprecated":true,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">"}],"modules":[{"name":"CoreBluetoothMock"}],"extendedModule":"CoreBluetoothMock","role":"symbol","symbolKind":"method","title":"peripheral(_:didReceiveWriteRequestFor:data:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA013CBMDescriptorC0C10Foundation4DataVtF","roleHeading":"Instance Method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"p","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"typeIdentifier","text":"CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptor","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-6plt7","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"defaultImplementations":4,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-3nc1b","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","required":true,"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","deprecated":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk.json index 00fdc0b..0de2acd 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"descriptor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock","text":"CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target peripheral specification."}]}]},{"name":"descriptor","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target descriptor."}]}]},{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The data written."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or the reason of failure. The returned error will be"},{"type":"text","text":" "},{"type":"text","text":"returned to the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA013CBMDescriptorC0C10Foundation4DataVtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","title":"writeValue(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)"},{"type":"text","text":" call."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"}}} \ No newline at end of file +{"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","symbolKind":"method","required":true,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA013CBMDescriptorC0C10Foundation4DataVtF","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"text":" ","type":"text"},{"text":"central manager.","type":"text"}],"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh"],"title":"CBMPeripheralSpecDelegate Implementations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","interfaceLanguage":"swift"},"kind":"symbol","seeAlsoSections":[{"title":"Handling Requests","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"descriptor","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"languages":["swift"]}]},{"parameters":[{"name":"peripheral","content":[{"inlineContent":[{"text":"The target peripheral specification.","type":"text"}],"type":"paragraph"}]},{"name":"descriptor","content":[{"inlineContent":[{"type":"text","text":"The target descriptor."}],"type":"paragraph"}]},{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The data written."}]}]}],"kind":"parameters"},{"content":[{"type":"heading","text":"Return Value","anchor":"return-value","level":2},{"inlineContent":[{"text":"Success, or the reason of failure. The returned error will be","type":"text"},{"text":" ","type":"text"},{"text":"returned to the ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","isActive":true,"type":"reference"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-90cp":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":", "},{"text":"didWriteValueFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-90cp","defaultImplementations":2,"abstract":[{"text":"This method returns the result of a ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","isActive":true},{"type":"text","text":" call."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp","type":"topic","title":"peripheral(_:didWriteValueFor:error:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor","text":"CBMDescriptor"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:)","abstract":[{"type":"text","text":"Writes the value of a characteristic descriptor."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","type":"topic","title":"writeValue(_:for:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","defaultImplementations":2,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","abstract":[{"text":"This method will be called when write command has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa.json index d4a83ef..6cbd70e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target peripheral specification."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target characteristic."}]}]},{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The data written."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success, or the reason of failure. The returned error will be"},{"type":"text","text":" "},{"type":"text","text":"returned to the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA017CBMCharacteristicC0C10Foundation4DataVtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","title":"writeValue(_:for:type:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"writeValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicWriteType","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"defaultImplementations":4,"role":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveReadRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didWriteValueFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method returns the result of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)"},{"type":"text","text":" call,"},{"type":"text","text":" "},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"type":"text","text":" type is used."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveWriteCommandFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This method will be called when write command has been initiated from a mock"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"role":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"required":true,"roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_25didReceiveWriteRequestFor4datas6ResultOyyts5Error_pGAA0dE0C_AA017CBMCharacteristicC0C10Foundation4DataVtF","title":"peripheral(_:didReceiveWriteRequestFor:data:)","modules":[{"name":"CoreBluetoothMock"}],"role":"symbol"},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh"],"title":"CBMPeripheralSpecDelegate Implementations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"sections":[],"abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"central manager."}],"seeAlsoSections":[{"generated":true,"title":"Handling Requests","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"peripheral","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}]}]},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The target peripheral specification.","type":"text"}]}],"name":"peripheral"},{"name":"characteristic","content":[{"inlineContent":[{"text":"The target characteristic.","type":"text"}],"type":"paragraph"}]},{"name":"data","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The data written."}]}]}]},{"kind":"content","content":[{"type":"heading","level":2,"text":"Return Value","anchor":"return-value"},{"inlineContent":[{"text":"Success, or the reason of failure. The returned error will be","type":"text"},{"type":"text","text":" "},{"type":"text","text":"returned to the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","isActive":true,"type":"reference"},{"type":"text","text":"."}],"type":"paragraph"}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-753gh":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMDescriptor","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptor"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-753gh","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate/peripheral(_:didWriteValueFor:error:)-86kdv":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didWriteValueFor"},{"text":": ","kind":"text"},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate\/peripheral(_:didWriteValueFor:error:)-86kdv","abstract":[{"text":"This method returns the result of a ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","isActive":true,"type":"reference"},{"type":"text","text":" call,"},{"text":" ","type":"text"},{"type":"text","text":"when the "},{"type":"codeVoice","code":".withResponse"},{"text":" type is used.","type":"text"}],"title":"peripheral(_:didWriteValueFor:error:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv","defaultImplementations":2,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-yspa":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-yspa","abstract":[{"text":"This method will be called when write request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveWriteRequestFor:data:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-23hwi","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-9ybod":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-9ybod","abstract":[{"type":"text","text":"This method will be called when read request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveReadRequestFor:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"text":": ","kind":"text"},{"text":"CBMDescriptorMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-75hfw","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteCommandFor:data:)-58pcn","title":"peripheral(_:didReceiveWriteCommandFor:data:)","required":true,"role":"symbol","defaultImplementations":2,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","abstract":[{"text":"This method will be called when write command has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager. Write command is also known as write without response."}],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteCommandFor"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"data","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveReadRequestFor:)-7sk6x":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"didReceiveReadRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveReadRequestFor:)-7sk6x","abstract":[{"text":"This method will be called when read request has been initiated from a mock","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager."}],"kind":"symbol","title":"peripheral(_:didReceiveReadRequestFor:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","defaultImplementations":4,"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didReceiveWriteRequestFor"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"data"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-2hi9u","abstract":[],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral/writeValue(_:for:type:)":{"role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"writeValue","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock26CBMCharacteristicWriteTypea","text":"CBMCharacteristicWriteType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral\/writeValue(_:for:type:)","abstract":[{"type":"text","text":"Writes the value of a characteristic."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"writeValue(_:for:type:)","type":"topic","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"text":"didReceiveWriteRequestFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMDescriptorMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMDescriptorMock"},{"text":", ","kind":"text"},{"text":"data","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">","kind":"text"}],"type":"topic","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveWriteRequestFor:data:)-81sdk","abstract":[{"type":"text","text":"This method will be called when write request has been initiated from a mock"},{"type":"text","text":" "},{"text":"central manager.","type":"text"}],"title":"peripheral(_:didReceiveWriteRequestFor:data:)","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","defaultImplementations":4,"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash.json index 6759970..7dcf83d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target peripheral specification."}]}]},{"name":"characteristic","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target characteristic."}]}]},{"name":"error","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Error returned from"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q"},{"type":"text","text":"."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"It is safe to send value updates using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)"},{"type":"text","text":" from this method if"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying"},{"type":"text","text":" is "},{"type":"codeVoice","code":"true"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-nipu"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"type":"text","text":" "},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_29didUpdateNotificationStateFor5erroryAA0dE0C_AA017CBMCharacteristicC0Cs5Error_pSgtF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Notifications","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-4aash":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"type":"text","text":" "},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-nipu":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-nipu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-nipu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"defaultImplementations":2,"role":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when client requested enabling or disabling notifications or"},{"type":"text","text":" "},{"type":"text","text":"indications on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/isNotifying":{"role":"symbol","title":"isNotifying","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotifying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether the characteristic is currently notifying or not."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"required":true,"roleHeading":"Instance Method","role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP10peripheral_29didUpdateNotificationStateFor5erroryAA0dE0C_AA017CBMCharacteristicC0Cs5Error_pSgtF","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":"?)"}],"title":"peripheral(_:didUpdateNotificationStateFor:error:)"},"abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"type":"text","text":" "},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"sections":[],"seeAlsoSections":[{"title":"Handling Notifications","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q"]}],"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-nipu"],"title":"CBMPeripheralSpecDelegate Implementations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"text":" ","kind":"text"},{"text":"characteristic","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":"?)"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"inlineContent":[{"text":"The target peripheral specification.","type":"text"}],"type":"paragraph"}]},{"name":"characteristic","content":[{"inlineContent":[{"text":"The target characteristic.","type":"text"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"type":"text","text":"Error returned from"},{"text":" ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","isActive":true},{"type":"text","text":"."}],"type":"paragraph"}],"name":"error"}]},{"content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"inlineContent":[{"type":"text","text":"It is safe to send value updates using"},{"type":"text","text":" "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","isActive":true,"type":"reference"},{"type":"text","text":" from this method if"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying"},{"type":"text","text":" is "},{"code":"true","type":"codeVoice"},{"text":".","type":"text"}],"type":"paragraph"}],"kind":"content"}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q":{"type":"topic","kind":"symbol","title":"peripheral(_:didReceiveSetNotifyRequest:for:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didReceiveSetNotifyRequest:for:)-9r03q","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didReceiveSetNotifyRequest"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q","role":"symbol","abstract":[{"text":"This method will be called when client requested enabling or disabling notifications or","type":"text"},{"text":" ","type":"text"},{"text":"indications on the given characteristic using a mock central manager.","type":"text"}],"defaultImplementations":2},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-nipu":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-nipu","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-nipu","title":"peripheral(_:didUpdateNotificationStateFor:error:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic/isNotifying":{"kind":"symbol","abstract":[{"text":"Whether the characteristic is currently notifying or not.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic\/isNotifying","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying","title":"isNotifying","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isNotifying"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-4aash":{"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"text":" ","type":"text"},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash","title":"peripheral(_:didUpdateNotificationStateFor:error:)","required":true}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu.json index e3e9334..b15e329 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"p"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-nipu"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-nipu","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didUpdateNotificationStateFor:error:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_29didUpdateNotificationStateFor5erroryAA0dE0C_AA017CBMCharacteristicC0Cs5Error_pSgtF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-nipu":{"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-nipu","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-nipu"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-4aash":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didUpdateNotificationStateFor:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"type":"text","text":" "},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-nipu"]}],"metadata":{"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE10peripheral_29didUpdateNotificationStateFor5erroryAA0dE0C_AA017CBMCharacteristicC0Cs5Error_pSgtF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"roleHeading":"Instance Method","title":"peripheral(_:didUpdateNotificationStateFor:error:)","modules":[{"name":"CoreBluetoothMock"}],"symbolKind":"method","extendedModule":"CoreBluetoothMock","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-nipu","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"p","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":" "},{"kind":"internalParam","text":"characteristic"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheral(_:didUpdateNotificationStateFor:error:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-4aash":{"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"didUpdateNotificationStateFor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"text":"error","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":"?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-4aash","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"This method will be called when notifications or indications were enabled"},{"text":" ","type":"text"},{"type":"text","text":"or disabled on the given characteristic using a mock central manager."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash","title":"peripheral(_:didUpdateNotificationStateFor:error:)","required":true},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didUpdateNotificationStateFor:error:)-nipu":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":", ","kind":"text"},{"text":"didUpdateNotificationStateFor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":"?)","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didUpdateNotificationStateFor:error:)-nipu","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-nipu","title":"peripheral(_:didUpdateNotificationStateFor:error:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww.json index 5550aff..b648bf9 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-2bpww"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-2bpww","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.peripheralDidReceiveConnectionRequest(_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE37peripheralDidReceiveConnectionRequestys6ResultOyyts5Error_pGAA0dE0CF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"defaultImplementations":1,"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-2bpww":{"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-2bpww","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-2bpww"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-2bpww"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"CBMPeripheralSpecDelegate.peripheralDidReceiveConnectionRequest(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-2bpww","interfaceLanguage":"swift"},"metadata":{"title":"peripheralDidReceiveConnectionRequest(_:)","role":"symbol","extendedModule":"CoreBluetoothMock","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"symbolKind":"method","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE37peripheralDidReceiveConnectionRequestys6ResultOyyts5Error_pGAA0dE0CF","roleHeading":"Instance Method"},"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"role":"symbol","defaultImplementations":1,"title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-2bpww":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-2bpww","abstract":[],"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheralDidReceiveConnectionRequest","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-2bpww"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz.json index 08f75ec..1ee39ed 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"peripheral","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral specification to handle connection."}]}]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Success or an error. The error will be returned using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-2bpww"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"kind":"symbol","metadata":{"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP37peripheralDidReceiveConnectionRequestys6ResultOyyts5Error_pGAA0dE0CF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"defaultImplementations":1,"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connect"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Establishes a local connection to a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"defaultImplementations":1,"role":"symbol","title":"reset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"This method is called when the mock peripheral has been reset."},{"type":"text","text":" "},{"type":"text","text":"It should reset all values to the initial state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailToConnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"type":"text","text":" "},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-2bpww":{"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-2bpww","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-2bpww"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDisconnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when disconnection was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"peripheral"},{"text":": ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The peripheral specification to handle connection."}]}],"name":"peripheral"}]},{"kind":"content","content":[{"type":"heading","anchor":"return-value","level":2,"text":"Return Value"},{"inlineContent":[{"text":"Success or an error. The error will be returned using","type":"text"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","isActive":true},{"type":"text","text":"."}],"type":"paragraph"}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheralDidReceiveConnectionRequest","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"peripheralDidReceiveConnectionRequest(_:)","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP37peripheralDidReceiveConnectionRequestys6ResultOyyts5Error_pGAA0dE0CF","roleHeading":"Instance Method","symbolKind":"method","required":true},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"seeAlsoSections":[{"title":"Handling Connection Events","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"defaultImplementationsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-2bpww"],"title":"CBMPeripheralSpecDelegate Implementations"}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","abstract":[{"text":"This method is called when the mock peripheral has been reset.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"It should reset all values to the initial state."}],"role":"symbol","defaultImplementations":1,"title":"reset()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reset"},{"text":"()","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/connect(_:options:)":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)","abstract":[{"text":"Establishes a local connection to a peripheral.","type":"text"}],"role":"symbol","title":"connect(_:options:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"connect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"text":"]?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:didFailToConnect:error:)-2h1bb":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:didFailToConnect:error:)-2h1bb","abstract":[{"type":"text","text":"This method is invoked when a connection initiated by "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/connect(_:options:)"},{"type":"text","text":" "},{"type":"text","text":"has failed to complete. As connection attempts do not timeout, the failure"},{"text":" ","type":"text"},{"type":"text","text":"of a connection is atypical and usually indicative of a transient issue."}],"role":"symbol","defaultImplementations":1,"title":"centralManager(_:didFailToConnect:error:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"centralManager","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","text":"CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"didFailToConnect","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":", ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","abstract":[{"text":"This method will be called when disconnection was initiated from a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"role":"symbol","defaultImplementations":1,"title":"peripheral(_:didDisconnect:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didDisconnect","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-2bpww":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-2bpww","abstract":[],"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheralDidReceiveConnectionRequest","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-2bpww"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"role":"symbol","defaultImplementations":1,"title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg.json index c248f01..03fde53 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"],"traits":[{"interfaceLanguage":"swift"}]}],"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-8n6fz"]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This method is called when the mock peripheral has been reset."},{"type":"text","text":" "},{"type":"text","text":"It should reset all values to the initial state."}],"kind":"symbol","metadata":{"role":"symbol","title":"reset()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP5resetyyF","required":true,"modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"seeAlsoSections":[{"title":"Handling Connection Events","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"defaultImplementations":1,"role":"symbol","title":"peripheral(_:didDisconnect:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didDisconnect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?)"}],"abstract":[{"type":"text","text":"This method will be called when disconnection was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"defaultImplementations":1,"role":"symbol","title":"reset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"This method is called when the mock peripheral has been reset."},{"type":"text","text":" "},{"type":"text","text":"It should reset all values to the initial state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-8n6fz":{"role":"symbol","title":"reset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-8n6fz","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-8n6fz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"defaultImplementations":1,"role":"symbol","title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">"}],"abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"}}} \ No newline at end of file +{"defaultImplementationsSections":[{"title":"CBMPeripheralSpecDelegate Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-8n6fz"]}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"reset","kind":"identifier"},{"kind":"text","text":"()"}],"required":true,"role":"symbol","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP5resetyyF","title":"reset()","symbolKind":"method"},"sections":[],"seeAlsoSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65"],"title":"Handling Connection Events","generated":true}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"text":"()","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","interfaceLanguage":"swift"},"abstract":[{"text":"This method is called when the mock peripheral has been reset.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"It should reset all values to the initial state."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"]]},"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","abstract":[{"text":"This method is called when the mock peripheral has been reset.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"It should reset all values to the initial state."}],"role":"symbol","defaultImplementations":1,"title":"reset()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reset"},{"text":"()","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-8n6fz":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"reset","kind":"identifier"},{"kind":"text","text":"()"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-8n6fz","title":"reset()","abstract":[],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-8n6fz","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheral(_:didDisconnect:)-37v65":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheral(_:didDisconnect:)-37v65","abstract":[{"text":"This method will be called when disconnection was initiated from a","type":"text"},{"type":"text","text":" "},{"type":"text","text":"mock central manager or peripheral side."}],"role":"symbol","defaultImplementations":1,"title":"peripheral(_:didDisconnect:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":", "},{"text":"didDisconnect","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":"?)","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/peripheralDidReceiveConnectionRequest(_:)-6eqgz":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/peripheralDidReceiveConnectionRequest(_:)-6eqgz","abstract":[{"type":"text","text":"This method will be called when a connect request was initiated from a"},{"type":"text","text":" "},{"type":"text","text":"mock central manager."}],"role":"symbol","defaultImplementations":1,"title":"peripheralDidReceiveConnectionRequest(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"peripheralDidReceiveConnectionRequest"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec"},{"text":") -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz.json b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz.json index a5ffe00..bdd8671 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-8n6fz"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-8n6fz","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMPeripheralSpecDelegate.reset()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"reset()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"symbolKind":"method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE5resetyyF","extendedModule":"CoreBluetoothMock","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"defaultImplementations":1,"role":"symbol","title":"reset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"This method is called when the mock peripheral has been reset."},{"type":"text","text":" "},{"type":"text","text":"It should reset all values to the initial state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-8n6fz":{"role":"symbol","title":"reset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reset"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-8n6fz","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-8n6fz"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reset"},{"text":"()","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","extendedModule":"CoreBluetoothMock","title":"reset()","symbolKind":"method","roleHeading":"Instance Method","externalID":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegatePAAE5resetyyF"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-8n6fz"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"CBMPeripheralSpecDelegate.reset()","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"reset","kind":"identifier"},{"kind":"text","text":"()"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-8n6fz"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-7utrg":{"required":true,"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-7utrg","abstract":[{"text":"This method is called when the mock peripheral has been reset.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"It should reset all values to the initial state."}],"role":"symbol","defaultImplementations":1,"title":"reset()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reset"},{"text":"()","kind":"text"}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate/reset()-8n6fz":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"reset","kind":"identifier"},{"kind":"text","text":"()"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate\/reset()-8n6fz","title":"reset()","abstract":[],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-8n6fz","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmperipheralstate.json b/docs/data/documentation/corebluetoothmock/cbmperipheralstate.json index 78ec1cc..f9baf0d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmperipheralstate.json +++ b/docs/data/documentation/corebluetoothmock/cbmperipheralstate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBPeripheralState","preciseIdentifier":"c:@E@CBPeripheralState"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralstate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"title":"CBMPeripheralState","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock18CBMPeripheralStatea","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"role":"symbol","title":"CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegate"}],"abstract":[{"type":"text","text":"A protocol that provides updates on the use of a peripheral’s services."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"role":"symbol","title":"CBMPeripheralPreview","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralPreview"}],"abstract":[{"type":"text","text":"A stub "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" implementation designed only for SwiftUI Previews."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralPreview"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"role":"symbol","title":"CBML2CAPPSM","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPPSM"}],"abstract":[{"type":"text","text":"The type of PSM identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPPSM"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"role":"symbol","title":"CBMPeripheralDelegateProxy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"abstract":[{"type":"text","text":"A helper class that allows setting delegate callbacks as closures."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"role":"symbol","title":"CBMPeripheralNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralNative"}],"abstract":[{"type":"text","text":"A native implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" that will proxy all requests to an underlying "},{"type":"codeVoice","code":"CBPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"role":"symbol","title":"CBML2CAPChannel","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"type":"text","text":"A live L2CAP connection to a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBML2CAPChannel"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"role":"symbol","title":"CBMPeer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeer"}],"abstract":[{"type":"text","text":"An object that represents a remote device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"url":"\/documentation\/corebluetoothmock\/cbmpeer"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"role":"symbol","title":"CBMPeripheralState","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralState"}],"abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralState"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"role":"symbol","title":"CBMPeripheralMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralMock"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralmock"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralState"},{"text":" = ","kind":"text"},{"text":"CBPeripheralState","preciseIdentifier":"c:@E@CBPeripheralState","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"],["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmperipheralstate"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"typealias","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralState","kind":"identifier"}],"role":"symbol","externalID":"s:17CoreBluetoothMock18CBMPeripheralStatea","roleHeading":"Type Alias","title":"CBMPeripheralState"},"seeAlsoSections":[{"title":"Peripheral","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxyWithL2CAPChannel":{"type":"topic","role":"symbol","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxyWithL2CAPChannel","navigatorTitle":[{"text":"CBMPeripheralDelegateProxyWithL2CAPChannel","kind":"identifier"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralDelegateProxyWithL2CAPChannel"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegate":{"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","abstract":[{"text":"A protocol that provides updates on the use of a peripheral’s services.","type":"text"}],"title":"CBMPeripheralDelegate","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"text":"CBMPeripheralDelegate","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralPreview":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMPeripheralPreview","kind":"identifier"}],"abstract":[{"text":"A stub ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" implementation designed only for SwiftUI Previews.","type":"text"}],"title":"CBMPeripheralPreview","type":"topic","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralPreview","navigatorTitle":[{"text":"CBMPeripheralPreview","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeer":{"type":"topic","role":"symbol","title":"CBMPeer","abstract":[{"type":"text","text":"An object that represents a remote device."}],"url":"\/documentation\/corebluetoothmock\/cbmpeer","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeer","navigatorTitle":[{"kind":"identifier","text":"CBMPeer"}],"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeer","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralState":{"type":"topic","role":"symbol","title":"CBMPeripheralState","abstract":[{"type":"text","text":"Values representing the connection state of a peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralstate","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralState","navigatorTitle":[{"text":"CBMPeripheralState","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"CBMPeripheralState","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPChannel":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPChannel","title":"CBML2CAPChannel","role":"symbol","navigatorTitle":[{"text":"CBML2CAPChannel","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBML2CAPChannel"}],"abstract":[{"text":"A live L2CAP connection to a remote device.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2capchannel","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralNative":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMPeripheralNative","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","abstract":[{"type":"text","text":"A native implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true,"type":"reference"},{"text":" that will proxy all requests to an underlying ","type":"text"},{"code":"CBPeripheral","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","type":"topic","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralNative","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralNative"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralMock":{"navigatorTitle":[{"text":"CBMPeripheralMock","kind":"identifier"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":"."}],"title":"CBMPeripheralMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralMock","kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralmock","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMPeripheralMock","kind":"identifier"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBML2CAPPSM":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBML2CAPPSM","title":"CBML2CAPPSM","role":"symbol","navigatorTitle":[{"text":"CBML2CAPPSM","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBML2CAPPSM","kind":"identifier"}],"abstract":[{"text":"The type of PSM identifiers.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbml2cappsm","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralDelegateProxy":{"fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralDelegateProxy","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","abstract":[{"text":"A helper class that allows setting delegate callbacks as closures.","type":"text"}],"kind":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralDelegateProxy"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmproximity.json b/docs/data/documentation/corebluetoothmock/cbmproximity.json index e3232de..e809564 100644 --- a/docs/data/documentation/corebluetoothmock/cbmproximity.json +++ b/docs/data/documentation/corebluetoothmock/cbmproximity.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Mocking Bluetooth LE Devices","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"title":"CBMProximity","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:17CoreBluetoothMock12CBMProximityO","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}]},"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/far","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/near","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"]},{"title":"Default Implementations","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations"],"generated":true}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/immediate":{"role":"symbol","title":"CBMProximity.immediate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"immediate"}],"abstract":[{"type":"text","text":"The device will have RSSI values around -70 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/immediate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/far":{"role":"symbol","title":"CBMProximity.far","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"far"}],"abstract":[{"type":"text","text":"The device is far, will have RSSI values around -100 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/far","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/far"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/outOfRange":{"role":"symbol","title":"CBMProximity.outOfRange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"outOfRange"}],"abstract":[{"type":"text","text":"The device is out of range."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/near":{"role":"symbol","title":"CBMProximity.near","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"near"}],"abstract":[{"type":"text","text":"The device will have RSSI values around -40 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/near","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/near"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/equatable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"role":"symbol","title":"CBMAdvertisementConfig","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAdvertisementConfig"}],"abstract":[{"type":"text","text":"Advertisement configuration."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"},"relationshipsSections":[{"title":"Conforms To","kind":"relationships","type":"conformsTo","identifiers":["doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMProximity"}],"platforms":["macOS"]}]}],"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/far","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/near","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations"],"generated":true,"title":"Default Implementations"}],"metadata":{"externalID":"s:17CoreBluetoothMock12CBMProximityO","navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"roleHeading":"Enumeration","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMProximity","kind":"identifier"}],"role":"symbol","symbolKind":"enum","title":"CBMProximity","modules":[{"name":"CoreBluetoothMock"}]},"sections":[],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"kind":"symbol","seeAlsoSections":[{"title":"Mocking Bluetooth LE Devices","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig"],"generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmproximity"]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/immediate":{"type":"topic","title":"CBMProximity.immediate","role":"symbol","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"immediate","kind":"identifier"}],"kind":"symbol","abstract":[{"type":"text","text":"The device will have RSSI values around -70 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","url":"\/documentation\/corebluetoothmock\/cbmproximity\/immediate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAdvertisementConfig":{"navigatorTitle":[{"kind":"identifier","text":"CBMAdvertisementConfig"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"CBMAdvertisementConfig","kind":"identifier"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Advertisement configuration."}],"url":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAdvertisementConfig","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/far":{"role":"symbol","title":"CBMProximity.far","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/far","kind":"symbol","abstract":[{"type":"text","text":"The device is far, will have RSSI values around -100 dBm."}],"fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"far"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/far"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/near":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"near"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity\/near","kind":"symbol","type":"topic","abstract":[{"text":"The device will have RSSI values around -40 dBm.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/near","title":"CBMProximity.near"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/outOfRange":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange","abstract":[{"text":"The device is out of range.","type":"text"}],"role":"symbol","title":"CBMProximity.outOfRange","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"outOfRange","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/Equatable-Implementations":{"kind":"article","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations","title":"Equatable Implementations","abstract":[],"role":"collectionGroup","url":"\/documentation\/corebluetoothmock\/cbmproximity\/equatable-implementations","type":"topic"},"doc://CoreBluetoothMock/SQ":{"identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable","type":"unresolvable"},"doc://CoreBluetoothMock/SH":{"identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable","type":"unresolvable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmproximity/!=(_:_:).json b/docs/data/documentation/corebluetoothmock/cbmproximity/!=(_:_:).json index 81671ae..f872482 100644 --- a/docs/data/documentation/corebluetoothmock/cbmproximity/!=(_:_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmproximity/!=(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/!=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"op","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:17CoreBluetoothMock12CBMProximityO","extendedModule":"Swift","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/!=(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/equatable-implementations"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"}}} \ No newline at end of file +{"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/!=(_:_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/!=(_:_:)"]}],"metadata":{"symbolKind":"op","extendedModule":"Swift","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:17CoreBluetoothMock12CBMProximityO","role":"symbol","title":"!=(_:_:)","modules":[{"name":"CoreBluetoothMock","relatedModules":["Swift"]}]},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Equatable.!=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/!=(_:_:)":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/!=(_:_:)","title":"!=(_:_:)","abstract":[],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmproximity\/!=(_:_:)","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/Equatable-Implementations":{"kind":"article","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations","title":"Equatable Implementations","abstract":[],"role":"collectionGroup","url":"\/documentation\/corebluetoothmock\/cbmproximity\/equatable-implementations","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmproximity/equatable-implementations.json b/docs/data/documentation/corebluetoothmock/cbmproximity/equatable-implementations.json index 96cf863..555c3b6 100644 --- a/docs/data/documentation/corebluetoothmock/cbmproximity/equatable-implementations.json +++ b/docs/data/documentation/corebluetoothmock/cbmproximity/equatable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/!=(_:_:)"],"generated":true}],"kind":"article","metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/!=(_:_:)":{"role":"symbol","title":"!=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/!=(_:_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"kind":"article","schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"role":"collectionGroup","title":"Equatable Implementations","modules":[{"name":"CoreBluetoothMock"}]},"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/!=(_:_:)"],"generated":true,"title":"Operators"}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/Equatable-Implementations","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/equatable-implementations"]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/!=(_:_:)":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/!=(_:_:)","title":"!=(_:_:)","abstract":[],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmproximity\/!=(_:_:)","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmproximity/far.json b/docs/data/documentation/corebluetoothmock/cbmproximity/far.json index 01b5895..c353556 100644 --- a/docs/data/documentation/corebluetoothmock/cbmproximity/far.json +++ b/docs/data/documentation/corebluetoothmock/cbmproximity/far.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"far"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/far"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/far","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The device is far, will have RSSI values around -100 dBm."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"far"}],"title":"CBMProximity.far","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock12CBMProximityO3faryA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/far":{"role":"symbol","title":"CBMProximity.far","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"far"}],"abstract":[{"type":"text","text":"The device is far, will have RSSI values around -100 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/far","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/far"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/far"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"far","kind":"identifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/far"]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"The device is far, will have RSSI values around -100 dBm."}],"metadata":{"externalID":"s:17CoreBluetoothMock12CBMProximityO3faryA2CmF","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"CBMProximity.far","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"far","kind":"identifier"}],"symbolKind":"case","roleHeading":"Case"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/far":{"role":"symbol","title":"CBMProximity.far","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/far","kind":"symbol","abstract":[{"type":"text","text":"The device is far, will have RSSI values around -100 dBm."}],"fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"far"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/far"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmproximity/immediate.json b/docs/data/documentation/corebluetoothmock/cbmproximity/immediate.json index d64c122..bd45229 100644 --- a/docs/data/documentation/corebluetoothmock/cbmproximity/immediate.json +++ b/docs/data/documentation/corebluetoothmock/cbmproximity/immediate.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"immediate"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/immediate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The device will have RSSI values around -70 dBm."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"immediate"}],"title":"CBMProximity.immediate","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock12CBMProximityO9immediateyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/immediate":{"role":"symbol","title":"CBMProximity.immediate","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"immediate"}],"abstract":[{"type":"text","text":"The device will have RSSI values around -70 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/immediate"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"kind":"symbol","abstract":[{"text":"The device will have RSSI values around -70 dBm.","type":"text"}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/immediate"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Case","modules":[{"name":"CoreBluetoothMock"}],"externalID":"s:17CoreBluetoothMock12CBMProximityO9immediateyA2CmF","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"immediate"}],"title":"CBMProximity.immediate","role":"symbol","symbolKind":"case"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"immediate"}],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/immediate":{"type":"topic","title":"CBMProximity.immediate","role":"symbol","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"immediate","kind":"identifier"}],"kind":"symbol","abstract":[{"type":"text","text":"The device will have RSSI values around -70 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/immediate","url":"\/documentation\/corebluetoothmock\/cbmproximity\/immediate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmproximity/near.json b/docs/data/documentation/corebluetoothmock/cbmproximity/near.json index 3834a1b..c7d6380 100644 --- a/docs/data/documentation/corebluetoothmock/cbmproximity/near.json +++ b/docs/data/documentation/corebluetoothmock/cbmproximity/near.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"near"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/near"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/near","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The device will have RSSI values around -40 dBm."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"near"}],"title":"CBMProximity.near","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock12CBMProximityO4nearyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/near":{"role":"symbol","title":"CBMProximity.near","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"near"}],"abstract":[{"type":"text","text":"The device will have RSSI values around -40 dBm."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/near","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/near"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"sections":[],"metadata":{"title":"CBMProximity.near","symbolKind":"case","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Case","role":"symbol","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"near","kind":"identifier"}],"externalID":"s:17CoreBluetoothMock12CBMProximityO4nearyA2CmF"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"near","kind":"identifier"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/near"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/near"},"abstract":[{"text":"The device will have RSSI values around -40 dBm.","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/near":{"role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"near"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity\/near","kind":"symbol","type":"topic","abstract":[{"text":"The device will have RSSI values around -40 dBm.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/near","title":"CBMProximity.near"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmproximity/outofrange.json b/docs/data/documentation/corebluetoothmock/cbmproximity/outofrange.json index 40a23ca..8a9c034 100644 --- a/docs/data/documentation/corebluetoothmock/cbmproximity/outofrange.json +++ b/docs/data/documentation/corebluetoothmock/cbmproximity/outofrange.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"outOfRange"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/outofrange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The device is out of range."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"outOfRange"}],"title":"CBMProximity.outOfRange","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:17CoreBluetoothMock12CBMProximityO10outOfRangeyA2CmF","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","title":"CBMProximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"abstract":[{"type":"text","text":"The approximate mock device proximity."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMProximity"}],"url":"\/documentation\/corebluetoothmock\/cbmproximity"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/outOfRange":{"role":"symbol","title":"CBMProximity.outOfRange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"outOfRange"}],"abstract":[{"type":"text","text":"The device is out of range."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange"}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmproximity\/outofrange"]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange","interfaceLanguage":"swift"},"abstract":[{"text":"The device is out of range.","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"outOfRange"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity"]]},"metadata":{"roleHeading":"Case","role":"symbol","title":"CBMProximity.outOfRange","externalID":"s:17CoreBluetoothMock12CBMProximityO10outOfRangeyA2CmF","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"outOfRange"}],"symbolKind":"case"},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/outOfRange":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange","abstract":[{"text":"The device is out of range.","type":"text"}],"role":"symbol","title":"CBMProximity.outOfRange","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"outOfRange","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity":{"role":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMProximity"}],"navigatorTitle":[{"text":"CBMProximity","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity","abstract":[{"text":"The approximate mock device proximity.","type":"text"}],"title":"CBMProximity","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservice.json b/docs/data/documentation/corebluetoothmock/cbmservice.json index 3641504..b3b161e 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservice.json +++ b/docs/data/documentation/corebluetoothmock/cbmservice.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"title":"CBMService","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMService","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMService"}]},"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/isPrimary","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/peripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/uuid"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservice"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"CBMService"},{"type":"text","text":" objects represent services of a remote peripheral. Services are either primary or secondary and"},{"type":"text","text":" "},{"type":"text","text":"may contain multiple characteristics or included services (references to other services)."}]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/peripheral":{"role":"symbol","title":"peripheral","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A back-pointer to the peripheral this service belongs to."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/peripheral","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/peripheral"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"role":"symbol","title":"includedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of included services that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/uuid":{"role":"symbol","title":"uuid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/uuid","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/uuid"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"role":"symbol","title":"characteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/isPrimary":{"role":"symbol","title":"isPrimary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrimary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"The type of the service (primary or secondary)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/isPrimary","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/isprimary"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"}}} \ No newline at end of file +{"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"metadata":{"roleHeading":"Class","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}],"title":"CBMService","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMService","role":"symbol","symbolKind":"class"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","interfaceLanguage":"swift"},"sections":[],"abstract":[{"text":"A collection of data and associated behaviors that accomplish a function or feature of a device.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/isPrimary","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/peripheral","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/uuid"],"title":"Instance Properties"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"relationshipsSections":[{"title":"Inherits From","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute"],"kind":"relationships","type":"inheritsFrom"},{"kind":"relationships","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"],"type":"inheritedBy","title":"Inherited By"},{"kind":"relationships","type":"conformsTo","title":"Conforms To","identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMService","kind":"identifier"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"type":"heading","level":2,"anchor":"overview","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"CBMService"},{"text":" objects represent services of a remote peripheral. Services are either primary or secondary and","type":"text"},{"type":"text","text":" "},{"type":"text","text":"may contain multiple characteristics or included services (references to other services)."}]}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmservice"]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/uuid":{"type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/uuid","abstract":[],"title":"uuid","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/uuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristics","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":"]?","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","type":"topic","abstract":[{"text":"A list of characteristics that have so far been discovered in this service.","type":"text"}],"kind":"symbol","title":"characteristics","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","title":"Swift.CVarArg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"abstract":[{"text":"A list of included services that have so far been discovered in this service.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"includedServices"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/peripheral":{"type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/peripheral","abstract":[{"type":"text","text":"A back-pointer to the peripheral this service belongs to."}],"title":"peripheral","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/peripheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/isPrimary":{"type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrimary"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/isPrimary","abstract":[{"type":"text","text":"The type of the service (primary or secondary)."}],"title":"isPrimary","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/isprimary"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservice/characteristics.json b/docs/data/documentation/corebluetoothmock/cbmservice/characteristics.json index cbb00b8..3a847c7 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservice/characteristics.json +++ b/docs/data/documentation/corebluetoothmock/cbmservice/characteristics.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic"},{"kind":"text","text":"]? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservice\/characteristics"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"title":"characteristics","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock10CBMServiceC15characteristicsSayAA17CBMCharacteristicCGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"role":"symbol","title":"characteristics","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristic","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"characteristics"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic","text":"CBMCharacteristic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"text":"]? { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"A list of characteristics that have so far been discovered in this service."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"characteristics","externalID":"s:17CoreBluetoothMock10CBMServiceC15characteristicsSayAA17CBMCharacteristicCGSgvp","role":"symbol","roleHeading":"Instance Property","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"characteristics","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"kind":"text","text":"]?"}],"symbolKind":"property"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmservice\/characteristics"]}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/characteristics":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"characteristics","kind":"identifier"},{"text":": [","kind":"text"},{"text":"CBMCharacteristic","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristic"},{"text":"]?","kind":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","type":"topic","abstract":[{"text":"A list of characteristics that have so far been discovered in this service.","type":"text"}],"kind":"symbol","title":"characteristics","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/characteristics"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservice/includedservices.json b/docs/data/documentation/corebluetoothmock/cbmservice/includedservices.json index 9291d58..372b4b3 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservice/includedservices.json +++ b/docs/data/documentation/corebluetoothmock/cbmservice/includedservices.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService"},{"kind":"text","text":"]? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservice\/includedservices"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A list of included services that have so far been discovered in this service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"title":"includedServices","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock10CBMServiceC16includedServicesSayACGSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"role":"symbol","title":"includedServices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"kind":"text","text":"]?"}],"abstract":[{"type":"text","text":"A list of included services that have so far been discovered in this service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"property","title":"includedServices","externalID":"s:17CoreBluetoothMock10CBMServiceC16includedServicesSayACGSgvp","roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","kind":"typeIdentifier"},{"kind":"text","text":"]?"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmservice\/includedservices"]}],"abstract":[{"text":"A list of included services that have so far been discovered in this service.","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService","text":"CBMService","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"text":"]? { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","interfaceLanguage":"swift"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/includedServices":{"abstract":[{"text":"A list of included services that have so far been discovered in this service.","type":"text"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"includedServices"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"CBMService","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMService"},{"text":"]?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/includedServices","type":"topic","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"includedServices"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservice/isprimary.json b/docs/data/documentation/corebluetoothmock/cbmservice/isprimary.json index 7310e95..0ee2d96 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservice/isprimary.json +++ b/docs/data/documentation/corebluetoothmock/cbmservice/isprimary.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrimary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservice\/isprimary"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/isPrimary","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The type of the service (primary or secondary)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrimary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isPrimary","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock10CBMServiceC9isPrimarySbvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/isPrimary":{"role":"symbol","title":"isPrimary","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrimary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"The type of the service (primary or secondary)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/isPrimary","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/isprimary"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/isPrimary","interfaceLanguage":"swift"},"sections":[],"metadata":{"roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrimary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"modules":[{"name":"CoreBluetoothMock"}],"title":"isPrimary","externalID":"s:17CoreBluetoothMock10CBMServiceC9isPrimarySbvp","role":"symbol","symbolKind":"property"},"abstract":[{"text":"The type of the service (primary or secondary).","type":"text"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrimary"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" { get }","kind":"text"}]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservice\/isprimary"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/isPrimary":{"type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrimary"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/isPrimary","abstract":[{"type":"text","text":"The type of the service (primary or secondary)."}],"title":"isPrimary","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/isprimary"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservice/peripheral.json b/docs/data/documentation/corebluetoothmock/cbmservice/peripheral.json index 6394e8c..cc7043c 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservice/peripheral.json +++ b/docs/data/documentation/corebluetoothmock/cbmservice/peripheral.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"weak"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"? { get }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservice\/peripheral"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/peripheral","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A back-pointer to the peripheral this service belongs to."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"?"}],"title":"peripheral","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock10CBMServiceC10peripheralAA13CBMPeripheral_pSgvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/peripheral":{"role":"symbol","title":"peripheral","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"A back-pointer to the peripheral this service belongs to."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/peripheral","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/peripheral"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmservice\/peripheral"]}],"kind":"symbol","identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/peripheral","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A back-pointer to the peripheral this service belongs to."}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"weak"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"peripheral","kind":"identifier"},{"kind":"text","text":": "},{"text":"CBMPeripheral","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier"},{"kind":"text","text":"? { get }"}]}]}],"sections":[],"metadata":{"roleHeading":"Instance Property","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"title":"peripheral","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","kind":"typeIdentifier","text":"CBMPeripheral"},{"kind":"text","text":"?"}],"externalID":"s:17CoreBluetoothMock10CBMServiceC10peripheralAA13CBMPeripheral_pSgvp","symbolKind":"property"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/peripheral":{"type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"peripheral"},{"kind":"text","text":": "},{"text":"CBMPeripheral","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"text":"?","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/peripheral","abstract":[{"type":"text","text":"A back-pointer to the peripheral this service belongs to."}],"title":"peripheral","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/peripheral"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservice/uuid.json b/docs/data/documentation/corebluetoothmock/cbmservice/uuid.json index 3a44225..005526d 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservice/uuid.json +++ b/docs/data/documentation/corebluetoothmock/cbmservice/uuid.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservice\/uuid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/uuid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"CBMAttribute.uuid"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"title":"uuid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:17CoreBluetoothMock10CBMServiceC4uuidSo6CBUUIDCvp","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/uuid":{"role":"symbol","title":"uuid","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/uuid","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservice\/uuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"property","title":"uuid","externalID":"s:17CoreBluetoothMock10CBMServiceC4uuidSo6CBUUIDCvp","roleHeading":"Instance Property"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"CBMAttribute.uuid"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"text":": ","kind":"text"},{"text":"CBMUUID","kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmservice\/uuid"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/uuid"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService/uuid":{"type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"uuid"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService\/uuid","abstract":[],"title":"uuid","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservice\/uuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservicemock.json b/docs/data/documentation/corebluetoothmock/cbmservicemock.json index 5e1d299..a52fe07 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservicemock.json +++ b/docs/data/documentation/corebluetoothmock/cbmservicemock.json @@ -1 +1 @@ -{"seeAlsoSections":[{"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"title":"CBMServiceMock","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}]},"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-255jq","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-2pj4o"]},{"title":"Instance Methods","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/isEqual(_:)"]}],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservicemock"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/init(type:primary:includedService:characteristics:)-255jq":{"role":"symbol","title":"init(type:primary:includedService:characteristics:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-255jq","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-255jq"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/CoreBluetoothMock\/SH"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"role":"symbol","title":"CBMCharacteristicProperties","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"abstract":[{"type":"text","text":"Values that represent the possible properties of a characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/init(type:primary:includedService:characteristics:)-2pj4o":{"role":"symbol","title":"init(type:primary:includedService:characteristics:)","fragments":[{"kind":"keyword","text":"convenience"},{"kind":"text","text":" "},{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"..., "},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":"...)"}],"abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-2pj4o","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-2pj4o"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"role":"symbol","title":"CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMAttribute"}],"abstract":[{"type":"text","text":"A representation of common aspects of services offered by a peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"role":"symbol","title":"CBMDescriptor","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptor"}],"abstract":[{"type":"text","text":"An object that provides further information about a remote peripheral’s characteristic."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptor"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"role":"symbol","title":"CBMClientCharacteristicConfigurationDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"role":"symbol","title":"CBMDescriptorMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMDescriptorMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"role":"symbol","title":"CBMCharacteristicWriteType","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"abstract":[{"type":"text","text":"Values representing the possible write types to a characteristic’s value."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicWriteType"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"role":"symbol","title":"CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"abstract":[{"type":"text","text":"A type alias of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCCCDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/isEqual(_:)":{"role":"symbol","title":"isEqual(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/isEqual(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/isequal(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/CoreBluetoothMock\/SQ"}}} \ No newline at end of file +{"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-255jq","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-2pj4o"]},{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/isEqual(_:)"],"title":"Instance Methods"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"},"relationshipsSections":[{"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"],"type":"inheritsFrom","kind":"relationships","title":"Inherits From"},{"identifiers":["doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","doc:\/\/CoreBluetoothMock\/s7CVarArgP","doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","doc:\/\/CoreBluetoothMock\/SQ","doc:\/\/CoreBluetoothMock\/SH"],"title":"Conforms To","kind":"relationships","type":"conformsTo"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","seeAlsoSections":[{"generated":true,"title":"Attributes","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock"]}],"metadata":{"externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMServiceMock","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"title":"CBMServiceMock","role":"symbol","symbolKind":"class","roleHeading":"Class","modules":[{"name":"CoreBluetoothMock"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMServiceMock","kind":"identifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmservicemock"]}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"sections":[],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/SQ":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SQ","title":"Swift.Equatable"},"doc://CoreBluetoothMock/s23CustomStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/init(type:primary:includedService:characteristics:)-2pj4o":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-2pj4o","role":"symbol","fragments":[{"kind":"keyword","text":"convenience"},{"kind":"text","text":" "},{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"type"},{"text":": ","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"includedService","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"text":"..., ","kind":"text"},{"kind":"externalParam","text":"characteristics"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":"...)","kind":"text"}],"kind":"symbol","title":"init(type:primary:includedService:characteristics:)","abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-2pj4o"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptorMock","role":"symbol","kind":"symbol","navigatorTitle":[{"text":"CBMDescriptorMock","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMDescriptorMock"}],"type":"topic","abstract":[{"text":"Mock implementation of ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","isActive":true,"type":"reference"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicWriteType":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicWriteType","navigatorTitle":[{"text":"CBMCharacteristicWriteType","kind":"identifier"}],"abstract":[{"text":"Values representing the possible write types to a characteristic’s value.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"topic","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicProperties":{"abstract":[{"text":"Values that represent the possible properties of a characteristic.","type":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicProperties","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicProperties"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","type":"topic","kind":"symbol","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicProperties"}],"title":"CBMCharacteristicProperties"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCCCDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCCCDescriptorMock","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"CBMCCCDescriptorMock","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","kind":"symbol","type":"topic","abstract":[{"text":"A type alias of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","isActive":true},{"type":"text","text":"."}],"title":"CBMCCCDescriptorMock"},"doc://CoreBluetoothMock/objc(pl)NSObject":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/objc(pl)NSObject","title":"ObjectiveC.NSObjectProtocol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMClientCharacteristicConfigurationDescriptorMock":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMClientCharacteristicConfigurationDescriptorMock","abstract":[{"type":"text","text":"A mock implementation of Client Characteristic Configuration descriptor (CCCD)."}],"navigatorTitle":[{"kind":"identifier","text":"CBMClientCharacteristicConfigurationDescriptorMock"}],"url":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMClientCharacteristicConfigurationDescriptorMock","kind":"identifier"}],"title":"CBMClientCharacteristicConfigurationDescriptorMock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/init(type:primary:includedService:characteristics:)-255jq":{"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"kind":"text","text":", "},{"text":"primary","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"includedService","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier","text":"CBMServiceMock"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"characteristics"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-255jq","abstract":[{"text":"Returns a service, initialized with a service type and UUID.","type":"text"}],"title":"init(type:primary:includedService:characteristics:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-255jq"},"doc://CoreBluetoothMock/s28CustomDebugStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s28CustomDebugStringConvertibleP","title":"Swift.CustomDebugStringConvertible"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/isEqual(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"text":"(","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/isEqual(_:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/isequal(_:)","title":"isEqual(_:)","abstract":[],"kind":"symbol","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/SH":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/SH","title":"Swift.Hashable"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMDescriptor":{"url":"\/documentation\/corebluetoothmock\/cbmdescriptor","abstract":[{"text":"An object that provides further information about a remote peripheral’s characteristic.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMDescriptor","navigatorTitle":[{"kind":"identifier","text":"CBMDescriptor"}],"title":"CBMDescriptor","type":"topic","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMDescriptor","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMAttribute":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMAttribute","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMAttribute"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMAttribute"}],"url":"\/documentation\/corebluetoothmock\/cbmattribute","kind":"symbol","title":"CBMAttribute","abstract":[{"text":"A representation of common aspects of services offered by a peripheral.","type":"text"}],"type":"topic"},"doc://CoreBluetoothMock/s7CVarArgP":{"type":"unresolvable","identifier":"doc:\/\/CoreBluetoothMock\/s7CVarArgP","title":"Swift.CVarArg"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq.json b/docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq.json index aa7f6dc..2daf134 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq.json +++ b/docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":" "},{"kind":"internalParam","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":" "},{"kind":"internalParam","text":"isPrimary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":"]? = nil, "},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":"]? = nil)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"uuid","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The Bluetooth UUID of the service."}]}]},{"name":"isPrimary","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The type of the service (primary or secondary)."}]}]},{"name":"includedServices","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional array of included services."}]}]},{"name":"characteristics","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional aray of characteristics."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-255jq"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-255jq","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":"]?)"}],"title":"init(type:primary:includedService:characteristics:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock010CBMServiceC0C4type7primary15includedService15characteristicsACSo6CBUUIDC_SbSayACGSgSayAA017CBMCharacteristicC0CGSgtcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/init(type:primary:includedService:characteristics:)-255jq":{"role":"symbol","title":"init(type:primary:includedService:characteristics:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-255jq","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-255jq"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":" "},{"text":"uuid","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","text":"CBMUUID"},{"kind":"text","text":", "},{"text":"primary","kind":"externalParam"},{"kind":"text","text":" "},{"text":"isPrimary","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":", "},{"text":"includedService","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":"]? = nil, ","kind":"text"},{"text":"characteristics","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":"]? = nil)","kind":"text"}],"platforms":["macOS"]}]},{"parameters":[{"name":"uuid","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The Bluetooth UUID of the service."}]}]},{"name":"isPrimary","content":[{"type":"paragraph","inlineContent":[{"text":"The type of the service (primary or secondary).","type":"text"}]}]},{"name":"includedServices","content":[{"inlineContent":[{"text":"Optional array of included services.","type":"text"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"text":"Optional array of characteristics.","type":"text"}]}],"name":"characteristics"}],"kind":"parameters"}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-255jq"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-255jq","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"primary","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"text":"]?, ","kind":"text"},{"text":"characteristics","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"text":"]?)","kind":"text"}],"modules":[{"name":"CoreBluetoothMock"}],"role":"symbol","symbolKind":"init","title":"init(type:primary:includedService:characteristics:)","externalID":"s:17CoreBluetoothMock010CBMServiceC0C4type7primary15includedService15characteristicsACSo6CBUUIDC_SbSayACGSgSayAA017CBMCharacteristicC0CGSgtcfc","roleHeading":"Initializer"},"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/init(type:primary:includedService:characteristics:)-255jq":{"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"type","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier","text":"CBMUUID"},{"kind":"text","text":", "},{"text":"primary","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"includedService","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier","text":"CBMServiceMock"},{"kind":"text","text":"]?, "},{"kind":"externalParam","text":"characteristics"},{"text":": [","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-255jq","abstract":[{"text":"Returns a service, initialized with a service type and UUID.","type":"text"}],"title":"init(type:primary:includedService:characteristics:)","role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-255jq"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o.json b/docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o.json index 9ae28c4..64b74b5 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o.json +++ b/docs/data/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"convenience"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":" "},{"kind":"internalParam","text":"uuid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":" "},{"kind":"internalParam","text":"isPrimary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock"},{"kind":"text","text":"..., "},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":"...)"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"parameters","parameters":[{"name":"uuid","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The Bluetooth UUID of the service."}]}]},{"name":"isPrimary","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The type of the service (primary or secondary)."}]}]},{"name":"includedServices","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional list of included services."}]}]},{"name":"characteristics","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional list of characteristics."}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-2pj4o"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-2pj4o","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"convenience"},{"kind":"text","text":" "},{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"..., "},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":"...)"}],"title":"init(type:primary:includedService:characteristics:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:17CoreBluetoothMock010CBMServiceC0C4type7primary15includedService15characteristicsACSo6CBUUIDC_SbACdAA017CBMCharacteristicC0Cdtcfc","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/init(type:primary:includedService:characteristics:)-2pj4o":{"role":"symbol","title":"init(type:primary:includedService:characteristics:)","fragments":[{"kind":"keyword","text":"convenience"},{"kind":"text","text":" "},{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"..., "},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":"...)"}],"abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-2pj4o","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-2pj4o"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"role":"symbol","title":"CBMCharacteristic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristic"}],"abstract":[{"type":"text","text":"A characteristic of a remote peripheral’s service."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"role":"symbol","title":"CBMCharacteristicMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCharacteristicMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristicMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"convenience","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"type","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"uuid"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"text":", ","kind":"text"},{"text":"primary","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"isPrimary","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier"},{"text":"..., ","kind":"text"},{"kind":"externalParam","text":"characteristics"},{"kind":"text","text":": "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","kind":"typeIdentifier"},{"text":"...)","kind":"text"}]}]},{"kind":"parameters","parameters":[{"name":"uuid","content":[{"inlineContent":[{"text":"The Bluetooth UUID of the service.","type":"text"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The type of the service (primary or secondary)."}]}],"name":"isPrimary"},{"content":[{"inlineContent":[{"text":"Optional list of included services.","type":"text"}],"type":"paragraph"}],"name":"includedServices"},{"name":"characteristics","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optional list of characteristics."}]}]}]}],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-2pj4o"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-2pj4o","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"sections":[],"kind":"symbol","metadata":{"fragments":[{"text":"convenience","kind":"keyword"},{"text":" ","kind":"text"},{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"type","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","text":"CBMUUID"},{"kind":"text","text":", "},{"text":"primary","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"includedService"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"text":"..., ","kind":"text"},{"text":"characteristics","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock"},{"kind":"text","text":"...)"}],"externalID":"s:17CoreBluetoothMock010CBMServiceC0C4type7primary15includedService15characteristicsACSo6CBUUIDC_SbACdAA017CBMCharacteristicC0Cdtcfc","symbolKind":"init","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Initializer","title":"init(type:primary:includedService:characteristics:)","role":"symbol"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristicMock":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","abstract":[{"type":"text","text":"Mock implementation of "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","type":"reference","isActive":true},{"type":"text","text":"."}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristicMock","navigatorTitle":[{"text":"CBMCharacteristicMock","kind":"identifier"}],"title":"CBMCharacteristicMock","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"CBMCharacteristicMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCharacteristic":{"url":"\/documentation\/corebluetoothmock\/cbmcharacteristic","abstract":[{"text":"A characteristic of a remote peripheral’s service.","type":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCharacteristic","navigatorTitle":[{"kind":"identifier","text":"CBMCharacteristic"}],"title":"CBMCharacteristic","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCharacteristic"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/init(type:primary:includedService:characteristics:)-2pj4o":{"type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/init(type:primary:includedService:characteristics:)-2pj4o","role":"symbol","fragments":[{"kind":"keyword","text":"convenience"},{"kind":"text","text":" "},{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"type"},{"text":": ","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"primary"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"includedService","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CBMServiceMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"text":"..., ","kind":"text"},{"kind":"externalParam","text":"characteristics"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock","text":"CBMCharacteristicMock","kind":"typeIdentifier"},{"text":"...)","kind":"text"}],"kind":"symbol","title":"init(type:primary:includedService:characteristics:)","abstract":[{"type":"text","text":"Returns a service, initialized with a service type and UUID."}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-2pj4o"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmservicemock/isequal(_:).json b/docs/data/documentation/corebluetoothmock/cbmservicemock/isequal(_:).json index 5f4cad4..cfbc75a 100644 --- a/docs/data/documentation/corebluetoothmock/cbmservicemock/isequal(_:).json +++ b/docs/data/documentation/corebluetoothmock/cbmservicemock/isequal(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"object"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservicemock\/isequal(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/isEqual(_:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isEqual(_:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock(im)isEqual:","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","title":"CBMServiceMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMServiceMock"}],"abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"url":"\/documentation\/corebluetoothmock\/cbmservicemock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/isEqual(_:)":{"role":"symbol","title":"isEqual(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"kind":"text","text":"("},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/isEqual(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/isequal(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"role":"symbol","title":"CBMService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMService"}],"abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMService"}],"url":"\/documentation\/corebluetoothmock\/cbmservice"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"override","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isEqual"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"object"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"},{"text":"?) -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/isEqual(_:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmservicemock\/isequal(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","title":"isEqual(_:)","externalID":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock(im)isEqual:","modules":[{"name":"CoreBluetoothMock"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"text":"(","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMService":{"kind":"symbol","type":"topic","title":"CBMService","url":"\/documentation\/corebluetoothmock\/cbmservice","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMService"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","abstract":[{"type":"text","text":"A collection of data and associated behaviors that accomplish a function or feature of a device."}],"navigatorTitle":[{"text":"CBMService","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock":{"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmservicemock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMServiceMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMServiceMock"}],"type":"topic","kind":"symbol","title":"CBMServiceMock","abstract":[{"type":"text","text":"Mock implementation of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMService","isActive":true},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMServiceMock/isEqual(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEqual"},{"text":"(","kind":"text"},{"kind":"keyword","text":"Any"},{"kind":"text","text":"?) -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMServiceMock\/isEqual(_:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmservicemock\/isequal(_:)","title":"isEqual(_:)","abstract":[],"kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/cbmuuid.json b/docs/data/documentation/corebluetoothmock/cbmuuid.json index b028a7b..e10f3ef 100644 --- a/docs/data/documentation/corebluetoothmock/cbmuuid.json +++ b/docs/data/documentation/corebluetoothmock/cbmuuid.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","text":"CBUUID","preciseIdentifier":"c:objc(cs)CBUUID"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Instances of the "},{"type":"codeVoice","code":"CBMUUID"},{"type":"text","text":" class represent the 128-bit universally unique identifiers (UUIDs)"},{"type":"text","text":" "},{"type":"text","text":"of attributes used in Bluetooth low energy communication, such as a peripheral’s services,"},{"type":"text","text":" "},{"type":"text","text":"characteristics, and descriptors. This class provides a number of factory methods for dealing"},{"type":"text","text":" "},{"type":"text","text":"with long UUIDs when developing your app. For example, instead of passing around the string"},{"type":"text","text":" "},{"type":"text","text":"representation of a 128-bit Bluetooth low energy attribute in your code, you can create a"},{"type":"text","text":" "},{"type":"codeVoice","code":"CBMUUID"},{"type":"text","text":" object that represents it, and pass that around instead."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The Bluetooth Special Interest Group (SIG) publishes a list of commonly-used UUIDs,"},{"type":"text","text":" "},{"type":"text","text":"many of which are 16- or 32-bits for convenience. The "},{"type":"codeVoice","code":"CBMUUID"},{"type":"text","text":" class provides methods"},{"type":"text","text":" "},{"type":"text","text":"that automatically transform these predefined shorter UUIDs into their 128-bit equivalent UUIDs."},{"type":"text","text":" "},{"type":"text","text":"When you create a CBMUUID object from a predefined 16- or 32-bit UUID, Core Bluetooth"},{"type":"text","text":" "},{"type":"text","text":"pre-fills the rest of the 128-bit UUID with the Bluetooth base UUID, as defined in the"},{"type":"text","text":" "},{"type":"text","text":"Bluetooth 4.0 specification, Volume 3, Part F, Section 3.2.1."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"In addition to providing methods for creating "},{"type":"codeVoice","code":"CBMUUID"},{"type":"text","text":" objects, this class defines constants"},{"type":"text","text":" "},{"type":"text","text":"that represent the UUIDs of the Bluetooth-defined characteristic descriptors, as defined in the"},{"type":"text","text":" "},{"type":"text","text":"Bluetooth 4.0 specification, Volume 3, Part G, Section 3.3.3."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/cbmuuid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"title":"CBMUUID","roleHeading":"Type Alias","role":"symbol","symbolKind":"typealias","externalID":"s:17CoreBluetoothMock7CBMUUIDa","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"seeAlsoSections":[{"title":"Other","identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError"],"generated":true}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"role":"symbol","title":"CBMUUID","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMUUID"}],"url":"\/documentation\/corebluetoothmock\/cbmuuid"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"role":"symbol","title":"CBMATTError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMATTError"}],"url":"\/documentation\/corebluetoothmock\/cbmatterror"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"role":"symbol","title":"CBMError","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMError"}],"abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMError"}],"url":"\/documentation\/corebluetoothmock\/cbmerror"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/cbmuuid"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"metadata":{"externalID":"s:17CoreBluetoothMock7CBMUUIDa","roleHeading":"Type Alias","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"symbolKind":"typealias","role":"symbol","modules":[{"name":"CoreBluetoothMock"}],"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"title":"CBMUUID"},"seeAlsoSections":[{"title":"Other","generated":true,"identifiers":["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError"]}],"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"CBMUUID","kind":"identifier"},{"text":" = ","kind":"text"},{"preciseIdentifier":"c:objc(cs)CBUUID","kind":"typeIdentifier","text":"CBUUID"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"inlineContent":[{"type":"text","text":"Instances of the "},{"code":"CBMUUID","type":"codeVoice"},{"type":"text","text":" class represent the 128-bit universally unique identifiers (UUIDs)"},{"type":"text","text":" "},{"text":"of attributes used in Bluetooth low energy communication, such as a peripheral’s services,","type":"text"},{"type":"text","text":" "},{"type":"text","text":"characteristics, and descriptors. This class provides a number of factory methods for dealing"},{"type":"text","text":" "},{"type":"text","text":"with long UUIDs when developing your app. For example, instead of passing around the string"},{"text":" ","type":"text"},{"type":"text","text":"representation of a 128-bit Bluetooth low energy attribute in your code, you can create a"},{"text":" ","type":"text"},{"type":"codeVoice","code":"CBMUUID"},{"text":" object that represents it, and pass that around instead.","type":"text"}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The Bluetooth Special Interest Group (SIG) publishes a list of commonly-used UUIDs,"},{"type":"text","text":" "},{"text":"many of which are 16- or 32-bits for convenience. The ","type":"text"},{"code":"CBMUUID","type":"codeVoice"},{"text":" class provides methods","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"that automatically transform these predefined shorter UUIDs into their 128-bit equivalent UUIDs."},{"type":"text","text":" "},{"text":"When you create a CBMUUID object from a predefined 16- or 32-bit UUID, Core Bluetooth","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"pre-fills the rest of the 128-bit UUID with the Bluetooth base UUID, as defined in the"},{"type":"text","text":" "},{"text":"Bluetooth 4.0 specification, Volume 3, Part F, Section 3.2.1.","type":"text"}]},{"inlineContent":[{"type":"text","text":"In addition to providing methods for creating "},{"code":"CBMUUID","type":"codeVoice"},{"type":"text","text":" objects, this class defines constants"},{"text":" ","type":"text"},{"type":"text","text":"that represent the UUIDs of the Bluetooth-defined characteristic descriptors, as defined in the"},{"text":" ","type":"text"},{"type":"text","text":"Bluetooth 4.0 specification, Volume 3, Part G, Section 3.3.3."}],"type":"paragraph"}],"kind":"content"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMUUID":{"navigatorTitle":[{"text":"CBMUUID","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMUUID"}],"type":"topic","kind":"symbol","abstract":[{"type":"text","text":"A universally unique identifier, as defined by Bluetooth standards."}],"url":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMUUID","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMError","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns during Bluetooth transactions."}],"url":"\/documentation\/corebluetoothmock\/cbmerror","navigatorTitle":[{"text":"CBMError","kind":"identifier"}],"title":"CBMError"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMATTError":{"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMATTError"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMATTError","kind":"symbol","abstract":[{"type":"text","text":"An error that Core Bluetooth returns while using Attribute Protocol (ATT)."}],"url":"\/documentation\/corebluetoothmock\/cbmatterror","navigatorTitle":[{"text":"CBMATTError","kind":"identifier"}],"title":"CBMATTError"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/known-issues.json b/docs/data/documentation/corebluetoothmock/known-issues.json index d05c92d..e572cd9 100644 --- a/docs/data/documentation/corebluetoothmock/known-issues.json +++ b/docs/data/documentation/corebluetoothmock/known-issues.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"content","content":[{"anchor":"Overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"By design, the library should behave exatly the same as the native implementation and no"},{"type":"text","text":" "},{"type":"text","text":"code changes above those mentioned in "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide"},{"type":"text","text":" should be necessary."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"However, to make mocking possible, some tradeoffs were made."}]},{"anchor":"Differences-vs-native-API","level":3,"type":"heading","text":"Differences vs native API"},{"type":"orderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"As "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" is a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"protocol"}]},{"type":"text","text":", the KVO features are not available."},{"type":"text","text":" "},{"type":"text","text":"See "},{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/10"},{"type":"text","text":"."}]}]}]},{"anchor":"Not-implemented","level":3,"type":"heading","text":"Not implemented"},{"type":"orderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"As of now, the "},{"type":"codeVoice","code":"CBPeripheralManager"},{"type":"text","text":" is not supported."},{"type":"text","text":" "},{"type":"text","text":"See "},{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/40"},{"type":"text","text":"."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Bluetooth authorization popups are not implemented."},{"type":"text","text":" "},{"type":"text","text":"See "},{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/64"},{"type":"text","text":"."}]}]}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/known-issues"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Known-issues","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Known issues when using "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"type":"text","text":" framework instead of native "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":"."}],"kind":"article","metadata":{"roleHeading":"Article","title":"Known issues","role":"article","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Migration-guide":{"role":"article","title":"Migration guide","abstract":[{"type":"text","text":"Migration guide from "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" to "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothFramework"}]},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide","kind":"article","type":"topic","url":"\/documentation\/corebluetoothmock\/migration-guide"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/issues/10":{"title":"#10","titleInlineContent":[{"type":"text","text":"#10"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/10","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/10"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/issues/40":{"title":"#40","titleInlineContent":[{"type":"text","text":"#40"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/40","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/40"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/issues/64":{"title":"#64","titleInlineContent":[{"type":"text","text":"#64"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/64","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/64"}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/known-issues"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"CoreBluetoothMock"}],"role":"article","title":"Known issues","roleHeading":"Article"},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Known-issues","interfaceLanguage":"swift"},"kind":"article","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"primaryContentSections":[{"kind":"content","content":[{"anchor":"Overview","type":"heading","level":2,"text":"Overview"},{"type":"paragraph","inlineContent":[{"text":"By design, the library should behave exatly the same as the native implementation and no","type":"text"},{"type":"text","text":" "},{"type":"text","text":"code changes above those mentioned in "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide","type":"reference"},{"type":"text","text":" should be necessary."}]},{"inlineContent":[{"type":"text","text":"However, to make mocking possible, some tradeoffs were made."}],"type":"paragraph"},{"level":3,"text":"Differences vs native API","anchor":"Differences-vs-native-API","type":"heading"},{"type":"orderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"As "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","isActive":true},{"type":"text","text":" is a "},{"inlineContent":[{"text":"protocol","type":"text"}],"type":"emphasis"},{"text":", the KVO features are not available.","type":"text"},{"type":"text","text":" "},{"text":"See ","type":"text"},{"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/10","isActive":true,"type":"reference"},{"text":".","type":"text"}]}]}]},{"type":"heading","level":3,"text":"Not implemented","anchor":"Not-implemented"},{"type":"orderedList","items":[{"content":[{"inlineContent":[{"text":"As of now, the ","type":"text"},{"type":"codeVoice","code":"CBPeripheralManager"},{"type":"text","text":" is not supported."},{"text":" ","type":"text"},{"type":"text","text":"See "},{"isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/40","type":"reference"},{"text":".","type":"text"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"text":"Bluetooth authorization popups are not implemented.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"See "},{"isActive":true,"type":"reference","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/64"},{"text":".","type":"text"}],"type":"paragraph"}]}]}]}],"abstract":[{"text":"Known issues when using ","type":"text"},{"inlineContent":[{"type":"text","text":"CoreBluetoothMock"}],"type":"strong"},{"text":" framework instead of native ","type":"text"},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/issues/64":{"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/64","titleInlineContent":[{"text":"#64","type":"text"}],"type":"link","title":"#64","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/64"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/Migration-guide":{"url":"\/documentation\/corebluetoothmock\/migration-guide","role":"article","title":"Migration guide","type":"topic","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide","kind":"article","abstract":[{"text":"Migration guide from ","type":"text"},{"inlineContent":[{"type":"text","text":"CoreBluetooth"}],"type":"strong"},{"text":" to ","type":"text"},{"inlineContent":[{"type":"text","text":"CoreBluetoothFramework"}],"type":"strong"},{"text":".","type":"text"}]},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/issues/40":{"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/40","titleInlineContent":[{"text":"#40","type":"text"}],"type":"link","title":"#40","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/40"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/issues/10":{"type":"link","title":"#10","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/10","titleInlineContent":[{"text":"#10","type":"text"}],"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/issues\/10"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/migration-guide.json b/docs/data/documentation/corebluetoothmock/migration-guide.json index 1432ff9..76ebfc7 100644 --- a/docs/data/documentation/corebluetoothmock/migration-guide.json +++ b/docs/data/documentation/corebluetoothmock/migration-guide.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"content","content":[{"anchor":"Overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The API of the library was designed to similar to the native one to make migration"},{"type":"text","text":" "},{"type":"text","text":"from "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" to "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"type":"text","text":" easy. Only few changes are required."},{"type":"text","text":" "},{"type":"text","text":"Those include initialization of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" and fixing possible issue with comparing"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" objects."}]},{"anchor":"Adding-dependency","level":3,"type":"heading","text":"Adding dependency"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Add dependency to "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"type":"text","text":" framework using one of the following:"}]},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#swift-package-manager"},{"type":"text","text":","}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#cocoapods"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#carthage"},{"type":"text","text":"."}]}]}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"With this step complete, the migration can be done in one of 2 ways:"}]},{"anchor":"Using-aliases-recommended","level":4,"type":"heading","text":"Using aliases (recommended)"},{"type":"orderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Copy "},{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/blob\/main\/Example\/nRFBlinky\/CoreBluetoothTypeAliases.swift"},{"type":"text","text":" "},{"type":"text","text":"file from the "},{"type":"emphasis","inlineContent":[{"type":"text","text":"Example app"}]},{"type":"text","text":" to your project."},{"type":"text","text":" "},{"type":"text","text":"This file contains number of type aliases for all "},{"type":"codeVoice","code":"CBM..."},{"type":"text","text":" types and renames them to "},{"type":"codeVoice","code":"CB..."},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"therfore removing the not need to perform any changes in your code."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optionally, remove:"}]},{"type":"codeListing","syntax":"swift","code":["import CoreBluetooth"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"in all your files, as the types are now defined locally in the project. This step is not required,"},{"type":"text","text":" "},{"type":"text","text":"as locally defined types take precedense over frameworks."}]}]}]},{"anchor":"Direct","level":4,"type":"heading","text":"Direct"},{"type":"orderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"In all files using "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" replace"}]},{"type":"codeListing","syntax":"swift","code":["import CoreBluetooth"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"with"}]},{"type":"codeListing","syntax":"swift","code":["import CoreBluetoothMock"]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Replace all instances of "},{"type":"codeVoice","code":"CB..."},{"type":"text","text":" with "},{"type":"codeVoice","code":"CBM..."},{"type":"text","text":"."}]}]}]},{"anchor":"Fixing-compilation-issues","level":3,"type":"heading","text":"Fixing compilation issues"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Whichever approach you have chosen, the project now contain compilation errors."}]},{"type":"orderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"To create an instance of a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" use"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)"},{"type":"text","text":" instead of creating"},{"type":"text","text":" "},{"type":"text","text":"the manager using an initializer. The last parameter, "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":", when set to "},{"type":"codeVoice","code":"true"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"allows to run the mock implementation also on a physical device."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Before:"}]},{"type":"codeListing","syntax":"swift","code":["let centralManager = CBCentralManager(delegate: self, queue: .main)"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"After:"}]},{"type":"codeListing","syntax":"swift","code":["let centralManager = CBCentralManagerFactory.instance(delegate: self, "," queue: .main,"," forceMock: false)"]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If you’re comparing "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" instances using == operator, replace it with"},{"type":"text","text":" "},{"type":"text","text":"comparing their identifiers."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Before:"}]},{"type":"codeListing","syntax":"swift","code":["peripheral == otherPeripheral "]},{"type":"paragraph","inlineContent":[{"type":"text","text":"After:"}]},{"type":"codeListing","syntax":"swift","code":["peripheral.identifier == otherPeripheral.identifier "]}]}]},{"anchor":"Migration-Example","level":2,"type":"heading","text":"Migration Example"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Check out "},{"type":"reference","isActive":true,"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock-Example"},{"type":"text","text":" application for step-by-step guide."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/migration-guide"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Migration guide from "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" to "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothFramework"}]},{"type":"text","text":"."}],"kind":"article","metadata":{"roleHeading":"Article","title":"Migration guide","role":"article","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"role":"symbol","title":"CBMPeripheral","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheral"}],"abstract":[{"type":"text","text":"A remote peripheral device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheral"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock-Example":{"title":"Migration example","titleInlineContent":[{"type":"text","text":"Migration example"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock-Example","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock-Example"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock#carthage":{"title":"Carthage","titleInlineContent":[{"type":"text","text":"Carthage"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#carthage","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#carthage"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock#cocoapods":{"title":"CocoaPods","titleInlineContent":[{"type":"text","text":"CocoaPods"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#cocoapods","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#cocoapods"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:forceMock:)":{"role":"symbol","title":"instance(delegate:queue:forceMock:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"instance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCentralManagerDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"queue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DispatchQueue","preciseIdentifier":"c:objc(cs)OS_dispatch_queue"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"forceMock"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"}],"abstract":[{"type":"text","text":"Returns the implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":", depending on the environment."},{"type":"text","text":" "},{"type":"text","text":"On a simulator, or when the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"type":"text","text":"implementation is returned, otherwise the native one."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/blob/main/Example/nRFBlinky/CoreBluetoothTypeAliases.swift":{"title":"CoreBluetoothTypeAliases.swift","titleInlineContent":[{"type":"codeVoice","code":"CoreBluetoothTypeAliases.swift"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/blob\/main\/Example\/nRFBlinky\/CoreBluetoothTypeAliases.swift","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/blob\/main\/Example\/nRFBlinky\/CoreBluetoothTypeAliases.swift"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock#swift-package-manager":{"title":"Swift Package Manager","titleInlineContent":[{"type":"text","text":"Swift Package Manager"}],"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#swift-package-manager","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#swift-package-manager"}}} \ No newline at end of file +{"metadata":{"role":"article","title":"Migration guide","modules":[{"name":"CoreBluetoothMock"}],"roleHeading":"Article"},"kind":"article","hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Migration-guide","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/corebluetoothmock\/migration-guide"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"content":[{"type":"heading","text":"Overview","anchor":"Overview","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"The API of the library was designed to similar to the native one to make migration"},{"text":" ","type":"text"},{"text":"from ","type":"text"},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"text":" to ","type":"text"},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"type":"text","text":" easy. Only few changes are required."},{"text":" ","type":"text"},{"text":"Those include initialization of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"text":" and fixing possible issue with comparing","type":"text"},{"text":" ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"text":" objects.","type":"text"}]},{"anchor":"Adding-dependency","type":"heading","text":"Adding dependency","level":3},{"inlineContent":[{"type":"text","text":"Add dependency to "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"text":" framework using one of the following:","type":"text"}],"type":"paragraph"},{"type":"unorderedList","items":[{"content":[{"inlineContent":[{"isActive":true,"type":"reference","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#swift-package-manager"},{"text":",","type":"text"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#cocoapods","isActive":true,"type":"reference"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"isActive":true,"type":"reference","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#carthage"},{"text":".","type":"text"}]}]}]},{"inlineContent":[{"text":"With this step complete, the migration can be done in one of 2 ways:","type":"text"}],"type":"paragraph"},{"text":"Using aliases (recommended)","type":"heading","anchor":"Using-aliases-recommended","level":4},{"type":"orderedList","items":[{"content":[{"inlineContent":[{"text":"Copy ","type":"text"},{"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/blob\/main\/Example\/nRFBlinky\/CoreBluetoothTypeAliases.swift","type":"reference","isActive":true},{"text":" ","type":"text"},{"type":"text","text":"file from the "},{"type":"emphasis","inlineContent":[{"type":"text","text":"Example app"}]},{"text":" to your project.","type":"text"},{"text":" ","type":"text"},{"text":"This file contains number of type aliases for all ","type":"text"},{"type":"codeVoice","code":"CBM..."},{"type":"text","text":" types and renames them to "},{"code":"CB...","type":"codeVoice"},{"text":",","type":"text"},{"text":" ","type":"text"},{"text":"therfore removing the not need to perform any changes in your code.","type":"text"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Optionally, remove:"}]},{"code":["import CoreBluetooth"],"syntax":"swift","type":"codeListing"},{"inlineContent":[{"type":"text","text":"in all your files, as the types are now defined locally in the project. This step is not required,"},{"text":" ","type":"text"},{"type":"text","text":"as locally defined types take precedense over frameworks."}],"type":"paragraph"}]}]},{"text":"Direct","level":4,"type":"heading","anchor":"Direct"},{"items":[{"content":[{"inlineContent":[{"text":"In all files using ","type":"text"},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" replace"}],"type":"paragraph"},{"type":"codeListing","syntax":"swift","code":["import CoreBluetooth"]},{"type":"paragraph","inlineContent":[{"text":"with","type":"text"}]},{"syntax":"swift","code":["import CoreBluetoothMock"],"type":"codeListing"}]},{"content":[{"inlineContent":[{"text":"Replace all instances of ","type":"text"},{"code":"CB...","type":"codeVoice"},{"type":"text","text":" with "},{"code":"CBM...","type":"codeVoice"},{"text":".","type":"text"}],"type":"paragraph"}]}],"type":"orderedList"},{"level":3,"text":"Fixing compilation issues","anchor":"Fixing-compilation-issues","type":"heading"},{"type":"paragraph","inlineContent":[{"text":"Whichever approach you have chosen, the project now contain compilation errors.","type":"text"}]},{"type":"orderedList","items":[{"content":[{"inlineContent":[{"text":"To create an instance of a ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","type":"reference"},{"type":"text","text":" use"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)"},{"text":" instead of creating","type":"text"},{"type":"text","text":" "},{"type":"text","text":"the manager using an initializer. The last parameter, "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":", when set to "},{"type":"codeVoice","code":"true"},{"text":",","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"allows to run the mock implementation also on a physical device."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Before:"}]},{"syntax":"swift","type":"codeListing","code":["let centralManager = CBCentralManager(delegate: self, queue: .main)"]},{"type":"paragraph","inlineContent":[{"text":"After:","type":"text"}]},{"type":"codeListing","syntax":"swift","code":["let centralManager = CBCentralManagerFactory.instance(delegate: self, "," queue: .main,"," forceMock: false)"]}]},{"content":[{"inlineContent":[{"text":"If you’re comparing ","type":"text"},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral"},{"type":"text","text":" instances using == operator, replace it with"},{"type":"text","text":" "},{"type":"text","text":"comparing their identifiers."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"text":"Before:","type":"text"}]},{"syntax":"swift","type":"codeListing","code":["peripheral == otherPeripheral "]},{"inlineContent":[{"text":"After:","type":"text"}],"type":"paragraph"},{"syntax":"swift","code":["peripheral.identifier == otherPeripheral.identifier "],"type":"codeListing"}]}]},{"type":"heading","anchor":"Migration-Example","level":2,"text":"Migration Example"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Check out "},{"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock-Example","isActive":true,"type":"reference"},{"type":"text","text":" application for step-by-step guide."}]}],"kind":"content"}],"sections":[],"abstract":[{"text":"Migration guide from ","type":"text"},{"inlineContent":[{"type":"text","text":"CoreBluetooth"}],"type":"strong"},{"text":" to ","type":"text"},{"inlineContent":[{"type":"text","text":"CoreBluetoothFramework"}],"type":"strong"},{"type":"text","text":"."}],"references":{"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock#cocoapods":{"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#cocoapods","titleInlineContent":[{"type":"text","text":"CocoaPods"}],"url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#cocoapods","title":"CocoaPods"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock/blob/main/Example/nRFBlinky/CoreBluetoothTypeAliases.swift":{"titleInlineContent":[{"type":"codeVoice","code":"CoreBluetoothTypeAliases.swift"}],"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/blob\/main\/Example\/nRFBlinky\/CoreBluetoothTypeAliases.swift","title":"CoreBluetoothTypeAliases.swift","type":"link","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock\/blob\/main\/Example\/nRFBlinky\/CoreBluetoothTypeAliases.swift"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheral":{"fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMPeripheral"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheral","abstract":[{"text":"A remote peripheral device.","type":"text"}],"role":"symbol","title":"CBMPeripheral","navigatorTitle":[{"text":"CBMPeripheral","kind":"identifier"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheral","type":"topic"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock#carthage":{"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#carthage","titleInlineContent":[{"type":"text","text":"Carthage"}],"url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#carthage","title":"Carthage"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory/instance(delegate:queue:forceMock:)":{"title":"instance(delegate:queue:forceMock:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory\/instance(delegate:queue:forceMock:)","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"instance"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"text":"CBMCentralManagerDelegate","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock25CBMCentralManagerDelegateP"},{"text":"?, ","kind":"text"},{"text":"queue","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)OS_dispatch_queue","kind":"typeIdentifier","text":"DispatchQueue"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"forceMock"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"}],"abstract":[{"text":"Returns the implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"text":", depending on the environment.","type":"text"},{"text":" ","type":"text"},{"text":"On a simulator, or when the ","type":"text"},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" flag is enabled, the mock"},{"type":"text","text":" "},{"text":"implementation is returned, otherwise the native one.","type":"text"}],"kind":"symbol","role":"symbol"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock-Example":{"titleInlineContent":[{"type":"text","text":"Migration example"}],"identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock-Example","title":"Migration example","type":"link","url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock-Example"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"https://github.com/NordicSemiconductor/IOS-CoreBluetooth-Mock#swift-package-manager":{"type":"link","identifier":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#swift-package-manager","titleInlineContent":[{"type":"text","text":"Swift Package Manager"}],"url":"https:\/\/github.com\/NordicSemiconductor\/IOS-CoreBluetooth-Mock#swift-package-manager","title":"Swift Package Manager"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/mocking-peripherals.json b/docs/data/documentation/corebluetoothmock/mocking-peripherals.json index 6403721..aae5ff4 100644 --- a/docs/data/documentation/corebluetoothmock/mocking-peripherals.json +++ b/docs/data/documentation/corebluetoothmock/mocking-peripherals.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"content","content":[{"anchor":"Overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory"},{"type":"text","text":" provides two implementatons of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":":"}]},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock"}]}]}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The native implementation proxies all requests to the "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" framework."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"When the code runs on a simulator (or the "},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" parameter was set) a mock manager"},{"type":"text","text":" "},{"type":"text","text":"is created. Instead of physical devices, this manager interacts with mock implementations,"},{"type":"text","text":" "},{"type":"text","text":"defined as "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":". Such peripheral specification should emulate the actual"},{"type":"text","text":" "},{"type":"text","text":"behavior of a real device as close as possible."}]},{"anchor":"Defining-a-Mock-Peripheral","level":3,"type":"heading","text":"Defining a Mock Peripheral"},{"type":"paragraph","inlineContent":[{"type":"text","text":"To create a mock peripheral use"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)"},{"type":"text","text":". This method returns a"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"type":"text","text":" instance which can set up advertisements and connection behavior."},{"type":"text","text":" "},{"type":"text","text":"Any number of such specifications can be defined."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Sample code:"}]},{"type":"codeListing","syntax":"swift","code":["let blinky = CBMPeripheralSpec"," .simulatePeripheral(proximity: .near)"," .advertising("," advertisementData: ["," CBMAdvertisementDataLocalNameKey : \"nRF Blinky\","," CBMAdvertisementDataServiceUUIDsKey : [CBMUUID.nordicBlinkyService],"," CBMAdvertisementDataIsConnectable : true as NSNumber"," ],"," withInterval: 0.250)"," .connectable("," name: \"nRF Blinky\","," services: [.blinkyService],"," delegate: BlinkyCBMPeripheralSpecDelegate(),"," connectionInterval: 0.045,"," mtu: 23)"," .build()"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Such mock peripherals must be added to the simulation using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)"},{"type":"text","text":"."}]},{"type":"codeListing","syntax":"swift","code":["CBMCentralManagerMock.simulatePeripherals([blinky])"]},{"type":"paragraph","inlineContent":[{"type":"text","text":"From that moment simulated advertising starts and the device can be scanned or retrieved"},{"type":"text","text":" "},{"type":"text","text":"just like physical devices."}]},{"anchor":"Advertising","level":3,"type":"heading","text":"Advertising"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A mock peripheral may advertise with:"}]},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"static data with a fixed advertising interval,"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"emphasis","inlineContent":[{"type":"text","text":"one-time"}]},{"type":"text","text":" advertisements ("},{"type":"codeVoice","code":"interval"},{"type":"text","text":" set to 0),"}]}]}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Both types of advertisements can be delayed using the "},{"type":"codeVoice","code":"delay"},{"type":"text","text":" parameter."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The initial advertising configuration is set up using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"which can be called multiple times, if required."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The advertisement data can be changed during the simulation using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)"},{"type":"text","text":"."}]},{"anchor":"Connection","level":3,"type":"heading","text":"Connection"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)"},{"type":"text","text":" or"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)"},{"type":"text","text":" "},{"type":"text","text":"methods allows to specify a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"},{"type":"text","text":". This object defines the behavior of the"},{"type":"text","text":" "},{"type":"text","text":"mock peripheral, how will it respond to Bluetooth LE requests, a hard reset, etc. The implementation"},{"type":"text","text":" "},{"type":"text","text":"should mimic the behavoir of the real device as much as possible to make the tests reliable."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"To test how the app handles connection interruptions, the mock connection can be terminated using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"},{"type":"text","text":", "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)"},{"type":"text","text":" or"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)"},{"type":"text","text":" with parameter "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/mocking-peripherals"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Mocking-peripherals","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"How to create mock peripherals to be used in tests."}],"kind":"article","metadata":{"roleHeading":"Article","title":"Mocking Bluetooth LE Devices","role":"article","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connectable(name:services:delegate:connectionInterval:mtu:)":{"role":"symbol","title":"connectable(name:services:delegate:connectionInterval:mtu:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device connectable, but not connected at the moment"},{"type":"text","text":" "},{"type":"text","text":"of initialization."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"role":"symbol","title":"simulateDisconnection(withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"role":"symbol","title":"CBMCentralManagerMock","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerMock"}],"abstract":[{"type":"text","text":"Mock implementation of the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"role":"symbol","title":"CBMPeripheralSpec","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpec"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"role":"symbol","title":"simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"proximity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Creates a "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"type":"text","text":" instance, which can be used to define"},{"type":"text","text":" "},{"type":"text","text":"the behavior or a mocked peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"role":"symbol","title":"CBMCentralManagerFactory","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"abstract":[{"type":"text","text":"The factory that instantiates the "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/outOfRange":{"role":"symbol","title":"CBMProximity.outOfRange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"outOfRange"}],"abstract":[{"type":"text","text":"The device is out of range."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)":{"role":"symbol","title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"kind":"text","text":"("},{"kind":"externalParam","text":"advertisementData"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"withInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"type":"text","text":" "},{"type":"text","text":"interval."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connected(name:services:delegate:connectionInterval:mtu:)":{"role":"symbol","title":"connected(name:services:delegate:connectionInterval:mtu:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"connected"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMServiceMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate","preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"connectionInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"abstract":[{"type":"text","text":"Makes the device connectable, and also marks already connected"},{"type":"text","text":" "},{"type":"text","text":"by some other application. Such device, if not advertising,"},{"type":"text","text":" "},{"type":"text","text":"can be obtained using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"role":"symbol","title":"CBMCentralManagerNative","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerNative"}],"abstract":[{"type":"text","text":"An implementation of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"type":"codeVoice","code":"CBCentralManager"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"role":"symbol","title":"simulateReset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"role":"symbol","title":"CBMPeripheralSpec.Builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"abstract":[{"type":"text","text":"Defines the behavior of "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"role":"symbol","title":"simulatePeripherals(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripherals"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"role":"symbol","title":"CBMPeripheralSpecDelegate","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"abstract":[{"type":"text","text":"This delegate should implement the behavior of a real Bluetooth LE device duting a connection."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"variants":[{"paths":["\/documentation\/corebluetoothmock\/mocking-peripherals"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"content","content":[{"text":"Overview","level":2,"type":"heading","anchor":"Overview"},{"type":"paragraph","inlineContent":[{"text":"The ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","type":"reference","isActive":true},{"type":"text","text":" provides two implementatons of "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":":"}]},{"type":"unorderedList","items":[{"content":[{"inlineContent":[{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","type":"reference"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","type":"reference","isActive":true}],"type":"paragraph"}]}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The native implementation proxies all requests to the "},{"type":"strong","inlineContent":[{"text":"CoreBluetooth","type":"text"}]},{"type":"text","text":" framework."}]},{"inlineContent":[{"text":"When the code runs on a simulator (or the ","type":"text"},{"type":"codeVoice","code":"forceMock"},{"type":"text","text":" parameter was set) a mock manager"},{"text":" ","type":"text"},{"text":"is created. Instead of physical devices, this manager interacts with mock implementations,","type":"text"},{"type":"text","text":" "},{"text":"defined as ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","isActive":true,"type":"reference"},{"type":"text","text":". Such peripheral specification should emulate the actual"},{"type":"text","text":" "},{"type":"text","text":"behavior of a real device as close as possible."}],"type":"paragraph"},{"type":"heading","text":"Defining a Mock Peripheral","anchor":"Defining-a-Mock-Peripheral","level":3},{"type":"paragraph","inlineContent":[{"type":"text","text":"To create a mock peripheral use"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","type":"reference","isActive":true},{"text":". This method returns a","type":"text"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"reference","isActive":true},{"text":" instance which can set up advertisements and connection behavior.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"Any number of such specifications can be defined."}]},{"inlineContent":[{"text":"Sample code:","type":"text"}],"type":"paragraph"},{"syntax":"swift","code":["let blinky = CBMPeripheralSpec"," .simulatePeripheral(proximity: .near)"," .advertising("," advertisementData: ["," CBMAdvertisementDataLocalNameKey : \"nRF Blinky\","," CBMAdvertisementDataServiceUUIDsKey : [CBMUUID.nordicBlinkyService],"," CBMAdvertisementDataIsConnectable : true as NSNumber"," ],"," withInterval: 0.250)"," .connectable("," name: \"nRF Blinky\","," services: [.blinkyService],"," delegate: BlinkyCBMPeripheralSpecDelegate(),"," connectionInterval: 0.045,"," mtu: 23)"," .build()"],"type":"codeListing"},{"type":"paragraph","inlineContent":[{"text":"Such mock peripherals must be added to the simulation using","type":"text"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","isActive":true},{"type":"text","text":"."}]},{"type":"codeListing","syntax":"swift","code":["CBMCentralManagerMock.simulatePeripherals([blinky])"]},{"inlineContent":[{"type":"text","text":"From that moment simulated advertising starts and the device can be scanned or retrieved"},{"type":"text","text":" "},{"type":"text","text":"just like physical devices."}],"type":"paragraph"},{"text":"Advertising","anchor":"Advertising","type":"heading","level":3},{"type":"paragraph","inlineContent":[{"type":"text","text":"A mock peripheral may advertise with:"}]},{"items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"static data with a fixed advertising interval,"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"emphasis","inlineContent":[{"text":"one-time","type":"text"}]},{"text":" advertisements (","type":"text"},{"code":"interval","type":"codeVoice"},{"text":" set to 0),","type":"text"}]}]}],"type":"unorderedList"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Both types of advertisements can be delayed using the "},{"type":"codeVoice","code":"delay"},{"text":" parameter.","type":"text"}]},{"type":"paragraph","inlineContent":[{"text":"The initial advertising configuration is set up using","type":"text"},{"type":"text","text":" "},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","type":"reference"},{"text":",","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"which can be called multiple times, if required."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"The advertisement data can be changed during the simulation using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)"},{"type":"text","text":"."}]},{"level":3,"type":"heading","anchor":"Connection","text":"Connection"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)"},{"type":"text","text":" or"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)","isActive":true,"type":"reference"},{"type":"text","text":" "},{"type":"text","text":"methods allows to specify a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate"},{"type":"text","text":". This object defines the behavior of the"},{"text":" ","type":"text"},{"text":"mock peripheral, how will it respond to Bluetooth LE requests, a hard reset, etc. The implementation","type":"text"},{"text":" ","type":"text"},{"text":"should mimic the behavoir of the real device as much as possible to make the tests reliable.","type":"text"}]},{"type":"paragraph","inlineContent":[{"text":"To test how the app handles connection interruptions, the mock connection can be terminated using","type":"text"},{"text":" ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","isActive":true},{"type":"text","text":", "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)"},{"text":" or","type":"text"},{"text":" ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","isActive":true,"type":"reference"},{"text":" with parameter ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange","isActive":true,"type":"reference"},{"text":".","type":"text"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Mocking-peripherals"},"abstract":[{"type":"text","text":"How to create mock peripherals to be used in tests."}],"sections":[],"kind":"article","metadata":{"role":"article","modules":[{"name":"CoreBluetoothMock"}],"title":"Mocking Bluetooth LE Devices","roleHeading":"Article"},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerFactory":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerFactory","kind":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerFactory"}],"type":"topic","title":"CBMCentralManagerFactory","abstract":[{"type":"text","text":"The factory that instantiates the "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true,"type":"reference"},{"text":" object.","type":"text"}],"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerFactory"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMProximity/outOfRange":{"kind":"symbol","url":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange","abstract":[{"text":"The device is out of range.","type":"text"}],"role":"symbol","title":"CBMProximity.outOfRange","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"outOfRange","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMProximity\/outOfRange"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulatePeripheral(identifier:proximity:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulatePeripheral(identifier:proximity:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePeripheral"},{"kind":"text","text":"("},{"text":"identifier","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4UUIDV","kind":"typeIdentifier","text":"UUID"},{"kind":"text","text":", "},{"text":"proximity","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO","text":"CBMProximity","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC"}],"kind":"symbol","role":"symbol","title":"simulatePeripheral(identifier:proximity:)","abstract":[{"type":"text","text":"Creates a "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder"},{"text":" instance, which can be used to define","type":"text"},{"text":" ","type":"text"},{"text":"the behavior or a mocked peripheral.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advertising"},{"text":"(","kind":"text"},{"text":"advertisementData","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":"], ","kind":"text"},{"text":"withInterval","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"delay"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alsoWhenConnected"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder"}],"kind":"symbol","role":"symbol","title":"advertising(advertisementData:withInterval:delay:alsoWhenConnected:)","abstract":[{"type":"text","text":"Makes the device advertising given data with specified advertising"},{"text":" ","type":"text"},{"text":"interval.","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateDisconnection","kind":"identifier"},{"kind":"text","text":"("},{"text":"withError","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"simulateDisconnection(withError:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Builder"}],"kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Builder"}],"title":"CBMPeripheralSpec.Builder","abstract":[{"text":"Defines the behavior of ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec"},{"type":"text","text":" object."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"simulateReset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connected(name:services:delegate:connectionInterval:mtu:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connected(name:services:delegate:connectionInterval:mtu:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"connected","kind":"identifier"},{"kind":"text","text":"("},{"text":"name","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":", "},{"text":"services","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","kind":"typeIdentifier","text":"CBMServiceMock"},{"text":"], ","kind":"text"},{"text":"delegate","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","kind":"typeIdentifier","text":"CBMPeripheralSpecDelegate"},{"text":"?, ","kind":"text"},{"text":"connectionInterval","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"mtu"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","text":"CBMPeripheralSpec","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Builder","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"connected(name:services:delegate:connectionInterval:mtu:)","abstract":[{"text":"Makes the device connectable, and also marks already connected","type":"text"},{"text":" ","type":"text"},{"text":"by some other application. Such device, if not advertising,","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"can be obtained using "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"text":".","type":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec":{"type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpec"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec","abstract":[{"type":"text","text":"Specification of a mock peripheral."}],"title":"CBMPeripheralSpec","navigatorTitle":[{"text":"CBMPeripheralSpec","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)","kind":"symbol","title":"simulatePeripherals(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","role":"symbol","type":"topic","abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulatePeripherals","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":"])","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerNative":{"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerNative"}],"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"CBMCentralManagerNative"}],"type":"topic","kind":"symbol","abstract":[{"text":"An implementation of ","type":"text"},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" that will proxy all the requests and responses"},{"type":"text","text":" "},{"type":"text","text":"to the native "},{"code":"CBCentralManager","type":"codeVoice"},{"type":"text","text":" object."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerNative","role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock":{"abstract":[{"type":"text","text":"Mock implementation of the "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":"."}],"navigatorTitle":[{"kind":"identifier","text":"CBMCentralManagerMock"}],"role":"symbol","title":"CBMCentralManagerMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"text":"CBMCentralManagerMock","kind":"identifier"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpecDelegate":{"type":"topic","fragments":[{"text":"protocol","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMPeripheralSpecDelegate"}],"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpecDelegate","abstract":[{"text":"This delegate should implement the behavior of a real Bluetooth LE device during a connection.","type":"text"}],"title":"CBMPeripheralSpecDelegate","navigatorTitle":[{"text":"CBMPeripheralSpecDelegate","kind":"identifier"}],"role":"symbol","url":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"kind":"symbol","role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","abstract":[{"text":"Returns a list of the peripherals connected to the system whose","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"services match a given set of criteria."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/Builder/connectable(name:services:delegate:connectionInterval:mtu:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/Builder\/connectable(name:services:delegate:connectionInterval:mtu:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"connectable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"name"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"services"},{"kind":"text","text":": ["},{"preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMServiceMock","text":"CBMServiceMock","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"preciseIdentifier":"s:17CoreBluetoothMock25CBMPeripheralSpecDelegateP","text":"CBMPeripheralSpecDelegate","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"connectionInterval","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@T@NSTimeInterval","text":"TimeInterval"},{"kind":"text","text":", "},{"text":"mtu","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC7BuilderC","text":"Builder","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"connectable(name:services:delegate:connectionInterval:mtu:)","abstract":[{"text":"Makes the device connectable, but not connected at the moment","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"of initialization."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"}}} \ No newline at end of file diff --git a/docs/data/documentation/corebluetoothmock/simulation.json b/docs/data/documentation/corebluetoothmock/simulation.json index 2d646c6..b06e923 100644 --- a/docs/data/documentation/corebluetoothmock/simulation.json +++ b/docs/data/documentation/corebluetoothmock/simulation.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"content","content":[{"anchor":"Overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetoothMock"}]},{"type":"text","text":" framework allows to simulate various events that can happen in"},{"type":"text","text":" "},{"type":"text","text":"real life scenario. Those include turning OFF Bluetooth, resetting the device, sending"},{"type":"text","text":" "},{"type":"text","text":"notifications, moving devices out of range, etc."}]},{"anchor":"","level":3,"type":"heading","text":""},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()"},{"type":"text","text":" - simulates a situation when another app on the iDevice"},{"type":"text","text":" "},{"type":"text","text":"connected to this peripheral. The device will stop advertising (unless "},{"type":"codeVoice","code":"advertisingWhenConnected"},{"type":"text","text":""},{"type":"text","text":" "},{"type":"text","text":"flag was set) and will be available using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)"},{"type":"text","text":" - simulates a connection error."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()"},{"type":"text","text":" - simulates device hard reset. The central will notify"},{"type":"text","text":" "},{"type":"text","text":"delegates 4 seconds (supervision timeout) after the device has been reset."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)"},{"type":"text","text":" - simulates moving the peripheral close or away"},{"type":"text","text":" "},{"type":"text","text":"from the device."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)"},{"type":"text","text":" - simulates sending a notification or indication"},{"type":"text","text":" "},{"type":"text","text":"from the device. All subscribed clients will be notified a connection interval later."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)"},{"type":"text","text":" - simulates change of the advertisemet data"},{"type":"text","text":" "},{"type":"text","text":"of the peripheral. The peripheral will stop advertising with previous data and start with the new set."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()"},{"type":"text","text":" - simulates caching the device by the iDevice."},{"type":"text","text":" "},{"type":"text","text":"Caching pairs the device’s MAC with a random identifier (UUID). A device is also cached whenever"},{"type":"text","text":" "},{"type":"text","text":"it is scanned. Caching makes the device available to be retrieved using"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)"},{"type":"text","text":" - simulates the device changing its MAC address."},{"type":"text","text":" "},{"type":"text","text":"The iDevice will not contain any cached information about the device, as with the new MAC it is"},{"type":"text","text":" "},{"type":"text","text":"considered to be a new device."}]},{"anchor":"Bluetooth-State-Changes","level":3,"type":"heading","text":"Bluetooth State Changes"},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)"},{"type":"text","text":" - creates a simulation with given list of mock"},{"type":"text","text":" "},{"type":"text","text":"peripheral. This method should be called when the manager is powered off, or before any"},{"type":"text","text":" "},{"type":"text","text":"central manager was initialized."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)"},{"type":"text","text":" - this method should be called before any central"},{"type":"text","text":" "},{"type":"text","text":"manager instance was created. It defines the initial state of the mock central manager."},{"type":"text","text":" "},{"type":"text","text":"By default, the manager is powered off."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()"},{"type":"text","text":" - turns on the mock central manager."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()"},{"type":"text","text":" - turns off the mock central manager."},{"type":"text","text":" "},{"type":"text","text":"All scans and connections will be terminated."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()"},{"type":"text","text":" - sets the state of all currently existing central"},{"type":"text","text":" "},{"type":"text","text":"managers to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown"},{"type":"text","text":" and clears the list of managers and peripherals bringing"},{"type":"text","text":" "},{"type":"text","text":"the mock manager to initial state."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration"},{"type":"text","text":" - this closure will be used when you initiate a"},{"type":"text","text":" "},{"type":"text","text":"central manager with "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey"},{"type":"text","text":" option. The map returned will be"},{"type":"text","text":" "},{"type":"text","text":"passed to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl"},{"type":"text","text":" callback in"},{"type":"text","text":" "},{"type":"text","text":"central manager’s delegate."}]},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"CBMCentralManagerMock\/simulateFeaturesSupport"},{"type":"text","text":" - this closure will be used to emulate Bluetooth"},{"type":"text","text":" "},{"type":"text","text":"features supported by the manager. It is available on iOS 13+, tvOS 13+ or watchOS 6+."}]},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)"},{"type":"text","text":" - simulates the current authorization state"},{"type":"text","text":" "},{"type":"text","text":"of a Core Bluetooth manager. When any value other than "},{"type":"codeVoice","code":".allowedAlways"},{"type":"text","text":" is returned, the"},{"type":"text","text":" "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager"},{"type":"text","text":" will change state to "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/corebluetoothmock\/simulation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Simulation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Set of methods for simulating various Bluetooth LE events."}],"kind":"article","metadata":{"roleHeading":"Article","title":"Simulation","role":"article","modules":[{"name":"CoreBluetoothMock"}]},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"role":"collection","title":"CoreBluetoothMock","abstract":[{"type":"text","text":"Test "},{"type":"strong","inlineContent":[{"type":"text","text":"CoreBluetooth"}]},{"type":"text","text":" features in your app using mocks."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"role":"symbol","title":"CBMCentralManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManager"}],"abstract":[{"type":"text","text":"An object that scans for, discovers, connects to, and manages peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CBMCentralManager"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanager"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOff()":{"role":"symbol","title":"simulatePowerOff()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOff"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulate turning the Bluetooth adapter off."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateCaching"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"type":"text","text":"using "},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"type":"text","text":"."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"role":"symbol","title":"CBMManagerState.unknown","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unknown"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateInitialState(_:)":{"role":"symbol","title":"simulateInitialState(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateInitialState"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMManagerState","preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Sets the initial state of the Bluetooth central manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"role":"symbol","title":"simulateDisconnection(withError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateDisconnection"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"role":"symbol","title":"simulateValueUpdate(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateValueUpdate"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CBMCharacteristicMock","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"role":"symbol","title":"simulateReset()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"role":"symbol","title":"retrievePeripherals(withIdentifiers:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withIdentifiers"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","title":"CBMCentralManagerOptionRestoreIdentifierKey","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A string containing a unique identifier (UID) for the central manager to instantiate."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"retrieveConnectedPeripherals"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withServices"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"CBMPeripheral","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Returns a list of the peripherals connected to the system whose"},{"type":"text","text":" "},{"type":"text","text":"services match a given set of criteria."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/tearDownSimulation()":{"role":"symbol","title":"tearDownSimulation()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tearDownSimulation"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Removes all active central manager instances and peripherals from the"},{"type":"text","text":" "},{"type":"text","text":"simulation, resetting it to the initial state."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateAuthorization(_:)":{"role":"symbol","title":"simulateAuthorization(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAuthorization"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMManagerAuthorization","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates the current authorization state of a Core Bluetooth manager."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOn()":{"role":"symbol","title":"simulatePowerOn()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePowerOn"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates turning the Bluetooth adapter on."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unauthorized":{"role":"symbol","title":"CBMManagerState.unauthorized","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unauthorized"}],"abstract":[{"type":"text","text":"A state that indicates the application isn’t authorized to use the Bluetooth low energy role."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"role":"symbol","title":"simulateProximityChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateProximityChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateStateRestoration":{"role":"symbol","title":"simulateStateRestoration","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"]?)?"}],"abstract":[{"type":"text","text":"This simulation method is called when a mock central manager was"},{"type":"text","text":" "},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"type":"text","text":"("},{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey"},{"type":"text","text":")."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"role":"symbol","title":"simulateAdvertisementChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateAdvertisementChange"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMAdvertisementConfig","preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV"},{"kind":"text","text":"]?)"}],"abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"role":"symbol","title":"simulatePeripherals(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulatePeripherals"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","title":"simulateConnection()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateConnection"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Simulates the situation when another application on the device"},{"type":"text","text":" "},{"type":"text","text":"connects to the device."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-9qavl":{"defaultImplementations":1,"role":"symbol","title":"centralManager(_:willRestoreState:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"centralManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"willRestoreState"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" : "},{"kind":"keyword","text":"Any"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"type":"text","text":" "},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"type":"text","text":"complete some Bluetooth-related task. Use this method to synchronize your"},{"type":"text","text":" "},{"type":"text","text":"app’s state with the state of the Bluetooth system."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","title":"simulateMacChange(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"simulateMacChange"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Simulates a change of the device’s MAC address."}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","kind":"symbol","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock"]]},"abstract":[{"type":"text","text":"Set of methods for simulating various Bluetooth LE events."}],"primaryContentSections":[{"kind":"content","content":[{"type":"heading","anchor":"Overview","text":"Overview","level":2},{"type":"paragraph","inlineContent":[{"inlineContent":[{"text":"CoreBluetoothMock","type":"text"}],"type":"strong"},{"type":"text","text":" framework allows to simulate various events that can happen in"},{"type":"text","text":" "},{"type":"text","text":"real life scenario. Those include turning OFF Bluetooth, resetting the device, sending"},{"type":"text","text":" "},{"type":"text","text":"notifications, moving devices out of range, etc."}]},{"type":"heading","level":3,"anchor":"","text":""},{"type":"paragraph","inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()"},{"type":"text","text":" - simulates a situation when another app on the iDevice"},{"text":" ","type":"text"},{"type":"text","text":"connected to this peripheral. The device will stop advertising (unless "},{"code":"advertisingWhenConnected","type":"codeVoice"},{"type":"text","text":""},{"text":" ","type":"text"},{"type":"text","text":"flag was set) and will be available using"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","isActive":true},{"type":"text","text":"."}]},{"type":"paragraph","inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","isActive":true,"type":"reference"},{"type":"text","text":" - simulates a connection error."}]},{"type":"paragraph","inlineContent":[{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","type":"reference"},{"text":" - simulates device hard reset. The central will notify","type":"text"},{"type":"text","text":" "},{"type":"text","text":"delegates 4 seconds (supervision timeout) after the device has been reset."}]},{"type":"paragraph","inlineContent":[{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","isActive":true},{"text":" - simulates moving the peripheral close or away","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"from the device."}]},{"type":"paragraph","inlineContent":[{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","isActive":true},{"text":" - simulates sending a notification or indication","type":"text"},{"type":"text","text":" "},{"type":"text","text":"from the device. All subscribed clients will be notified a connection interval later."}]},{"type":"paragraph","inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","isActive":true,"type":"reference"},{"type":"text","text":" - simulates change of the advertisemet data"},{"type":"text","text":" "},{"type":"text","text":"of the peripheral. The peripheral will stop advertising with previous data and start with the new set."}]},{"type":"paragraph","inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","isActive":true,"type":"reference"},{"text":" - simulates caching the device by the iDevice.","type":"text"},{"text":" ","type":"text"},{"text":"Caching pairs the device’s MAC with a random identifier (UUID). A device is also cached whenever","type":"text"},{"type":"text","text":" "},{"type":"text","text":"it is scanned. Caching makes the device available to be retrieved using"},{"text":" ","type":"text"},{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","type":"reference"},{"type":"text","text":"."}]},{"inlineContent":[{"type":"reference","isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)"},{"type":"text","text":" - simulates the device changing its MAC address."},{"type":"text","text":" "},{"text":"The iDevice will not contain any cached information about the device, as with the new MAC it is","type":"text"},{"type":"text","text":" "},{"type":"text","text":"considered to be a new device."}],"type":"paragraph"},{"type":"heading","text":"Bluetooth State Changes","anchor":"Bluetooth-State-Changes","level":3},{"type":"paragraph","inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","type":"reference","isActive":true},{"text":" - creates a simulation with given list of mock","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"peripheral. This method should be called when the manager is powered off, or before any"},{"text":" ","type":"text"},{"text":"central manager was initialized.","type":"text"}]},{"type":"paragraph","inlineContent":[{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)"},{"type":"text","text":" - this method should be called before any central"},{"type":"text","text":" "},{"text":"manager instance was created. It defines the initial state of the mock central manager.","type":"text"},{"text":" ","type":"text"},{"text":"By default, the manager is powered off.","type":"text"}]},{"inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","isActive":true,"type":"reference"},{"text":" - turns on the mock central manager.","type":"text"}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","isActive":true},{"text":" - turns off the mock central manager.","type":"text"},{"text":" ","type":"text"},{"text":"All scans and connections will be terminated.","type":"text"}]},{"type":"paragraph","inlineContent":[{"isActive":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","type":"reference"},{"text":" - sets the state of all currently existing central","type":"text"},{"type":"text","text":" "},{"type":"text","text":"managers to "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","isActive":true,"type":"reference"},{"text":" and clears the list of managers and peripherals bringing","type":"text"},{"type":"text","text":" "},{"type":"text","text":"the mock manager to initial state."}]},{"inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","type":"reference","isActive":true},{"type":"text","text":" - this closure will be used when you initiate a"},{"text":" ","type":"text"},{"text":"central manager with ","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","isActive":true,"type":"reference"},{"type":"text","text":" option. The map returned will be"},{"type":"text","text":" "},{"type":"text","text":"passed to "},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl"},{"text":" callback in","type":"text"},{"type":"text","text":" "},{"type":"text","text":"central manager’s delegate."}],"type":"paragraph"},{"inlineContent":[{"type":"codeVoice","code":"CBMCentralManagerMock\/simulateFeaturesSupport"},{"type":"text","text":" - this closure will be used to emulate Bluetooth"},{"text":" ","type":"text"},{"type":"text","text":"features supported by the manager. It is available on iOS 13+, tvOS 13+ or watchOS 6+."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","type":"reference","isActive":true},{"text":" - simulates the current authorization state","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"of a Core Bluetooth manager. When any value other than "},{"code":".allowedAlways","type":"codeVoice"},{"text":" is returned, the","type":"text"},{"type":"text","text":" "},{"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","isActive":true},{"type":"text","text":" will change state to "},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","type":"reference","isActive":true},{"type":"text","text":"."}]}]}],"kind":"article","sections":[],"identifier":{"url":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/Simulation","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/corebluetoothmock\/simulation"]}],"metadata":{"roleHeading":"Article","role":"article","title":"Simulation","modules":[{"name":"CoreBluetoothMock"}]},"references":{"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrievePeripherals(withIdentifiers:)":{"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"retrievePeripherals(withIdentifiers:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)","abstract":[{"type":"text","text":"Returns a list of known peripherals by their identifiers."}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"retrievePeripherals"},{"kind":"text","text":"("},{"text":"withIdentifiers","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UUID","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":"]) -> [","kind":"text"},{"preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOff()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulatePowerOff"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOff()","type":"topic","title":"simulatePowerOff()","abstract":[{"text":"Simulate turning the Bluetooth adapter off.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateAdvertisementChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateAdvertisementChange","kind":"identifier"},{"kind":"text","text":"(["},{"preciseIdentifier":"s:17CoreBluetoothMock22CBMAdvertisementConfigV","text":"CBMAdvertisementConfig","kind":"typeIdentifier"},{"kind":"text","text":"]?)"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateAdvertisementChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a change in the advertising packet."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"simulateAdvertisementChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePeripherals(_:)":{"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)","kind":"symbol","title":"simulatePeripherals(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePeripherals(_:)","role":"symbol","type":"topic","abstract":[{"type":"text","text":"This method sets a list of simulated peripherals."}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"simulatePeripherals","kind":"identifier"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"CBMPeripheralSpec","preciseIdentifier":"s:17CoreBluetoothMock17CBMPeripheralSpecC"},{"text":"])","kind":"text"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateProximityChange(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateProximityChange"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CBMProximity","preciseIdentifier":"s:17CoreBluetoothMock12CBMProximityO"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateProximityChange(_:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a situation when the peripheral was moved closer"},{"type":"text","text":" "},{"type":"text","text":"or away from the phone."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"simulateProximityChange(_:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateMacChange(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateMacChange","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UUID","preciseIdentifier":"s:10Foundation4UUIDV"},{"text":")","kind":"text"}],"type":"topic","title":"simulateMacChange(_:)","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateMacChange(_:)","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)","abstract":[{"text":"Simulates a change of the device’s MAC address.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateAuthorization(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateAuthorization"},{"kind":"text","text":"("},{"text":"CBMManagerAuthorization","kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock23CBMManagerAuthorizationa"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateAuthorization(_:)","type":"topic","title":"simulateAuthorization(_:)","abstract":[{"type":"text","text":"Simulates the current authorization state of a Core Bluetooth manager."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unauthorized":{"url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized","abstract":[{"type":"text","text":"A state that indicates the application isn’t authorized to use the Bluetooth low energy role."}],"fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"unauthorized"}],"role":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unauthorized","type":"topic","title":"CBMManagerState.unauthorized","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateCaching()":{"role":"symbol","title":"simulateCaching()","kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateCaching()","abstract":[{"type":"text","text":"Simulates a situation when the iDevice scans for Bluetooth LE devices"},{"type":"text","text":" "},{"type":"text","text":"and caches scanned results. Scanned devices become available for retrieval"},{"type":"text","text":" "},{"text":"using ","type":"text"},{"isActive":true,"type":"reference","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrievePeripherals(withIdentifiers:)"},{"text":".","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"simulateCaching","kind":"identifier"},{"kind":"text","text":"()"}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateReset()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateReset"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateReset()","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates a reset of the peripheral."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"simulateReset()"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMManagerState/unknown":{"kind":"symbol","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMManagerState\/unknown","url":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","type":"topic","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"unknown","kind":"identifier"}],"abstract":[{"type":"text","text":"The manager’s state is unknown."}],"role":"symbol","title":"CBMManagerState.unknown"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager":{"type":"topic","kind":"symbol","title":"CBMCentralManager","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"text":"CBMCentralManager","kind":"identifier"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager","abstract":[{"text":"An object that scans for, discovers, connects to, and manages peripherals.","type":"text"}],"navigatorTitle":[{"text":"CBMCentralManager","kind":"identifier"}],"role":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerDelegate/centralManager(_:willRestoreState:)-9qavl":{"type":"topic","abstract":[{"type":"text","text":"For apps that opt-in to state preservation and restoration, this is the"},{"text":" ","type":"text"},{"type":"text","text":"first method invoked when your app is relaunched into the background to"},{"type":"text","text":" "},{"text":"complete some Bluetooth-related task. Use this method to synchronize your","type":"text"},{"type":"text","text":" "},{"text":"app’s state with the state of the Bluetooth system.","type":"text"}],"defaultImplementations":1,"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"centralManager","kind":"identifier"},{"kind":"text","text":"("},{"text":"CBMCentralManager","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCentralManager","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"willRestoreState","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":" : ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":"])"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl","title":"centralManager(_:willRestoreState:)","required":true,"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerDelegate\/centralManager(_:willRestoreState:)-9qavl","role":"symbol","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulatePowerOn()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulatePowerOn","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulatePowerOn()","type":"topic","title":"simulatePowerOn()","abstract":[{"type":"text","text":"Simulates turning the Bluetooth adapter on."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateValueUpdate(_:for:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateValueUpdate"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"CBMCharacteristicMock","kind":"typeIdentifier","preciseIdentifier":"c:@M@CoreBluetoothMock@objc(cs)CBMCharacteristicMock"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateValueUpdate(_:for:)","role":"symbol","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Simulates a notification\/indication sent from the peripheral."}],"url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"simulateValueUpdate(_:for:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerOptionRestoreIdentifierKey":{"role":"symbol","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"CBMCentralManagerOptionRestoreIdentifierKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","type":"topic","title":"CBMCentralManagerOptionRestoreIdentifierKey","abstract":[{"text":"A string containing a unique identifier (UID) for the central manager to instantiate.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateDisconnection(withError:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simulateDisconnection","kind":"identifier"},{"kind":"text","text":"("},{"text":"withError","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateDisconnection(withError:)","role":"symbol","kind":"symbol","abstract":[{"type":"text","text":"Simulates peripheral disconnection from the device."}],"type":"topic","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"simulateDisconnection(withError:)"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMPeripheralSpec/simulateConnection()":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simulateConnection","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","title":"simulateConnection()","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMPeripheralSpec\/simulateConnection()","url":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()","abstract":[{"text":"Simulates the situation when another application on the device","type":"text"},{"text":" ","type":"text"},{"text":"connects to the device.","type":"text"}],"kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock":{"abstract":[{"type":"text","text":"Test "},{"inlineContent":[{"text":"CoreBluetooth","type":"text"}],"type":"strong"},{"type":"text","text":" features in your app using mocks."}],"title":"CoreBluetoothMock","type":"topic","kind":"symbol","role":"collection","identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock","url":"\/documentation\/corebluetoothmock"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManager/retrieveConnectedPeripherals(withServices:)":{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManager\/retrieveConnectedPeripherals(withServices:)","type":"topic","url":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"retrieveConnectedPeripherals","kind":"identifier"},{"kind":"text","text":"("},{"text":"withServices","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"CBMUUID","preciseIdentifier":"s:17CoreBluetoothMock7CBMUUIDa","kind":"typeIdentifier"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:17CoreBluetoothMock13CBMPeripheralP","text":"CBMPeripheral"},{"kind":"text","text":"]"}],"kind":"symbol","role":"symbol","title":"retrieveConnectedPeripherals(withServices:)","abstract":[{"text":"Returns a list of the peripherals connected to the system whose","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"services match a given set of criteria."}]},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateStateRestoration":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateStateRestoration"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" : "},{"text":"Any","kind":"keyword"},{"kind":"text","text":"]?)?"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateStateRestoration","type":"topic","title":"simulateStateRestoration","abstract":[{"text":"This simulation method is called when a mock central manager was","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"created with an option to restore the state"},{"type":"text","text":" "},{"text":"(","type":"text"},{"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerOptionRestoreIdentifierKey","isActive":true,"type":"reference"},{"type":"text","text":")."}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/simulateInitialState(_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"simulateInitialState"},{"kind":"text","text":"("},{"preciseIdentifier":"s:17CoreBluetoothMock15CBMManagerStateO","kind":"typeIdentifier","text":"CBMManagerState"},{"text":")","kind":"text"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/simulateInitialState(_:)","type":"topic","title":"simulateInitialState(_:)","abstract":[{"text":"Sets the initial state of the Bluetooth central manager.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)","kind":"symbol"},"doc://CoreBluetoothMock/documentation/CoreBluetoothMock/CBMCentralManagerMock/tearDownSimulation()":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tearDownSimulation"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/CoreBluetoothMock\/documentation\/CoreBluetoothMock\/CBMCentralManagerMock\/tearDownSimulation()","type":"topic","title":"tearDownSimulation()","abstract":[{"type":"text","text":"Removes all active central manager instances and peripherals from the"},{"type":"text","text":" "},{"text":"simulation, resetting it to the initial state.","type":"text"}],"url":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:)/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/!=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:)/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/==(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/data/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/data/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/data/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/data/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/delay/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/delay/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/delay/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/delay/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/equatable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:)/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/hash(into:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/hashable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:)/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/init(data:interval:delay:isadvertisingwhenconnected:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/interval/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/interval/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/interval/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/interval/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementconfig/isadvertisingwhenconnected/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementdataisconnectable/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementdataisconnectable/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementdataisconnectable/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementdataisconnectable/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementdatalocalnamekey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementdatamanufacturerdatakey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementdataoverflowserviceuuidskey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementdataservicedatakey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementdataserviceuuidskey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementdatasolicitedserviceuuidskey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey/index.html b/docs/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey/index.html +++ b/docs/documentation/corebluetoothmock/cbmadvertisementdatatxpowerlevelkey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmatterror/index.html b/docs/documentation/corebluetoothmock/cbmatterror/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmatterror/index.html +++ b/docs/documentation/corebluetoothmock/cbmatterror/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmattribute/index.html b/docs/documentation/corebluetoothmock/cbmattribute/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmattribute/index.html +++ b/docs/documentation/corebluetoothmock/cbmattribute/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcccdescriptormock/index.html b/docs/documentation/corebluetoothmock/cbmcccdescriptormock/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcccdescriptormock/index.html +++ b/docs/documentation/corebluetoothmock/cbmcccdescriptormock/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/authorization-swift.type.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/cancelperipheralconnection(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/connect(_:options:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/delegate/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/delegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/delegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/delegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/init(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/init(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/init(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/init(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/isscanning/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/isscanning/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/isscanning/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/isscanning/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveconnectedperipherals(withservices:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/retrieveperipherals(withidentifiers:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/scanforperipherals(withservices:options:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/state/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/state/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/state/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/state/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanager/stopscan()/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanager/stopscan()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanager/stopscan()/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanager/stopscan()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-1ay8d/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:connectioneventdidoccur:for:)-3pqer/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-6tlfh/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didconnect:)-p052/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1j8c2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddisconnectperipheral:error:)-1lv48/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-2h1bb/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didfailtoconnect:error:)-9sppj/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-6msdh/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-4zyhg/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanager(_:willrestorestate:)-9qavl/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/centralmanagerdidupdatestate(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:connectioneventdidoccur:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didconnect:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddisconnectperipheral:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:diddiscover:advertisementdata:rssi:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didfailtoconnect:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:didupdateancsauthorizationfor:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanager(_:willrestorestate:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/centralmanagerdidupdatestate(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/connectioneventdidoccur/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didconnect/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddisconnect/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/diddiscoverperipheral/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didfailtoconnect/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdateancsauthorization/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/didupdatestate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerdelegateproxy/willrestorestate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:forcemock:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(delegate:queue:options:forcemock:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerfactory/instance(forcemock:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/authorization-swift.type.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/cancelperipheralconnection(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/connect(_:options:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init()/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init()/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/init(delegate:queue:options:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveconnectedperipherals(withservices:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/retrieveperipherals(withidentifiers:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/scanforperipherals(withservices:options:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateauthorization(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateinitialstate(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulateperipherals(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff()/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff()/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweroff()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron()/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron()/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatepoweron()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/simulatestaterestoration/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/state/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/state/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/state/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/state/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan()/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan()/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/stopscan()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation()/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation()/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagermock/teardownsimulation()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/authorization-swift.type.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/cancelperipheralconnection(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/connect(_:options:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init()/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init()/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/init(delegate:queue:options:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/isscanning/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveconnectedperipherals(withservices:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/retrieveperipherals(withidentifiers:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:)/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/scanforperipherals(withservices:options:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/state/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/state/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/state/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/state/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan()/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan()/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagernative/stopscan()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanageroptionrestoreidentifierkey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanageroptionshowpoweralertkey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstateperipheralskey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanoptionskey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerrestoredstatescanserviceskey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionallowduplicateskey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey/index.html b/docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey/index.html +++ b/docs/documentation/corebluetoothmock/cbmcentralmanagerscanoptionsolicitedserviceuuidskey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristic/descriptors/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristic/descriptors/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristic/descriptors/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristic/descriptors/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristic/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristic/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristic/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristic/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristic/isnotifying/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristic/isnotifying/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristic/isnotifying/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristic/isnotifying/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristic/properties/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristic/properties/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristic/properties/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristic/properties/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristic/service/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristic/service/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristic/service/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristic/service/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristic/uuid/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristic/uuid/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristic/uuid/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristic/uuid/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristic/value/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristic/value/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristic/value/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristic/value/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristicmock/descriptors/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristicmock/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristicmock/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristicmock/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristicmock/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:)/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristicmock/init(type:properties:descriptors:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:)/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristicmock/isequal(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristicproperties/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristicproperties/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristicproperties/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristicproperties/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmcharacteristicwritetype/index.html b/docs/documentation/corebluetoothmock/cbmcharacteristicwritetype/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmcharacteristicwritetype/index.html +++ b/docs/documentation/corebluetoothmock/cbmcharacteristicwritetype/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/index.html b/docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/index.html +++ b/docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init()/index.html b/docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init()/index.html +++ b/docs/documentation/corebluetoothmock/cbmclientcharacteristicconfigurationdescriptormock/init()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmconnectionevent/index.html b/docs/documentation/corebluetoothmock/cbmconnectionevent/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmconnectionevent/index.html +++ b/docs/documentation/corebluetoothmock/cbmconnectionevent/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmconnectioneventmatchingoption/index.html b/docs/documentation/corebluetoothmock/cbmconnectioneventmatchingoption/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmconnectioneventmatchingoption/index.html +++ b/docs/documentation/corebluetoothmock/cbmconnectioneventmatchingoption/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey/index.html b/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey/index.html +++ b/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonconnectionkey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey/index.html b/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey/index.html +++ b/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyondisconnectionkey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey/index.html b/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey/index.html +++ b/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionnotifyonnotificationkey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey/index.html b/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey/index.html +++ b/docs/documentation/corebluetoothmock/cbmconnectperipheraloptionstartdelaykey/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmdescriptor/characteristic/index.html b/docs/documentation/corebluetoothmock/cbmdescriptor/characteristic/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmdescriptor/characteristic/index.html +++ b/docs/documentation/corebluetoothmock/cbmdescriptor/characteristic/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmdescriptor/index.html b/docs/documentation/corebluetoothmock/cbmdescriptor/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmdescriptor/index.html +++ b/docs/documentation/corebluetoothmock/cbmdescriptor/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmdescriptor/uuid/index.html b/docs/documentation/corebluetoothmock/cbmdescriptor/uuid/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmdescriptor/uuid/index.html +++ b/docs/documentation/corebluetoothmock/cbmdescriptor/uuid/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmdescriptor/value/index.html b/docs/documentation/corebluetoothmock/cbmdescriptor/value/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmdescriptor/value/index.html +++ b/docs/documentation/corebluetoothmock/cbmdescriptor/value/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmdescriptormock/index.html b/docs/documentation/corebluetoothmock/cbmdescriptormock/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmdescriptormock/index.html +++ b/docs/documentation/corebluetoothmock/cbmdescriptormock/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmdescriptormock/init(type:)/index.html b/docs/documentation/corebluetoothmock/cbmdescriptormock/init(type:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmdescriptormock/init(type:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmdescriptormock/init(type:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:)/index.html b/docs/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmdescriptormock/isequal(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmerror/index.html b/docs/documentation/corebluetoothmock/cbmerror/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmerror/index.html +++ b/docs/documentation/corebluetoothmock/cbmerror/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbml2capchannel/index.html b/docs/documentation/corebluetoothmock/cbml2capchannel/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbml2capchannel/index.html +++ b/docs/documentation/corebluetoothmock/cbml2capchannel/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbml2cappsm/index.html b/docs/documentation/corebluetoothmock/cbml2cappsm/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbml2cappsm/index.html +++ b/docs/documentation/corebluetoothmock/cbml2cappsm/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerauthorization/index.html b/docs/documentation/corebluetoothmock/cbmmanagerauthorization/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerauthorization/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerauthorization/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:)/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/!=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/equatable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/hash(into:)/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/hash(into:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/hash(into:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/hash(into:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/hashvalue/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/hashvalue/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/hashvalue/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/hashvalue/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:)/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/init(rawvalue:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/poweredoff/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/poweredoff/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/poweredoff/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/poweredoff/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/poweredon/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/poweredon/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/poweredon/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/poweredon/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/rawrepresentable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/resetting/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/resetting/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/resetting/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/resetting/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/unauthorized/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/unauthorized/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/unauthorized/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/unauthorized/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/unknown/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/unknown/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/unknown/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/unknown/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmmanagerstate/unsupported/index.html b/docs/documentation/corebluetoothmock/cbmmanagerstate/unsupported/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmmanagerstate/unsupported/index.html +++ b/docs/documentation/corebluetoothmock/cbmmanagerstate/unsupported/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmpeer/index.html b/docs/documentation/corebluetoothmock/cbmpeer/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmpeer/index.html +++ b/docs/documentation/corebluetoothmock/cbmpeer/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/cansendwritewithoutresponse/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/delegate/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/delegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/delegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/delegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/discovercharacteristics(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/discoverdescriptors(for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/discoverincludedservices(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/discoverservices(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/identifier/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/identifier/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/identifier/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/identifier/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/maximumwritevaluelength(for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/name/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/name/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/name/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/name/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/readrssi()/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/readrssi()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/readrssi()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/readrssi()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-1hqxp/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/readvalue(for:)-3xyb1/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/services/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/services/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/services/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/services/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/setnotifyvalue(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/state/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/state/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/state/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/state/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheral/writevalue(_:for:type:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-6mi4k/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:diddiscoverservices:)-7annk/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-1pvuz/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didmodifyservices:)-9i6xy/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-8ac1d/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didopen:error:)-tise/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7xmo2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didreadrssi:error:)-7zu2o/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2bu3j/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-2xce0/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-62302/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didupdatevaluefor:error:)-73y6k/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-2aalw/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-3ghoi/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-86kdv/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheral(_:didwritevaluefor:error:)-90cp/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-4r9dx/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheraldidupdatename(_:)-klf8/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-1nvtl/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegate/peripheralisready(tosendwritewithoutresponse:)-2cz0i/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/cbmperipheraldelegate-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscovercharacteristics/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverdescriptors/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverincludedservices/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/diddiscoverservices/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didmodifyservices/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didreadrssi/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatecharacteristicvalue/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatedescriptorvalue/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatename/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didupdatenotificationstate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritecharacteristicvalue/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/didwritedescriptorvalue/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/isreadytosendwritewithoutresponse/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscovercharacteristicsfor:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverdescriptorsfor:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverincludedservicesfor:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:diddiscoverservices:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didmodifyservices:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didopen:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didreadrssi:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatenotificationstatefor:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-6bw1b/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-7ocld/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-88um0/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didupdatevaluefor:error:)-nw91/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2fdon/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-2gkk4/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-9twsk/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheral(_:didwritevaluefor:error:)-eh78/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheraldidupdatename(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxy/peripheralisready(tosendwritewithoutresponse:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/didopenchannel/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheraldelegateproxywithl2capchannel/peripheral(_:didopen:error:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/ancsauthorized/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/cansendwritewithoutresponse/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/delegate/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/delegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/delegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/delegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/discovercharacteristics(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverdescriptors(for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverincludedservices(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/discoverservices(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/hash/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/hash/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/hash/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/hash/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/identifier/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/identifier/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/identifier/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/identifier/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/maximumwritevaluelength(for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/name/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/name/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/name/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/name/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/openl2capchannel(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/readrssi()/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/readrssi()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/readrssi()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/readrssi()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-29us6/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/readvalue(for:)-9on43/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/services/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/services/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/services/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/services/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/setnotifyvalue(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/state/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/state/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/state/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/state/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralmock/writevalue(_:for:type:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/cansendwritewithoutresponse/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/delegate/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/delegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/delegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/delegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/discovercharacteristics(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverdescriptors(for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverincludedservices(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/discoverservices(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/hash/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/hash/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/hash/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/hash/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/identifier/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/identifier/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/identifier/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/identifier/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/maximumwritevaluelength(for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/name/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/name/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/name/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/name/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/peripheral/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/peripheral/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/peripheral/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/peripheral/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/readrssi()/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/readrssi()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/readrssi()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/readrssi()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-65lsz/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/readvalue(for:)-b1qu/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/services/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/services/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/services/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/services/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/setnotifyvalue(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/state/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/state/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/state/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/state/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralnative/writevalue(_:for:type:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/ancsauthorized/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/cansendwritewithoutresponse/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/delegate/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/delegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/delegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/delegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/discovercharacteristics(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverdescriptors(for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverincludedservices(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/discoverservices(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/identifier/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/identifier/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/identifier/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/identifier/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/init(_:state:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/maximumwritevaluelength(for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/name/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/name/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/name/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/name/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/openl2capchannel(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/readrssi()/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/readrssi()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/readrssi()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/readrssi()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-5cb2u/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/readvalue(for:)-kuta/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/services/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/services/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/services/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/services/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/setnotifyvalue(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/state/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/state/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/state/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/state/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralpreview/writevalue(_:for:type:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/!=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/==(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisement/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisement/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisement/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisement/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisementdata/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/advertisinginterval/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval()/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/allowforretrieval()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/build()/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/build()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/build()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/build()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connectable(name:services:delegate:connectioninterval:mtu:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/connected(name:services:delegate:connectioninterval:mtu:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/builder/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/connectiondelegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/connectioninterval/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/equatable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/identifier/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/identifier/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/identifier/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/identifier/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/isadvertisingwhenconnected/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/isconnected/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/isconnected/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/isconnected/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/isconnected/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/isknown/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/isknown/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/isknown/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/isknown/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/mtu/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/mtu/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/mtu/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/mtu/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/name/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/name/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/name/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/name/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/proximity/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/proximity/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/proximity/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/proximity/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/services/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/services/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/services/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/services/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateadvertisementchange(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching()/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatecaching()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection()/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateconnection()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatedisconnection(witherror:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatemacchange(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateperipheral(identifier:proximity:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateproximitychange(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatereset()/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatereset()/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatereset()/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatereset()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulateservicechange(newname:newservices:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:)/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspec/simulatevalueupdate(_:for:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-37v65/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:diddisconnect:)-9slvl/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-3sqgp/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-47a2c/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-5c1ls/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6p4xw/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-6tewg/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-7sk6x/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9aw73/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivereadrequestfor:)-9ybod/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivesetnotifyrequest:for:)-jbut/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-14ln0/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-2v5ht/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-58pcn/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewritecommandfor:data:)-65o4m/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-23hwi/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-2hi9u/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-3nc1b/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-6plt7/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-753gh/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-75hfw/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-81sdk/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didreceivewriterequestfor:data:)-yspa/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-4aash/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheral(_:didupdatenotificationstatefor:error:)-nipu/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-2bpww/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/peripheraldidreceiveconnectionrequest(_:)-6eqgz/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-7utrg/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz/index.html b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralspecdelegate/reset()-8n6fz/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmperipheralstate/index.html b/docs/documentation/corebluetoothmock/cbmperipheralstate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmperipheralstate/index.html +++ b/docs/documentation/corebluetoothmock/cbmperipheralstate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmproximity/!=(_:_:)/index.html b/docs/documentation/corebluetoothmock/cbmproximity/!=(_:_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmproximity/!=(_:_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmproximity/!=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmproximity/equatable-implementations/index.html b/docs/documentation/corebluetoothmock/cbmproximity/equatable-implementations/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmproximity/equatable-implementations/index.html +++ b/docs/documentation/corebluetoothmock/cbmproximity/equatable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmproximity/far/index.html b/docs/documentation/corebluetoothmock/cbmproximity/far/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmproximity/far/index.html +++ b/docs/documentation/corebluetoothmock/cbmproximity/far/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmproximity/immediate/index.html b/docs/documentation/corebluetoothmock/cbmproximity/immediate/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmproximity/immediate/index.html +++ b/docs/documentation/corebluetoothmock/cbmproximity/immediate/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmproximity/index.html b/docs/documentation/corebluetoothmock/cbmproximity/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmproximity/index.html +++ b/docs/documentation/corebluetoothmock/cbmproximity/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmproximity/near/index.html b/docs/documentation/corebluetoothmock/cbmproximity/near/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmproximity/near/index.html +++ b/docs/documentation/corebluetoothmock/cbmproximity/near/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmproximity/outofrange/index.html b/docs/documentation/corebluetoothmock/cbmproximity/outofrange/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmproximity/outofrange/index.html +++ b/docs/documentation/corebluetoothmock/cbmproximity/outofrange/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservice/characteristics/index.html b/docs/documentation/corebluetoothmock/cbmservice/characteristics/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservice/characteristics/index.html +++ b/docs/documentation/corebluetoothmock/cbmservice/characteristics/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservice/includedservices/index.html b/docs/documentation/corebluetoothmock/cbmservice/includedservices/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservice/includedservices/index.html +++ b/docs/documentation/corebluetoothmock/cbmservice/includedservices/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservice/index.html b/docs/documentation/corebluetoothmock/cbmservice/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservice/index.html +++ b/docs/documentation/corebluetoothmock/cbmservice/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservice/isprimary/index.html b/docs/documentation/corebluetoothmock/cbmservice/isprimary/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservice/isprimary/index.html +++ b/docs/documentation/corebluetoothmock/cbmservice/isprimary/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservice/peripheral/index.html b/docs/documentation/corebluetoothmock/cbmservice/peripheral/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservice/peripheral/index.html +++ b/docs/documentation/corebluetoothmock/cbmservice/peripheral/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservice/uuid/index.html b/docs/documentation/corebluetoothmock/cbmservice/uuid/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservice/uuid/index.html +++ b/docs/documentation/corebluetoothmock/cbmservice/uuid/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservicemock/index.html b/docs/documentation/corebluetoothmock/cbmservicemock/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservicemock/index.html +++ b/docs/documentation/corebluetoothmock/cbmservicemock/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq/index.html b/docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq/index.html +++ b/docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-255jq/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o/index.html b/docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o/index.html +++ b/docs/documentation/corebluetoothmock/cbmservicemock/init(type:primary:includedservice:characteristics:)-2pj4o/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmservicemock/isequal(_:)/index.html b/docs/documentation/corebluetoothmock/cbmservicemock/isequal(_:)/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmservicemock/isequal(_:)/index.html +++ b/docs/documentation/corebluetoothmock/cbmservicemock/isequal(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/cbmuuid/index.html b/docs/documentation/corebluetoothmock/cbmuuid/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/cbmuuid/index.html +++ b/docs/documentation/corebluetoothmock/cbmuuid/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/index.html b/docs/documentation/corebluetoothmock/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/index.html +++ b/docs/documentation/corebluetoothmock/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/known-issues/index.html b/docs/documentation/corebluetoothmock/known-issues/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/known-issues/index.html +++ b/docs/documentation/corebluetoothmock/known-issues/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/migration-guide/index.html b/docs/documentation/corebluetoothmock/migration-guide/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/migration-guide/index.html +++ b/docs/documentation/corebluetoothmock/migration-guide/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/mocking-peripherals/index.html b/docs/documentation/corebluetoothmock/mocking-peripherals/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/mocking-peripherals/index.html +++ b/docs/documentation/corebluetoothmock/mocking-peripherals/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/corebluetoothmock/simulation/index.html b/docs/documentation/corebluetoothmock/simulation/index.html index 7111db4..4736087 100644 --- a/docs/documentation/corebluetoothmock/simulation/index.html +++ b/docs/documentation/corebluetoothmock/simulation/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 7111db4..4736087 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/index/index.json b/docs/index/index.json index b84c6a6..207f05b 100644 --- a/docs/index/index.json +++ b/docs/index/index.json @@ -1 +1 @@ -{"interfaceLanguages":{"swift":[{"children":[{"title":"How to migrate a project to CoreBluetooth Mock framework","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/migration-guide","title":"Migration guide","type":"article"},{"title":"How to create mock peripherals","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/mocking-peripherals","title":"Mocking Bluetooth LE Devices","type":"article"},{"title":"How to simulate test events","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/simulation","title":"Simulation","type":"article"},{"title":"Known issues","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/known-issues","title":"Known issues","type":"article"},{"title":"Mocking Bluetooth LE Devices","type":"groupMarker"},{"children":[{"title":"Initialization","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)","title":"static func simulatePeripheral(identifier: UUID, proximity: CBMProximity) -> CBMPeripheralSpec.Builder","type":"method"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)","title":"func advertising(advertisementData: [String : Any], withInterval: TimeInterval, delay: TimeInterval, alsoWhenConnected: Bool) -> CBMPeripheralSpec.Builder","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","title":"func allowForRetrieval() -> CBMPeripheralSpec.Builder","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()","title":"func build() -> CBMPeripheralSpec","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)","title":"func connectable(name: String, services: [CBMServiceMock], delegate: CBMPeripheralSpecDelegate?, connectionInterval: TimeInterval, mtu: Int) -> CBMPeripheralSpec.Builder","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)","title":"func connected(name: String, services: [CBMServiceMock], delegate: CBMPeripheralSpecDelegate?, connectionInterval: TimeInterval, mtu: Int) -> CBMPeripheralSpec.Builder","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","title":"CBMPeripheralSpec.Builder","type":"class"},{"title":"Simulation Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"func simulateProximityChange(CBMProximity)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"func simulateValueUpdate(Data, for: CBMCharacteristicMock)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"func simulateAdvertisementChange([CBMAdvertisementConfig]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"func simulateDisconnection(withError: Error)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"func simulateReset()","type":"method"},{"title":"Advanced","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()","title":"func simulateConnection()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","title":"func simulateCaching()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)","title":"func simulateMacChange(UUID)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)","title":"func simulateServiceChange(newName: String?, newServices: [CBMServiceMock])","type":"method"},{"title":"Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","title":"let mtu: Int?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","title":"var advertisement: [CBMAdvertisementConfig]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","title":"var identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","title":"var proximity: CBMProximity","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","title":"var isConnected: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","title":"let connectionDelegate: CBMPeripheralSpecDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","title":"let connectionInterval: TimeInterval?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","title":"var isKnown: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","title":"var services: [CBMServiceMock]?","type":"property"},{"title":"Deprecated","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata","title":"var advertisementData: [String : Any]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval","title":"var advertisingInterval: TimeInterval?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected","title":"var isAdvertisingWhenConnected: Bool","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/==(_:_:)","title":"static func == (CBMPeripheralSpec, CBMPeripheralSpec) -> Bool","type":"op"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec","title":"CBMPeripheralSpec","type":"class"},{"children":[{"title":"Handling Connection Events","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-2bpww","title":"func peripheralDidReceiveConnectionRequest(CBMPeripheralSpec) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz","title":"func peripheralDidReceiveConnectionRequest(CBMPeripheralSpec) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-9slvl","title":"func peripheral(CBMPeripheralSpec, didDisconnect: Error?)","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65","title":"func peripheral(CBMPeripheralSpec, didDisconnect: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-8n6fz","title":"func reset()","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg","title":"func reset()","type":"method"},{"title":"Handling Service Discovery","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el","title":"func peripheral(CBMPeripheralSpec, didReceiveServiceDiscoveryRequest: [CBMUUID]?) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f","title":"func peripheral(CBMPeripheralSpec, didReceiveServiceDiscoveryRequest: [CBMUUID]?) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristic) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"title":"Handling Requests","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristicMock, data: Data)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristic, data: Data)","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristicMock, data: Data)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"title":"Handling Notifications","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristic) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristicMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristicMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-nipu","title":"func peripheral(CBMPeripheralSpec, didUpdateNotificationStateFor: CBMCharacteristicMock, error: Error?)","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash","title":"func peripheral(CBMPeripheralSpec, didUpdateNotificationStateFor: CBMCharacteristicMock, error: Error?)","type":"method"},{"title":"Deprecated","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristic) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristic) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristicMock, data: Data)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristic, data: Data)","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristic, data: Data)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristic) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristic) -> Result","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate","title":"CBMPeripheralSpecDelegate","type":"protocol"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/far","title":"case far","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/immediate","title":"case immediate","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/near","title":"case near","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange","title":"case outOfRange","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/corebluetoothmock\/cbmproximity\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmproximity","title":"CBMProximity","type":"enum"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/init(data:interval:delay:isadvertisingwhenconnected:)","title":"init(data: [String : Any], interval: TimeInterval, delay: TimeInterval, isAdvertisingWhenConnected: Bool)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/data","title":"let data: [String : Any]","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/delay","title":"let delay: TimeInterval","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/interval","title":"let interval: TimeInterval","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected","title":"let isAdvertisingWhenConnected: Bool","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/==(_:_:)","title":"static func == (CBMAdvertisementConfig, CBMAdvertisementConfig) -> Bool","type":"op"}],"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hashable-implementations","title":"Hashable Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","type":"struct"},{"title":"Central Manager","type":"groupMarker"},{"children":[{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)","title":"static func instance(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?, forceMock: Bool) -> CBMCentralManager","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:options:forcemock:)","title":"static func instance(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?, options: [String : Any]?, forceMock: Bool) -> CBMCentralManager","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(forcemock:)","title":"static func instance(forceMock: Bool) -> CBMCentralManager","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory","title":"CBMCentralManagerFactory","type":"class"},{"children":[{"title":"Initialization","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/init(_:)","title":"init(Bool)","type":"init"},{"title":"Establishing or Canceling Connections with Peripherals","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)","title":"func connect(CBMPeripheral, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","title":"func cancelPeripheralConnection(CBMPeripheral)","type":"method"},{"title":"Retrieving Lists of Peripherals","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","title":"func retrieveConnectedPeripherals(withServices: [CBMUUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"func retrievePeripherals(withIdentifiers: [UUID]) -> [CBMPeripheral]","type":"method"},{"title":"Scanning or Stopping Scans of Peripherals","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)","title":"func scanForPeripherals(withServices: [CBMUUID]?, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()","title":"func stopScan()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning","title":"var isScanning: Bool","type":"property"},{"title":"Monitoring Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate","title":"var delegate: CBMCentralManagerDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state","title":"var state: CBMManagerState","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property","title":"class var authorization: CBMManagerAuthorization","type":"property"},{"title":"Receiving Connection Events","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption","title":"CBMConnectionEventMatchingOption","type":"typealias"},{"title":"Deprecated","type":"groupMarker"},{"deprecated":true,"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.property","title":"var authorization: CBMManagerAuthorization","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager","title":"CBMCentralManager","type":"class"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-3pqer","title":"func centralManager(CBMCentralManager, connectionEventDidOccur: CBMConnectionEvent, for: CBMPeripheral)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d","title":"func centralManager(CBMCentralManager, connectionEventDidOccur: CBMConnectionEvent, for: CBMPeripheral)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh","title":"func centralManager(CBMCentralManager, didConnect: CBMPeripheral)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052","title":"func centralManager(CBMCentralManager, didConnect: CBMPeripheral)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1j8c2","title":"func centralManager(CBMCentralManager, didDisconnectPeripheral: CBMPeripheral, error: Error?)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48","title":"func centralManager(CBMCentralManager, didDisconnectPeripheral: CBMPeripheral, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp","title":"func centralManager(CBMCentralManager, didDiscover: CBMPeripheral, advertisementData: [String : Any], rssi: NSNumber)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n","title":"func centralManager(CBMCentralManager, didDiscover: CBMPeripheral, advertisementData: [String : Any], rssi: NSNumber)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-9sppj","title":"func centralManager(CBMCentralManager, didFailToConnect: CBMPeripheral, error: Error?)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb","title":"func centralManager(CBMCentralManager, didFailToConnect: CBMPeripheral, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl","title":"func centralManager(CBMCentralManager, didUpdateANCSAuthorizationFor: CBMPeripheral)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh","title":"func centralManager(CBMCentralManager, didUpdateANCSAuthorizationFor: CBMPeripheral)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg","title":"func centralManager(CBMCentralManager, willRestoreState: [String : Any])","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl","title":"func centralManager(CBMCentralManager, willRestoreState: [String : Any])","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)","title":"func centralManagerDidUpdateState(CBMCentralManager)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","title":"CBMCentralManagerDelegate","type":"protocol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/connectioneventdidoccur","title":"var connectionEventDidOccur: ((CBMCentralManager, CBMConnectionEvent, CBMPeripheral) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didconnect","title":"var didConnect: ((CBMCentralManager, CBMPeripheral) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddisconnect","title":"var didDisconnect: ((CBMCentralManager, CBMPeripheral, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddiscoverperipheral","title":"var didDiscoverPeripheral: ((CBMCentralManager, CBMPeripheral, [String : Any], NSNumber) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didfailtoconnect","title":"var didFailToConnect: ((CBMCentralManager, CBMPeripheral, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdateancsauthorization","title":"var didUpdateANCSAuthorization: ((CBMCentralManager, CBMPeripheral) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdatestate","title":"var didUpdateState: ((CBMCentralManager) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/willrestorestate","title":"var willRestoreState: ((CBMCentralManager, [String : Any]) -> ())?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:connectioneventdidoccur:for:)","title":"func centralManager(CBMCentralManager, connectionEventDidOccur: CBMConnectionEvent, for: CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didconnect:)","title":"func centralManager(CBMCentralManager, didConnect: CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddisconnectperipheral:error:)","title":"func centralManager(CBMCentralManager, didDisconnectPeripheral: CBMPeripheral, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddiscover:advertisementdata:rssi:)","title":"func centralManager(CBMCentralManager, didDiscover: CBMPeripheral, advertisementData: [String : Any], rssi: NSNumber)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didfailtoconnect:error:)","title":"func centralManager(CBMCentralManager, didFailToConnect: CBMPeripheral, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didupdateancsauthorizationfor:)","title":"func centralManager(CBMCentralManager, didUpdateANCSAuthorizationFor: CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:willrestorestate:)","title":"func centralManager(CBMCentralManager, willRestoreState: [String : Any])","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanagerdidupdatestate(_:)","title":"func centralManagerDidUpdateState(CBMCentralManager)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","title":"CBMCentralManagerDelegateProxy","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init()","title":"init()","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:)","title":"init(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?)","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:options:)","title":"init(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?, options: [String : Any]?)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"deprecated":true,"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.property","title":"var authorization: CBMManagerAuthorization","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/state","title":"var state: CBMManagerState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/cancelperipheralconnection(_:)","title":"func cancelPeripheralConnection(CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/connect(_:options:)","title":"func connect(CBMPeripheral, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveconnectedperipherals(withservices:)","title":"func retrieveConnectedPeripherals(withServices: [CBMUUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","title":"func retrievePeripherals(withIdentifiers: [UUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/scanforperipherals(withservices:options:)","title":"func scanForPeripherals(withServices: [CBMUUID]?, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/stopscan()","title":"func stopScan()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.type.property","title":"class var authorization: CBMManagerAuthorization","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration","title":"static var simulateStateRestoration: ((String) -> [String : Any]?)?","type":"property"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)","title":"static func simulateAuthorization(CBMManagerAuthorization)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)","title":"static func simulateInitialState(CBMManagerState)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)","title":"static func simulatePeripherals([CBMPeripheralSpec])","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()","title":"static func simulatePowerOff()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()","title":"static func simulatePowerOn()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()","title":"static func tearDownSimulation()","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","title":"CBMCentralManagerMock","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init()","title":"init()","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:)","title":"init(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?)","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:options:)","title":"init(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?, options: [String : Any]?)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"deprecated":true,"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.property","title":"var authorization: CBMManagerAuthorization","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/isscanning","title":"var isScanning: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/state","title":"var state: CBMManagerState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/cancelperipheralconnection(_:)","title":"func cancelPeripheralConnection(CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/connect(_:options:)","title":"func connect(CBMPeripheral, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveconnectedperipherals(withservices:)","title":"func retrieveConnectedPeripherals(withServices: [CBMUUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveperipherals(withidentifiers:)","title":"func retrievePeripherals(withIdentifiers: [UUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/scanforperipherals(withservices:options:)","title":"func scanForPeripherals(withServices: [CBMUUID]?, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/stopscan()","title":"func stopScan()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.type.property","title":"class var authorization: CBMManagerAuthorization","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","type":"class"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"case poweredOff","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","title":"case poweredOn","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/resetting","title":"case resetting","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized","title":"case unauthorized","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","title":"case unknown","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unsupported","title":"case unsupported","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/init(rawvalue:)","title":"init?(rawValue: Int)","type":"init"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate","title":"CBMManagerState","type":"enum"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","title":"CBMManagerAuthorization","type":"typealias"},{"title":"Central Manager Initialization Options","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","title":"let CBMCentralManagerOptionRestoreIdentifierKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey","title":"let CBMCentralManagerOptionShowPowerAlertKey: String","type":"var"},{"title":"Central Manager State Restoration Options","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey","title":"let CBMCentralManagerRestoredStatePeripheralsKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey","title":"let CBMCentralManagerRestoredStateScanServicesKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey","title":"let CBMCentralManagerRestoredStateScanOptionsKey: String","type":"var"},{"title":"Peripheral","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmpeer","title":"CBMPeer","type":"class"},{"children":[{"title":"Identifying a Peripheral","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier","title":"var identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate","title":"var delegate: CBMPeripheralDelegate?","type":"property"},{"title":"Discovering Services","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","title":"func discoverServices([CBMUUID]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"func discoverIncludedServices([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/services","title":"var services: [CBMService]?","type":"property"},{"title":"Discovering Characteristics and Descriptors","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","title":"func discoverCharacteristics([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","title":"func discoverDescriptors(for: CBMCharacteristic)","type":"method"},{"title":"Reading Characteristic and Descriptor Values","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","title":"func readValue(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","title":"func readValue(for: CBMDescriptor)","type":"method"},{"title":"Writing Characteristic and Descriptor Values","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"func writeValue(Data, for: CBMCharacteristic, type: CBMCharacteristicWriteType)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","title":"func writeValue(Data, for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)","title":"func maximumWriteValueLength(for: CBMCharacteristicWriteType) -> Int","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"typealias"},{"title":"Setting Notifications for a Characteristic’s Value","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)","title":"func setNotifyValue(Bool, for: CBMCharacteristic)","type":"method"},{"title":"Monitoring a Peripheral’s Connection State","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/state","title":"var state: CBMPeripheralState","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralstate","title":"CBMPeripheralState","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse","title":"var canSendWriteWithoutResponse: Bool","type":"property"},{"title":"Accessing a Peripheral’s Signal Strength","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()","title":"func readRSSI()","type":"method"},{"title":"Working with L2CAP Channels","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbml2cappsm","title":"CBML2CAPPSM","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbml2capchannel","title":"CBML2CAPChannel","type":"typealias"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheral","title":"CBMPeripheral","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc","title":"func peripheral(CBMPeripheral, didDiscoverCharacteristicsFor: CBMService, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk","title":"func peripheral(CBMPeripheral, didDiscoverCharacteristicsFor: CBMService, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j","title":"func peripheral(CBMPeripheral, didDiscoverDescriptorsFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo","title":"func peripheral(CBMPeripheral, didDiscoverDescriptorsFor: CBMCharacteristic, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr","title":"func peripheral(CBMPeripheral, didDiscoverIncludedServicesFor: CBMService, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q","title":"func peripheral(CBMPeripheral, didDiscoverIncludedServicesFor: CBMService, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-7annk","title":"func peripheral(CBMPeripheral, didDiscoverServices: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k","title":"func peripheral(CBMPeripheral, didDiscoverServices: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-1pvuz","title":"func peripheral(CBMPeripheral, didModifyServices: [CBMService])","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy","title":"func peripheral(CBMPeripheral, didModifyServices: [CBMService])","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-tise","title":"func peripheral(CBMPeripheral, didOpen: CBML2CAPChannel?, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d","title":"func peripheral(CBMPeripheral, didOpen: CBML2CAPChannel?, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7xmo2","title":"func peripheral(CBMPeripheral, didReadRSSI: NSNumber, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o","title":"func peripheral(CBMPeripheral, didReadRSSI: NSNumber, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y","title":"func peripheral(CBMPeripheral, didUpdateNotificationStateFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0","title":"func peripheral(CBMPeripheral, didUpdateNotificationStateFor: CBMCharacteristic, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-klf8","title":"func peripheralDidUpdateName(CBMPeripheral)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx","title":"func peripheralDidUpdateName(CBMPeripheral)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-2cz0i","title":"func peripheralIsReady(toSendWriteWithoutResponse: CBMPeripheral)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl","title":"func peripheralIsReady(toSendWriteWithoutResponse: CBMPeripheral)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","title":"CBMPeripheralDelegate","type":"protocol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscovercharacteristics","title":"var didDiscoverCharacteristics: ((CBMPeripheral, CBMService, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverdescriptors","title":"var didDiscoverDescriptors: ((CBMPeripheral, CBMCharacteristic, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverincludedservices","title":"var didDiscoverIncludedServices: ((CBMPeripheral, CBMService, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverservices","title":"var didDiscoverServices: ((CBMPeripheral, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didmodifyservices","title":"var didModifyServices: ((CBMPeripheral, [CBMService]) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didreadrssi","title":"var didReadRSSI: ((CBMPeripheral, NSNumber, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatecharacteristicvalue","title":"var didUpdateCharacteristicValue: ((CBMPeripheral, CBMCharacteristic, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatedescriptorvalue","title":"var didUpdateDescriptorValue: ((CBMPeripheral, CBMDescriptor, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatename","title":"var didUpdateName: ((CBMPeripheral) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatenotificationstate","title":"var didUpdateNotificationState: ((CBMPeripheral, CBMCharacteristic, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritecharacteristicvalue","title":"var didWriteCharacteristicValue: ((CBMPeripheral, CBMCharacteristic, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritedescriptorvalue","title":"var didWriteDescriptorValue: ((CBMPeripheral, CBMDescriptor, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/isreadytosendwritewithoutresponse","title":"var isReadyToSendWriteWithoutResponse: ((CBMPeripheral) -> ())?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscovercharacteristicsfor:error:)","title":"func peripheral(CBMPeripheral, didDiscoverCharacteristicsFor: CBMService, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverdescriptorsfor:error:)","title":"func peripheral(CBMPeripheral, didDiscoverDescriptorsFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverincludedservicesfor:error:)","title":"func peripheral(CBMPeripheral, didDiscoverIncludedServicesFor: CBMService, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverservices:)","title":"func peripheral(CBMPeripheral, didDiscoverServices: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didmodifyservices:)","title":"func peripheral(CBMPeripheral, didModifyServices: [CBMService])","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didreadrssi:error:)","title":"func peripheral(CBMPeripheral, didReadRSSI: NSNumber, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatenotificationstatefor:error:)","title":"func peripheral(CBMPeripheral, didUpdateNotificationStateFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-6bw1b","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-88um0","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2fdon","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-9twsk","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheraldidupdatename(_:)","title":"func peripheralDidUpdateName(CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheralisready(tosendwritewithoutresponse:)","title":"func peripheralIsReady(toSendWriteWithoutResponse: CBMPeripheral)","type":"method"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didopen:error:)","title":"func peripheral(CBMPeripheral, didOpen: CBML2CAPChannel?, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-7ocld","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-nw91","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2gkk4","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-eh78","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations","title":"CBMPeripheralDelegate Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/didopenchannel","title":"var didOpenChannel: ((CBMPeripheral, CBML2CAPChannel?, Error?) -> ())?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/peripheral(_:didopen:error:)","title":"func peripheral(CBMPeripheral, didOpen: CBML2CAPChannel?, error: Error?)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/ancsauthorized","title":"var ancsAuthorized: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/cansendwritewithoutresponse","title":"var canSendWriteWithoutResponse: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/delegate","title":"var delegate: CBMPeripheralDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/hash","title":"var hash: Int","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/identifier","title":"var identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/services","title":"var services: [CBMService]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/state","title":"var state: CBMPeripheralState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discovercharacteristics(_:for:)","title":"func discoverCharacteristics([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverdescriptors(for:)","title":"func discoverDescriptors(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverincludedservices(_:for:)","title":"func discoverIncludedServices([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverservices(_:)","title":"func discoverServices([CBMUUID]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/maximumwritevaluelength(for:)","title":"func maximumWriteValueLength(for: CBMCharacteristicWriteType) -> Int","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/openl2capchannel(_:)","title":"func openL2CAPChannel(CBML2CAPPSM)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readrssi()","title":"func readRSSI()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-29us6","title":"func readValue(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-9on43","title":"func readValue(for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/setnotifyvalue(_:for:)","title":"func setNotifyValue(Bool, for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:)","title":"func writeValue(Data, for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:type:)","title":"func writeValue(Data, for: CBMCharacteristic, type: CBMCharacteristicWriteType)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock","title":"CBMPeripheralMock","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/cansendwritewithoutresponse","title":"var canSendWriteWithoutResponse: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/delegate","title":"var delegate: CBMPeripheralDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/hash","title":"var hash: Int","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/identifier","title":"var identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/peripheral","title":"let peripheral: CBPeripheral","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/services","title":"var services: [CBMService]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/state","title":"var state: CBMPeripheralState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discovercharacteristics(_:for:)","title":"func discoverCharacteristics([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverdescriptors(for:)","title":"func discoverDescriptors(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverincludedservices(_:for:)","title":"func discoverIncludedServices([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverservices(_:)","title":"func discoverServices([CBMUUID]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/maximumwritevaluelength(for:)","title":"func maximumWriteValueLength(for: CBMCharacteristicWriteType) -> Int","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readrssi()","title":"func readRSSI()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-65lsz","title":"func readValue(for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-b1qu","title":"func readValue(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/setnotifyvalue(_:for:)","title":"func setNotifyValue(Bool, for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:)","title":"func writeValue(Data, for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:type:)","title":"func writeValue(Data, for: CBMCharacteristic, type: CBMCharacteristicWriteType)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/init(_:state:)","title":"init(CBMPeripheralSpec, state: CBMPeripheralState)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/ancsauthorized","title":"let ancsAuthorized: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/cansendwritewithoutresponse","title":"let canSendWriteWithoutResponse: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/delegate","title":"var delegate: CBMPeripheralDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/identifier","title":"let identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/services","title":"var services: [CBMService]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/state","title":"var state: CBMPeripheralState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discovercharacteristics(_:for:)","title":"func discoverCharacteristics([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverdescriptors(for:)","title":"func discoverDescriptors(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverincludedservices(_:for:)","title":"func discoverIncludedServices([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverservices(_:)","title":"func discoverServices([CBMUUID]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/maximumwritevaluelength(for:)","title":"func maximumWriteValueLength(for: CBMCharacteristicWriteType) -> Int","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/openl2capchannel(_:)","title":"func openL2CAPChannel(CBML2CAPPSM)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readrssi()","title":"func readRSSI()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-5cb2u","title":"func readValue(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-kuta","title":"func readValue(for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/setnotifyvalue(_:for:)","title":"func setNotifyValue(Bool, for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:)","title":"func writeValue(Data, for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:type:)","title":"func writeValue(Data, for: CBMCharacteristic, type: CBMCharacteristicWriteType)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","title":"CBMPeripheralPreview","type":"class"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralstate","title":"CBMPeripheralState","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbml2cappsm","title":"CBML2CAPPSM","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbml2capchannel","title":"CBML2CAPChannel","type":"typealias"},{"title":"Peripheral Connection Options","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey","title":"let CBMConnectPeripheralOptionNotifyOnConnectionKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey","title":"let CBMConnectPeripheralOptionNotifyOnDisconnectionKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey","title":"let CBMConnectPeripheralOptionNotifyOnNotificationKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey","title":"let CBMConnectPeripheralOptionStartDelayKey: String","type":"var"},{"title":"Attributes","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmattribute","title":"CBMAttribute","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","title":"var characteristics: [CBMCharacteristic]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"var includedServices: [CBMService]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/isprimary","title":"var isPrimary: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/peripheral","title":"var peripheral: CBMPeripheral?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/uuid","title":"var uuid: CBMUUID","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmservice","title":"CBMService","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-255jq","title":"init(type: CBMUUID, primary: Bool, includedService: [CBMServiceMock]?, characteristics: [CBMCharacteristicMock]?)","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-2pj4o","title":"convenience init(type: CBMUUID, primary: Bool, includedService: CBMServiceMock..., characteristics: CBMCharacteristicMock...)","type":"init"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmservicemock\/isequal(_:)","title":"func isEqual(Any?) -> Bool","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmservicemock","title":"CBMServiceMock","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors","title":"var descriptors: [CBMDescriptor]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying","title":"var isNotifying: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties","title":"let properties: CBMCharacteristicProperties","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/service","title":"var service: CBMService?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/uuid","title":"var uuid: CBMUUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/value","title":"var value: Data?","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic","title":"CBMCharacteristic","type":"class"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","title":"CBMCharacteristicProperties","type":"typealias"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/init(type:properties:descriptors:)","title":"init(type: CBMUUID, properties: CBMCharacteristicProperties, descriptors: CBMDescriptorMock...)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/descriptors","title":"var descriptors: [CBMDescriptor]?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/isequal(_:)","title":"func isEqual(Any?) -> Bool","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","title":"CBMCharacteristicMock","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptor\/characteristic","title":"var characteristic: CBMCharacteristic?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptor\/uuid","title":"var uuid: CBMUUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptor\/value","title":"var value: Any?","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmdescriptor","title":"CBMDescriptor","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/init(type:)","title":"init(type: CBMUUID)","type":"init"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/isequal(_:)","title":"func isEqual(Any?) -> Bool","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock\/init()","title":"init()","type":"init"}],"path":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","title":"CBMClientCharacteristicConfigurationDescriptorMock","type":"class"},{"path":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","title":"CBMCCCDescriptorMock","type":"typealias"},{"title":"Scanning options","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey","title":"let CBMCentralManagerScanOptionAllowDuplicatesKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey","title":"let CBMCentralManagerScanOptionSolicitedServiceUUIDsKey: String","type":"var"},{"title":"Advertisement Data Retrieval Keys","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"let CBMAdvertisementDataLocalNameKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"let CBMAdvertisementDataManufacturerDataKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"let CBMAdvertisementDataServiceDataKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"let CBMAdvertisementDataServiceUUIDsKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"let CBMAdvertisementDataOverflowServiceUUIDsKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"let CBMAdvertisementDataTxPowerLevelKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"let CBMAdvertisementDataIsConnectable: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"let CBMAdvertisementDataSolicitedServiceUUIDsKey: String","type":"var"},{"title":"Other","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmerror","title":"CBMError","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmatterror","title":"CBMATTError","type":"typealias"}],"path":"\/documentation\/corebluetoothmock","title":"CoreBluetoothMock","type":"module"}]},"schemaVersion":{"major":0,"minor":1,"patch":1}} \ No newline at end of file +{"interfaceLanguages":{"swift":[{"children":[{"title":"How to migrate a project to CoreBluetooth Mock framework","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/migration-guide","title":"Migration guide","type":"article"},{"title":"How to create mock peripherals","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/mocking-peripherals","title":"Mocking Bluetooth LE Devices","type":"article"},{"title":"How to simulate test events","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/simulation","title":"Simulation","type":"article"},{"title":"Known issues","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/known-issues","title":"Known issues","type":"article"},{"title":"Mocking Bluetooth LE Devices","type":"groupMarker"},{"children":[{"title":"Initialization","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateperipheral(identifier:proximity:)","title":"static func simulatePeripheral(identifier: UUID, proximity: CBMProximity) -> CBMPeripheralSpec.Builder","type":"method"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/advertising(advertisementdata:withinterval:delay:alsowhenconnected:)","title":"func advertising(advertisementData: [String : Any], withInterval: TimeInterval, delay: TimeInterval, alsoWhenConnected: Bool) -> CBMPeripheralSpec.Builder","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/allowforretrieval()","title":"func allowForRetrieval() -> CBMPeripheralSpec.Builder","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/build()","title":"func build() -> CBMPeripheralSpec","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connectable(name:services:delegate:connectioninterval:mtu:)","title":"func connectable(name: String, services: [CBMServiceMock], delegate: CBMPeripheralSpecDelegate?, connectionInterval: TimeInterval, mtu: Int) -> CBMPeripheralSpec.Builder","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder\/connected(name:services:delegate:connectioninterval:mtu:)","title":"func connected(name: String, services: [CBMServiceMock], delegate: CBMPeripheralSpecDelegate?, connectionInterval: TimeInterval, mtu: Int) -> CBMPeripheralSpec.Builder","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/builder","title":"CBMPeripheralSpec.Builder","type":"class"},{"title":"Simulation Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateproximitychange(_:)","title":"func simulateProximityChange(CBMProximity)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatevalueupdate(_:for:)","title":"func simulateValueUpdate(Data, for: CBMCharacteristicMock)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateadvertisementchange(_:)","title":"func simulateAdvertisementChange([CBMAdvertisementConfig]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatedisconnection(witherror:)","title":"func simulateDisconnection(withError: Error)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatereset()","title":"func simulateReset()","type":"method"},{"title":"Advanced","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateconnection()","title":"func simulateConnection()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatecaching()","title":"func simulateCaching()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulatemacchange(_:)","title":"func simulateMacChange(UUID)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/simulateservicechange(newname:newservices:)","title":"func simulateServiceChange(newName: String?, newServices: [CBMServiceMock])","type":"method"},{"title":"Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/mtu","title":"let mtu: Int?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisement","title":"var advertisement: [CBMAdvertisementConfig]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/identifier","title":"var identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/proximity","title":"var proximity: CBMProximity","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isconnected","title":"var isConnected: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectiondelegate","title":"let connectionDelegate: CBMPeripheralSpecDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/connectioninterval","title":"let connectionInterval: TimeInterval?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isknown","title":"var isKnown: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/services","title":"var services: [CBMServiceMock]?","type":"property"},{"title":"Deprecated","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisementdata","title":"var advertisementData: [String : Any]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/advertisinginterval","title":"var advertisingInterval: TimeInterval?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/isadvertisingwhenconnected","title":"var isAdvertisingWhenConnected: Bool","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/==(_:_:)","title":"static func == (CBMPeripheralSpec, CBMPeripheralSpec) -> Bool","type":"op"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspec","title":"CBMPeripheralSpec","type":"class"},{"children":[{"title":"Handling Connection Events","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-2bpww","title":"func peripheralDidReceiveConnectionRequest(CBMPeripheralSpec) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheraldidreceiveconnectionrequest(_:)-6eqgz","title":"func peripheralDidReceiveConnectionRequest(CBMPeripheralSpec) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-9slvl","title":"func peripheral(CBMPeripheralSpec, didDisconnect: Error?)","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:diddisconnect:)-37v65","title":"func peripheral(CBMPeripheralSpec, didDisconnect: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-8n6fz","title":"func reset()","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/reset()-7utrg","title":"func reset()","type":"method"},{"title":"Handling Service Discovery","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-1p1el","title":"func peripheral(CBMPeripheralSpec, didReceiveServiceDiscoveryRequest: [CBMUUID]?) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveservicediscoveryrequest:)-pq5f","title":"func peripheral(CBMPeripheralSpec, didReceiveServiceDiscoveryRequest: [CBMUUID]?) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4mqk2","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-2doal","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristic) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-6rk13","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"title":"Handling Requests","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9ybod","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-7sk6x","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristicMock, data: Data)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristic, data: Data)","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-58pcn","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristicMock, data: Data)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-yspa","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-81sdk","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"title":"Handling Notifications","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristic) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristicMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-9r03q","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristicMock) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-nipu","title":"func peripheral(CBMPeripheralSpec, didUpdateNotificationStateFor: CBMCharacteristicMock, error: Error?)","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didupdatenotificationstatefor:error:)-4aash","title":"func peripheral(CBMPeripheralSpec, didUpdateNotificationStateFor: CBMCharacteristicMock, error: Error?)","type":"method"},{"title":"Deprecated","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-9y6us","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-7iofs","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceiveincludedservicediscoveryrequest:for:)-4g4y5","title":"func peripheral(CBMPeripheralSpec, didReceiveIncludedServiceDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-7lbyr","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-995x5","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMServiceMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivecharacteristicsdiscoveryrequest:for:)-88ij9","title":"func peripheral(CBMPeripheralSpec, didReceiveCharacteristicsDiscoveryRequest: [CBMUUID]?, for: CBMService) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-9ao7l","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristic) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-2baav","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristicMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivedescriptorsdiscoveryrequestfor:)-3y8of","title":"func peripheral(CBMPeripheralSpec, didReceiveDescriptorsDiscoveryRequestFor: CBMCharacteristic) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-47a2c","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-5c1ls","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptorMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-9aw73","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristic) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6tewg","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-3sqgp","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivereadrequestfor:)-6p4xw","title":"func peripheral(CBMPeripheralSpec, didReceiveReadRequestFor: CBMDescriptor) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-2v5ht","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristicMock, data: Data)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-65o4m","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristic, data: Data)","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewritecommandfor:data:)-14ln0","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteCommandFor: CBMCharacteristic, data: Data)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-3nc1b","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-75hfw","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptorMock, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-2hi9u","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristic, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-753gh","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-23hwi","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMCharacteristicMock, data: Data) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivewriterequestfor:data:)-6plt7","title":"func peripheral(CBMPeripheralSpec, didReceiveWriteRequestFor: CBMDescriptor, data: Data) -> Result","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-6yb1i","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristicMock) -> Result","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-jbut","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristic) -> Result","type":"method"}],"title":"CBMPeripheralSpecDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate\/peripheral(_:didreceivesetnotifyrequest:for:)-8yagc","title":"func peripheral(CBMPeripheralSpec, didReceiveSetNotifyRequest: Bool, for: CBMCharacteristic) -> Result","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralspecdelegate","title":"CBMPeripheralSpecDelegate","type":"protocol"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/far","title":"case far","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/immediate","title":"case immediate","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/near","title":"case near","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/outofrange","title":"case outOfRange","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmproximity\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/corebluetoothmock\/cbmproximity\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmproximity","title":"CBMProximity","type":"enum"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/init(data:interval:delay:isadvertisingwhenconnected:)","title":"init(data: [String : Any], interval: TimeInterval, delay: TimeInterval, isAdvertisingWhenConnected: Bool)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/data","title":"let data: [String : Any]","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/delay","title":"let delay: TimeInterval","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/interval","title":"let interval: TimeInterval","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/isadvertisingwhenconnected","title":"let isAdvertisingWhenConnected: Bool","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/==(_:_:)","title":"static func == (CBMAdvertisementConfig, CBMAdvertisementConfig) -> Bool","type":"op"}],"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig\/hashable-implementations","title":"Hashable Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmadvertisementconfig","title":"CBMAdvertisementConfig","type":"struct"},{"title":"Central Manager","type":"groupMarker"},{"children":[{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:forcemock:)","title":"static func instance(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?, forceMock: Bool) -> CBMCentralManager","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(delegate:queue:options:forcemock:)","title":"static func instance(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?, options: [String : Any]?, forceMock: Bool) -> CBMCentralManager","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory\/instance(forcemock:)","title":"static func instance(forceMock: Bool) -> CBMCentralManager","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerfactory","title":"CBMCentralManagerFactory","type":"class"},{"children":[{"title":"Initialization","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/init(_:)","title":"init(Bool)","type":"init"},{"title":"Establishing or Canceling Connections with Peripherals","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/connect(_:options:)","title":"func connect(CBMPeripheral, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/cancelperipheralconnection(_:)","title":"func cancelPeripheralConnection(CBMPeripheral)","type":"method"},{"title":"Retrieving Lists of Peripherals","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveconnectedperipherals(withservices:)","title":"func retrieveConnectedPeripherals(withServices: [CBMUUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/retrieveperipherals(withidentifiers:)","title":"func retrievePeripherals(withIdentifiers: [UUID]) -> [CBMPeripheral]","type":"method"},{"title":"Scanning or Stopping Scans of Peripherals","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/scanforperipherals(withservices:options:)","title":"func scanForPeripherals(withServices: [CBMUUID]?, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/stopscan()","title":"func stopScan()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/isscanning","title":"var isScanning: Bool","type":"property"},{"title":"Monitoring Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/delegate","title":"var delegate: CBMCentralManagerDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/state","title":"var state: CBMManagerState","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.type.property","title":"class var authorization: CBMManagerAuthorization","type":"property"},{"title":"Receiving Connection Events","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectionevent","title":"CBMConnectionEvent","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectioneventmatchingoption","title":"CBMConnectionEventMatchingOption","type":"typealias"},{"title":"Deprecated","type":"groupMarker"},{"deprecated":true,"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager\/authorization-swift.property","title":"var authorization: CBMManagerAuthorization","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanager","title":"CBMCentralManager","type":"class"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-3pqer","title":"func centralManager(CBMCentralManager, connectionEventDidOccur: CBMConnectionEvent, for: CBMPeripheral)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:connectioneventdidoccur:for:)-1ay8d","title":"func centralManager(CBMCentralManager, connectionEventDidOccur: CBMConnectionEvent, for: CBMPeripheral)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-6tlfh","title":"func centralManager(CBMCentralManager, didConnect: CBMPeripheral)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didconnect:)-p052","title":"func centralManager(CBMCentralManager, didConnect: CBMPeripheral)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1j8c2","title":"func centralManager(CBMCentralManager, didDisconnectPeripheral: CBMPeripheral, error: Error?)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddisconnectperipheral:error:)-1lv48","title":"func centralManager(CBMCentralManager, didDisconnectPeripheral: CBMPeripheral, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-9oxtp","title":"func centralManager(CBMCentralManager, didDiscover: CBMPeripheral, advertisementData: [String : Any], rssi: NSNumber)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:diddiscover:advertisementdata:rssi:)-oz3n","title":"func centralManager(CBMCentralManager, didDiscover: CBMPeripheral, advertisementData: [String : Any], rssi: NSNumber)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-9sppj","title":"func centralManager(CBMCentralManager, didFailToConnect: CBMPeripheral, error: Error?)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didfailtoconnect:error:)-2h1bb","title":"func centralManager(CBMCentralManager, didFailToConnect: CBMPeripheral, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-8t3sl","title":"func centralManager(CBMCentralManager, didUpdateANCSAuthorizationFor: CBMPeripheral)","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:didupdateancsauthorizationfor:)-6msdh","title":"func centralManager(CBMCentralManager, didUpdateANCSAuthorizationFor: CBMPeripheral)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-4zyhg","title":"func centralManager(CBMCentralManager, willRestoreState: [String : Any])","type":"method"}],"title":"CBMCentralManagerDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanager(_:willrestorestate:)-9qavl","title":"func centralManager(CBMCentralManager, willRestoreState: [String : Any])","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate\/centralmanagerdidupdatestate(_:)","title":"func centralManagerDidUpdateState(CBMCentralManager)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegate","title":"CBMCentralManagerDelegate","type":"protocol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/connectioneventdidoccur","title":"var connectionEventDidOccur: ((CBMCentralManager, CBMConnectionEvent, CBMPeripheral) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didconnect","title":"var didConnect: ((CBMCentralManager, CBMPeripheral) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddisconnect","title":"var didDisconnect: ((CBMCentralManager, CBMPeripheral, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/diddiscoverperipheral","title":"var didDiscoverPeripheral: ((CBMCentralManager, CBMPeripheral, [String : Any], NSNumber) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didfailtoconnect","title":"var didFailToConnect: ((CBMCentralManager, CBMPeripheral, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdateancsauthorization","title":"var didUpdateANCSAuthorization: ((CBMCentralManager, CBMPeripheral) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/didupdatestate","title":"var didUpdateState: ((CBMCentralManager) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/willrestorestate","title":"var willRestoreState: ((CBMCentralManager, [String : Any]) -> ())?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:connectioneventdidoccur:for:)","title":"func centralManager(CBMCentralManager, connectionEventDidOccur: CBMConnectionEvent, for: CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didconnect:)","title":"func centralManager(CBMCentralManager, didConnect: CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddisconnectperipheral:error:)","title":"func centralManager(CBMCentralManager, didDisconnectPeripheral: CBMPeripheral, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:diddiscover:advertisementdata:rssi:)","title":"func centralManager(CBMCentralManager, didDiscover: CBMPeripheral, advertisementData: [String : Any], rssi: NSNumber)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didfailtoconnect:error:)","title":"func centralManager(CBMCentralManager, didFailToConnect: CBMPeripheral, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:didupdateancsauthorizationfor:)","title":"func centralManager(CBMCentralManager, didUpdateANCSAuthorizationFor: CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanager(_:willrestorestate:)","title":"func centralManager(CBMCentralManager, willRestoreState: [String : Any])","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy\/centralmanagerdidupdatestate(_:)","title":"func centralManagerDidUpdateState(CBMCentralManager)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerdelegateproxy","title":"CBMCentralManagerDelegateProxy","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init()","title":"init()","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:)","title":"init(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?)","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/init(delegate:queue:options:)","title":"init(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?, options: [String : Any]?)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"deprecated":true,"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.property","title":"var authorization: CBMManagerAuthorization","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/state","title":"var state: CBMManagerState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/cancelperipheralconnection(_:)","title":"func cancelPeripheralConnection(CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/connect(_:options:)","title":"func connect(CBMPeripheral, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveconnectedperipherals(withservices:)","title":"func retrieveConnectedPeripherals(withServices: [CBMUUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/retrieveperipherals(withidentifiers:)","title":"func retrievePeripherals(withIdentifiers: [UUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/scanforperipherals(withservices:options:)","title":"func scanForPeripherals(withServices: [CBMUUID]?, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/stopscan()","title":"func stopScan()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/authorization-swift.type.property","title":"class var authorization: CBMManagerAuthorization","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatestaterestoration","title":"static var simulateStateRestoration: ((String) -> [String : Any]?)?","type":"property"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateauthorization(_:)","title":"static func simulateAuthorization(CBMManagerAuthorization)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateinitialstate(_:)","title":"static func simulateInitialState(CBMManagerState)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulateperipherals(_:)","title":"static func simulatePeripherals([CBMPeripheralSpec])","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweroff()","title":"static func simulatePowerOff()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/simulatepoweron()","title":"static func simulatePowerOn()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock\/teardownsimulation()","title":"static func tearDownSimulation()","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagermock","title":"CBMCentralManagerMock","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init()","title":"init()","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:)","title":"init(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?)","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/init(delegate:queue:options:)","title":"init(delegate: CBMCentralManagerDelegate?, queue: DispatchQueue?, options: [String : Any]?)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"deprecated":true,"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.property","title":"var authorization: CBMManagerAuthorization","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/isscanning","title":"var isScanning: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/state","title":"var state: CBMManagerState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/cancelperipheralconnection(_:)","title":"func cancelPeripheralConnection(CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/connect(_:options:)","title":"func connect(CBMPeripheral, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveconnectedperipherals(withservices:)","title":"func retrieveConnectedPeripherals(withServices: [CBMUUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/retrieveperipherals(withidentifiers:)","title":"func retrievePeripherals(withIdentifiers: [UUID]) -> [CBMPeripheral]","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/scanforperipherals(withservices:options:)","title":"func scanForPeripherals(withServices: [CBMUUID]?, options: [String : Any]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/stopscan()","title":"func stopScan()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative\/authorization-swift.type.property","title":"class var authorization: CBMManagerAuthorization","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagernative","title":"CBMCentralManagerNative","type":"class"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredoff","title":"case poweredOff","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/poweredon","title":"case poweredOn","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/resetting","title":"case resetting","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unauthorized","title":"case unauthorized","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unknown","title":"case unknown","type":"case"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/unsupported","title":"case unsupported","type":"case"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/init(rawvalue:)","title":"init?(rawValue: Int)","type":"init"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hashvalue","title":"var hashValue: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate\/rawrepresentable-implementations","title":"RawRepresentable Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmmanagerstate","title":"CBMManagerState","type":"enum"},{"path":"\/documentation\/corebluetoothmock\/cbmmanagerauthorization","title":"CBMManagerAuthorization","type":"typealias"},{"title":"Central Manager Initialization Options","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionrestoreidentifierkey","title":"let CBMCentralManagerOptionRestoreIdentifierKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanageroptionshowpoweralertkey","title":"let CBMCentralManagerOptionShowPowerAlertKey: String","type":"var"},{"title":"Central Manager State Restoration Options","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstateperipheralskey","title":"let CBMCentralManagerRestoredStatePeripheralsKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanserviceskey","title":"let CBMCentralManagerRestoredStateScanServicesKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerrestoredstatescanoptionskey","title":"let CBMCentralManagerRestoredStateScanOptionsKey: String","type":"var"},{"title":"Peripheral","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmpeer","title":"CBMPeer","type":"class"},{"children":[{"title":"Identifying a Peripheral","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/identifier","title":"var identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/delegate","title":"var delegate: CBMPeripheralDelegate?","type":"property"},{"title":"Discovering Services","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverservices(_:)","title":"func discoverServices([CBMUUID]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverincludedservices(_:for:)","title":"func discoverIncludedServices([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/services","title":"var services: [CBMService]?","type":"property"},{"title":"Discovering Characteristics and Descriptors","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/discovercharacteristics(_:for:)","title":"func discoverCharacteristics([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/discoverdescriptors(for:)","title":"func discoverDescriptors(for: CBMCharacteristic)","type":"method"},{"title":"Reading Characteristic and Descriptor Values","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-1hqxp","title":"func readValue(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/readvalue(for:)-3xyb1","title":"func readValue(for: CBMDescriptor)","type":"method"},{"title":"Writing Characteristic and Descriptor Values","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:type:)","title":"func writeValue(Data, for: CBMCharacteristic, type: CBMCharacteristicWriteType)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/writevalue(_:for:)","title":"func writeValue(Data, for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/maximumwritevaluelength(for:)","title":"func maximumWriteValueLength(for: CBMCharacteristicWriteType) -> Int","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"typealias"},{"title":"Setting Notifications for a Characteristic’s Value","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/setnotifyvalue(_:for:)","title":"func setNotifyValue(Bool, for: CBMCharacteristic)","type":"method"},{"title":"Monitoring a Peripheral’s Connection State","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/state","title":"var state: CBMPeripheralState","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralstate","title":"CBMPeripheralState","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/cansendwritewithoutresponse","title":"var canSendWriteWithoutResponse: Bool","type":"property"},{"title":"Accessing a Peripheral’s Signal Strength","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheral\/readrssi()","title":"func readRSSI()","type":"method"},{"title":"Working with L2CAP Channels","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbml2cappsm","title":"CBML2CAPPSM","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbml2capchannel","title":"CBML2CAPChannel","type":"typealias"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheral","title":"CBMPeripheral","type":"protocol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-1kooc","title":"func peripheral(CBMPeripheral, didDiscoverCharacteristicsFor: CBMService, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscovercharacteristicsfor:error:)-2pyjk","title":"func peripheral(CBMPeripheral, didDiscoverCharacteristicsFor: CBMService, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-8554j","title":"func peripheral(CBMPeripheral, didDiscoverDescriptorsFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverdescriptorsfor:error:)-240qo","title":"func peripheral(CBMPeripheral, didDiscoverDescriptorsFor: CBMCharacteristic, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-g4lr","title":"func peripheral(CBMPeripheral, didDiscoverIncludedServicesFor: CBMService, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverincludedservicesfor:error:)-6b62q","title":"func peripheral(CBMPeripheral, didDiscoverIncludedServicesFor: CBMService, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-7annk","title":"func peripheral(CBMPeripheral, didDiscoverServices: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:diddiscoverservices:)-6mi4k","title":"func peripheral(CBMPeripheral, didDiscoverServices: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-1pvuz","title":"func peripheral(CBMPeripheral, didModifyServices: [CBMService])","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didmodifyservices:)-9i6xy","title":"func peripheral(CBMPeripheral, didModifyServices: [CBMService])","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-tise","title":"func peripheral(CBMPeripheral, didOpen: CBML2CAPChannel?, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didopen:error:)-8ac1d","title":"func peripheral(CBMPeripheral, didOpen: CBML2CAPChannel?, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7xmo2","title":"func peripheral(CBMPeripheral, didReadRSSI: NSNumber, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didreadrssi:error:)-7zu2o","title":"func peripheral(CBMPeripheral, didReadRSSI: NSNumber, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-5tl1y","title":"func peripheral(CBMPeripheral, didUpdateNotificationStateFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatenotificationstatefor:error:)-9ryr0","title":"func peripheral(CBMPeripheral, didUpdateNotificationStateFor: CBMCharacteristic, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2xce0","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-62302","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-2bu3j","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didupdatevaluefor:error:)-73y6k","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-86kdv","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-3ghoi","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-2aalw","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheral(_:didwritevaluefor:error:)-90cp","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-klf8","title":"func peripheralDidUpdateName(CBMPeripheral)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheraldidupdatename(_:)-4r9dx","title":"func peripheralDidUpdateName(CBMPeripheral)","type":"method"},{"children":[{"children":[{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-2cz0i","title":"func peripheralIsReady(toSendWriteWithoutResponse: CBMPeripheral)","type":"method"}],"title":"CBMPeripheralDelegate Implementations","type":"groupMarker"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate\/peripheralisready(tosendwritewithoutresponse:)-1nvtl","title":"func peripheralIsReady(toSendWriteWithoutResponse: CBMPeripheral)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegate","title":"CBMPeripheralDelegate","type":"protocol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscovercharacteristics","title":"var didDiscoverCharacteristics: ((CBMPeripheral, CBMService, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverdescriptors","title":"var didDiscoverDescriptors: ((CBMPeripheral, CBMCharacteristic, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverincludedservices","title":"var didDiscoverIncludedServices: ((CBMPeripheral, CBMService, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/diddiscoverservices","title":"var didDiscoverServices: ((CBMPeripheral, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didmodifyservices","title":"var didModifyServices: ((CBMPeripheral, [CBMService]) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didreadrssi","title":"var didReadRSSI: ((CBMPeripheral, NSNumber, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatecharacteristicvalue","title":"var didUpdateCharacteristicValue: ((CBMPeripheral, CBMCharacteristic, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatedescriptorvalue","title":"var didUpdateDescriptorValue: ((CBMPeripheral, CBMDescriptor, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatename","title":"var didUpdateName: ((CBMPeripheral) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didupdatenotificationstate","title":"var didUpdateNotificationState: ((CBMPeripheral, CBMCharacteristic, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritecharacteristicvalue","title":"var didWriteCharacteristicValue: ((CBMPeripheral, CBMCharacteristic, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/didwritedescriptorvalue","title":"var didWriteDescriptorValue: ((CBMPeripheral, CBMDescriptor, Error?) -> ())?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/isreadytosendwritewithoutresponse","title":"var isReadyToSendWriteWithoutResponse: ((CBMPeripheral) -> ())?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscovercharacteristicsfor:error:)","title":"func peripheral(CBMPeripheral, didDiscoverCharacteristicsFor: CBMService, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverdescriptorsfor:error:)","title":"func peripheral(CBMPeripheral, didDiscoverDescriptorsFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverincludedservicesfor:error:)","title":"func peripheral(CBMPeripheral, didDiscoverIncludedServicesFor: CBMService, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:diddiscoverservices:)","title":"func peripheral(CBMPeripheral, didDiscoverServices: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didmodifyservices:)","title":"func peripheral(CBMPeripheral, didModifyServices: [CBMService])","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didreadrssi:error:)","title":"func peripheral(CBMPeripheral, didReadRSSI: NSNumber, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatenotificationstatefor:error:)","title":"func peripheral(CBMPeripheral, didUpdateNotificationStateFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-6bw1b","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-88um0","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2fdon","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-9twsk","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheraldidupdatename(_:)","title":"func peripheralDidUpdateName(CBMPeripheral)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheralisready(tosendwritewithoutresponse:)","title":"func peripheralIsReady(toSendWriteWithoutResponse: CBMPeripheral)","type":"method"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didopen:error:)","title":"func peripheral(CBMPeripheral, didOpen: CBML2CAPChannel?, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-7ocld","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMDescriptor, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didupdatevaluefor:error:)-nw91","title":"func peripheral(CBMPeripheral, didUpdateValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-2gkk4","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMCharacteristic, error: Error?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/peripheral(_:didwritevaluefor:error:)-eh78","title":"func peripheral(CBMPeripheral, didWriteValueFor: CBMDescriptor, error: Error?)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy\/cbmperipheraldelegate-implementations","title":"CBMPeripheralDelegate Implementations","type":"symbol"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxy","title":"CBMPeripheralDelegateProxy","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/didopenchannel","title":"var didOpenChannel: ((CBMPeripheral, CBML2CAPChannel?, Error?) -> ())?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel\/peripheral(_:didopen:error:)","title":"func peripheral(CBMPeripheral, didOpen: CBML2CAPChannel?, error: Error?)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheraldelegateproxywithl2capchannel","title":"CBMPeripheralDelegateProxyWithL2CAPChannel","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/ancsauthorized","title":"var ancsAuthorized: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/cansendwritewithoutresponse","title":"var canSendWriteWithoutResponse: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/delegate","title":"var delegate: CBMPeripheralDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/hash","title":"var hash: Int","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/identifier","title":"var identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/services","title":"var services: [CBMService]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/state","title":"var state: CBMPeripheralState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discovercharacteristics(_:for:)","title":"func discoverCharacteristics([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverdescriptors(for:)","title":"func discoverDescriptors(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverincludedservices(_:for:)","title":"func discoverIncludedServices([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/discoverservices(_:)","title":"func discoverServices([CBMUUID]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/maximumwritevaluelength(for:)","title":"func maximumWriteValueLength(for: CBMCharacteristicWriteType) -> Int","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/openl2capchannel(_:)","title":"func openL2CAPChannel(CBML2CAPPSM)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readrssi()","title":"func readRSSI()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-29us6","title":"func readValue(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/readvalue(for:)-9on43","title":"func readValue(for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/setnotifyvalue(_:for:)","title":"func setNotifyValue(Bool, for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:)","title":"func writeValue(Data, for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock\/writevalue(_:for:type:)","title":"func writeValue(Data, for: CBMCharacteristic, type: CBMCharacteristicWriteType)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralmock","title":"CBMPeripheralMock","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/cansendwritewithoutresponse","title":"var canSendWriteWithoutResponse: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/delegate","title":"var delegate: CBMPeripheralDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/hash","title":"var hash: Int","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/identifier","title":"var identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/peripheral","title":"let peripheral: CBPeripheral","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/services","title":"var services: [CBMService]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/state","title":"var state: CBMPeripheralState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discovercharacteristics(_:for:)","title":"func discoverCharacteristics([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverdescriptors(for:)","title":"func discoverDescriptors(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverincludedservices(_:for:)","title":"func discoverIncludedServices([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/discoverservices(_:)","title":"func discoverServices([CBMUUID]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/maximumwritevaluelength(for:)","title":"func maximumWriteValueLength(for: CBMCharacteristicWriteType) -> Int","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readrssi()","title":"func readRSSI()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-65lsz","title":"func readValue(for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/readvalue(for:)-b1qu","title":"func readValue(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/setnotifyvalue(_:for:)","title":"func setNotifyValue(Bool, for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:)","title":"func writeValue(Data, for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative\/writevalue(_:for:type:)","title":"func writeValue(Data, for: CBMCharacteristic, type: CBMCharacteristicWriteType)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralnative","title":"CBMPeripheralNative","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/init(_:state:)","title":"init(CBMPeripheralSpec, state: CBMPeripheralState)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/ancsauthorized","title":"let ancsAuthorized: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/cansendwritewithoutresponse","title":"let canSendWriteWithoutResponse: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/delegate","title":"var delegate: CBMPeripheralDelegate?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/identifier","title":"let identifier: UUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/name","title":"var name: String?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/services","title":"var services: [CBMService]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/state","title":"var state: CBMPeripheralState","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discovercharacteristics(_:for:)","title":"func discoverCharacteristics([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverdescriptors(for:)","title":"func discoverDescriptors(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverincludedservices(_:for:)","title":"func discoverIncludedServices([CBMUUID]?, for: CBMService)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/discoverservices(_:)","title":"func discoverServices([CBMUUID]?)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/maximumwritevaluelength(for:)","title":"func maximumWriteValueLength(for: CBMCharacteristicWriteType) -> Int","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/openl2capchannel(_:)","title":"func openL2CAPChannel(CBML2CAPPSM)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readrssi()","title":"func readRSSI()","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-5cb2u","title":"func readValue(for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/readvalue(for:)-kuta","title":"func readValue(for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/setnotifyvalue(_:for:)","title":"func setNotifyValue(Bool, for: CBMCharacteristic)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:)","title":"func writeValue(Data, for: CBMDescriptor)","type":"method"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview\/writevalue(_:for:type:)","title":"func writeValue(Data, for: CBMCharacteristic, type: CBMCharacteristicWriteType)","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmperipheralpreview","title":"CBMPeripheralPreview","type":"class"},{"path":"\/documentation\/corebluetoothmock\/cbmperipheralstate","title":"CBMPeripheralState","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbml2cappsm","title":"CBML2CAPPSM","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbml2capchannel","title":"CBML2CAPChannel","type":"typealias"},{"title":"Peripheral Connection Options","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonconnectionkey","title":"let CBMConnectPeripheralOptionNotifyOnConnectionKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyondisconnectionkey","title":"let CBMConnectPeripheralOptionNotifyOnDisconnectionKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionnotifyonnotificationkey","title":"let CBMConnectPeripheralOptionNotifyOnNotificationKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmconnectperipheraloptionstartdelaykey","title":"let CBMConnectPeripheralOptionStartDelayKey: String","type":"var"},{"title":"Attributes","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmattribute","title":"CBMAttribute","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/characteristics","title":"var characteristics: [CBMCharacteristic]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/includedservices","title":"var includedServices: [CBMService]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/isprimary","title":"var isPrimary: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/peripheral","title":"var peripheral: CBMPeripheral?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmservice\/uuid","title":"var uuid: CBMUUID","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmservice","title":"CBMService","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-255jq","title":"init(type: CBMUUID, primary: Bool, includedService: [CBMServiceMock]?, characteristics: [CBMCharacteristicMock]?)","type":"init"},{"path":"\/documentation\/corebluetoothmock\/cbmservicemock\/init(type:primary:includedservice:characteristics:)-2pj4o","title":"convenience init(type: CBMUUID, primary: Bool, includedService: CBMServiceMock..., characteristics: CBMCharacteristicMock...)","type":"init"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmservicemock\/isequal(_:)","title":"func isEqual(Any?) -> Bool","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmservicemock","title":"CBMServiceMock","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/descriptors","title":"var descriptors: [CBMDescriptor]?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/isnotifying","title":"var isNotifying: Bool","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/properties","title":"let properties: CBMCharacteristicProperties","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/service","title":"var service: CBMService?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/uuid","title":"var uuid: CBMUUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic\/value","title":"var value: Data?","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmcharacteristic","title":"CBMCharacteristic","type":"class"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicwritetype","title":"CBMCharacteristicWriteType","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicproperties","title":"CBMCharacteristicProperties","type":"typealias"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/init(type:properties:descriptors:)","title":"init(type: CBMUUID, properties: CBMCharacteristicProperties, descriptors: CBMDescriptorMock...)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/descriptors","title":"var descriptors: [CBMDescriptor]?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock\/isequal(_:)","title":"func isEqual(Any?) -> Bool","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmcharacteristicmock","title":"CBMCharacteristicMock","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptor\/characteristic","title":"var characteristic: CBMCharacteristic?","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptor\/uuid","title":"var uuid: CBMUUID","type":"property"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptor\/value","title":"var value: Any?","type":"property"}],"path":"\/documentation\/corebluetoothmock\/cbmdescriptor","title":"CBMDescriptor","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/init(type:)","title":"init(type: CBMUUID)","type":"init"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmdescriptormock\/isequal(_:)","title":"func isEqual(Any?) -> Bool","type":"method"}],"path":"\/documentation\/corebluetoothmock\/cbmdescriptormock","title":"CBMDescriptorMock","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock\/init()","title":"init()","type":"init"}],"path":"\/documentation\/corebluetoothmock\/cbmclientcharacteristicconfigurationdescriptormock","title":"CBMClientCharacteristicConfigurationDescriptorMock","type":"class"},{"path":"\/documentation\/corebluetoothmock\/cbmcccdescriptormock","title":"CBMCCCDescriptorMock","type":"typealias"},{"title":"Scanning options","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionallowduplicateskey","title":"let CBMCentralManagerScanOptionAllowDuplicatesKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmcentralmanagerscanoptionsolicitedserviceuuidskey","title":"let CBMCentralManagerScanOptionSolicitedServiceUUIDsKey: String","type":"var"},{"title":"Advertisement Data Retrieval Keys","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdatalocalnamekey","title":"let CBMAdvertisementDataLocalNameKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdatamanufacturerdatakey","title":"let CBMAdvertisementDataManufacturerDataKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdataservicedatakey","title":"let CBMAdvertisementDataServiceDataKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdataserviceuuidskey","title":"let CBMAdvertisementDataServiceUUIDsKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdataoverflowserviceuuidskey","title":"let CBMAdvertisementDataOverflowServiceUUIDsKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdatatxpowerlevelkey","title":"let CBMAdvertisementDataTxPowerLevelKey: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdataisconnectable","title":"let CBMAdvertisementDataIsConnectable: String","type":"var"},{"path":"\/documentation\/corebluetoothmock\/cbmadvertisementdatasolicitedserviceuuidskey","title":"let CBMAdvertisementDataSolicitedServiceUUIDsKey: String","type":"var"},{"title":"Other","type":"groupMarker"},{"path":"\/documentation\/corebluetoothmock\/cbmuuid","title":"CBMUUID","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmerror","title":"CBMError","type":"typealias"},{"path":"\/documentation\/corebluetoothmock\/cbmatterror","title":"CBMATTError","type":"typealias"}],"path":"\/documentation\/corebluetoothmock","title":"CoreBluetoothMock","type":"module"}]},"schemaVersion":{"major":0,"minor":1,"patch":1}} \ No newline at end of file diff --git a/docs/js/chunk-384ef189.bb1ed903.js b/docs/js/chunk-384ef189.bb1ed903.js deleted file mode 100644 index 548fde9..0000000 --- a/docs/js/chunk-384ef189.bb1ed903.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-384ef189"],{"00b4":function(e,t,n){"use strict";var a,r,i,o,s,c,l,d,p=n("7b1f"),u={name:"ChangedToken",render(e){const{kind:t,tokens:n}=this;return e("span",{class:["token-"+t,"token-changed"]},n.map(t=>e(F,{props:t})))},props:{kind:{type:String,required:!0},tokens:{type:Array,required:!0}}},f=u,m=n("2877"),h=Object(m["a"])(f,a,r,!1,null,null,null),b=h.exports,g={name:"RawText",render(e){const{_v:t=(t=>e("span",t)),text:n}=this;return t(n)},props:{text:{type:String,required:!0}}},v=g,y=Object(m["a"])(v,i,o,!1,null,null,null),k=y.exports,C={name:"SyntaxToken",render(e){return e("span",{class:"token-"+this.kind},this.text)},props:{kind:{type:String,required:!0},text:{type:String,required:!0}}},_=C,x=Object(m["a"])(_,s,c,!1,null,null,null),O=x.exports,B=n("86d8"),T={name:"TypeIdentifierLink",inject:{references:{default(){return{}}}},render(e){const t="type-identifier-link",n=this.references[this.identifier];return n&&n.url?e(B["a"],{class:t,props:{url:n.url,kind:n.kind,role:n.role}},this.$slots.default):e("span",{class:t},this.$slots.default)},props:{identifier:{type:String,required:!0,default:()=>""}}},S=T,I=Object(m["a"])(S,l,d,!1,null,null,null),j=I.exports;const q={attribute:"attribute",externalParam:"externalParam",genericParameter:"genericParameter",identifier:"identifier",internalParam:"internalParam",keyword:"keyword",label:"label",number:"number",string:"string",text:"text",typeIdentifier:"typeIdentifier",added:"added",removed:"removed"};var w,A,$={name:"DeclarationToken",render(e){const{kind:t,text:n,tokens:a}=this;switch(t){case q.text:{const t={text:n};return e(k,{props:t})}case q.typeIdentifier:{const t={identifier:this.identifier};return e(j,{props:t},[e(p["a"],n)])}case q.added:case q.removed:return e(b,{props:{tokens:a,kind:t}});default:{const a={kind:t,text:n};return e(O,{props:a})}}},constants:{TokenKind:q},props:{kind:{type:String,required:!0},identifier:{type:String,required:!1},text:{type:String,required:!1},tokens:{type:Array,required:!1,default:()=>[]}}},D=$,P=(n("c36f"),Object(m["a"])(D,w,A,!1,null,"5caf1b5b",null)),F=t["a"]=P.exports},"036f":function(e,t,n){"use strict";n("7395")},"18b8":function(e,t,n){},"2a18":function(e,t,n){"use strict";n.r(t);var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"link-block",class:e.linkBlockClasses},[n(e.linkComponent,e._b({ref:"apiChangesDiff",tag:"component",staticClass:"link",class:e.linkClasses},"component",e.linkProps,!1),[e.topic.role&&!e.change?n("TopicLinkBlockIcon",{attrs:{role:e.topic.role,imageOverride:e.references[e.iconOverride]}}):e._e(),e.topic.fragments?n("DecoratedTopicTitle",{attrs:{tokens:e.topic.fragments}}):n("WordBreak",{attrs:{tag:e.titleTag}},[e._v(e._s(e.topic.title))]),e.change?n("span",{staticClass:"visuallyhidden"},[e._v("- "+e._s(e.changeName))]):e._e()],1),e.hasAbstractElements?n("div",{staticClass:"abstract"},[e.topic.abstract?n("ContentNode",{attrs:{content:e.topic.abstract}}):e._e(),e.topic.ideTitle?n("div",{staticClass:"topic-keyinfo"},[e.topic.titleStyle===e.titleStyles.title?[n("strong",[e._v("Key:")]),e._v(" "+e._s(e.topic.name)+" ")]:e.topic.titleStyle===e.titleStyles.symbol?[n("strong",[e._v("Name:")]),e._v(" "+e._s(e.topic.ideTitle)+" ")]:e._e()],2):e._e(),e.topic.required||e.topic.defaultImplementations?n("RequirementMetadata",{staticClass:"topic-required",attrs:{defaultImplementationsCount:e.topic.defaultImplementations}}):e._e(),e.topic.conformance?n("ConditionalConstraints",{attrs:{constraints:e.topic.conformance.constraints,prefix:e.topic.conformance.availabilityPrefix}}):e._e()],1):e._e(),e.showDeprecatedBadge?n("Badge",{attrs:{variant:"deprecated"}}):e.showBetaBadge?n("Badge",{attrs:{variant:"beta"}}):e._e(),e._l(e.tags,(function(t){return n("Badge",{key:t.type+"-"+t.text,attrs:{variant:t.type}},[e._v(" "+e._s(t.text)+" ")])}))],2)},r=[],i=n("66cd"),o=n("d26a"),s=n("a0fd"),c=n("7b1f"),l=n("6359"),d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.imageOverride||e.icon?n("div",{staticClass:"topic-icon-wrapper"},[e.imageOverride?n("OverridableAsset",{staticClass:"topic-icon",attrs:{imageOverride:e.imageOverride}}):e.icon?n(e.icon,{tag:"component",staticClass:"topic-icon"}):e._e()],1):e._e()},p=[],u=n("a9f1"),f=n("3b96"),m=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"api-reference-icon",attrs:{viewBox:"0 0 14 14",themeId:"api-reference"}},[n("title",[e._v("API Reference")]),n("path",{attrs:{d:"m1 1v12h12v-12zm11 11h-10v-10h10z"}}),n("path",{attrs:{d:"m3 4h8v1h-8zm0 2.5h8v1h-8zm0 2.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 4h8v1h-8z"}}),n("path",{attrs:{d:"m3 6.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 9h8v1h-8z"}})])},h=[],b=n("be08"),g={name:"APIReferenceIcon",components:{SVGIcon:b["a"]}},v=g,y=n("2877"),k=Object(y["a"])(v,m,h,!1,null,null,null),C=k.exports,_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",themeId:"endpoint"}},[n("title",[e._v("Web Service Endpoint")]),n("path",{attrs:{d:"M4.052 8.737h-1.242l-1.878 5.263h1.15l0.364-1.081h1.939l0.339 1.081h1.193zM2.746 12.012l0.678-2.071 0.653 2.071z"}}),n("path",{attrs:{d:"M11.969 8.737h1.093v5.263h-1.093v-5.263z"}}),n("path",{attrs:{d:"M9.198 8.737h-2.295v5.263h1.095v-1.892h1.12c0.040 0.003 0.087 0.004 0.134 0.004 0.455 0 0.875-0.146 1.217-0.394l-0.006 0.004c0.296-0.293 0.48-0.699 0.48-1.148 0-0.060-0.003-0.118-0.010-0.176l0.001 0.007c0.003-0.039 0.005-0.085 0.005-0.131 0-0.442-0.183-0.842-0.476-1.128l-0-0c-0.317-0.256-0.724-0.41-1.168-0.41-0.034 0-0.069 0.001-0.102 0.003l0.005-0zM9.628 11.014c-0.15 0.118-0.341 0.188-0.548 0.188-0.020 0-0.040-0.001-0.060-0.002l0.003 0h-1.026v-1.549h1.026c0.017-0.001 0.037-0.002 0.058-0.002 0.206 0 0.396 0.066 0.551 0.178l-0.003-0.002c0.135 0.13 0.219 0.313 0.219 0.515 0 0.025-0.001 0.050-0.004 0.074l0-0.003c0.002 0.020 0.003 0.044 0.003 0.068 0 0.208-0.083 0.396-0.219 0.534l0-0z"}}),n("path",{attrs:{d:"M13.529 4.981c0-1.375-1.114-2.489-2.489-2.49h-0l-0.134 0.005c-0.526-1.466-1.903-2.496-3.522-2.496-0.892 0-1.711 0.313-2.353 0.835l0.007-0.005c-0.312-0.243-0.709-0.389-1.14-0.389-1.030 0-1.865 0.834-1.866 1.864v0c0 0.001 0 0.003 0 0.004 0 0.123 0.012 0.242 0.036 0.358l-0.002-0.012c-0.94 0.37-1.593 1.27-1.593 2.323 0 1.372 1.11 2.485 2.482 2.49h8.243c1.306-0.084 2.333-1.164 2.333-2.484 0-0.001 0-0.002 0-0.003v0zM11.139 6.535h-8.319c-0.799-0.072-1.421-0.739-1.421-1.551 0-0.659 0.41-1.223 0.988-1.45l0.011-0.004 0.734-0.28-0.148-0.776-0.012-0.082v-0.088c0-0 0-0.001 0-0.001 0-0.515 0.418-0.933 0.933-0.933 0.216 0 0.416 0.074 0.574 0.197l-0.002-0.002 0.584 0.453 0.575-0.467 0.169-0.127c0.442-0.306 0.991-0.489 1.581-0.489 1.211 0 2.243 0.769 2.633 1.846l0.006 0.019 0.226 0.642 0.814-0.023 0.131 0.006c0.805 0.067 1.432 0.736 1.432 1.552 0 0.836-0.659 1.518-1.486 1.556l-0.003 0z"}})])},x=[],O={name:"EndpointIcon",components:{SVGIcon:b["a"]}},B=O,T=Object(y["a"])(B,_,x,!1,null,null,null),S=T.exports,I=n("a295"),j=n("8d2d"),q=n("fdd9");const w={[i["a"].article]:u["a"],[i["a"].collectionGroup]:C,[i["a"].learn]:I["a"],[i["a"].overview]:I["a"],[i["a"].project]:j["a"],[i["a"].tutorial]:j["a"],[i["a"].resources]:I["a"],[i["a"].sampleCode]:f["a"],[i["a"].restRequestSymbol]:S};var A={components:{OverridableAsset:q["a"],SVGIcon:b["a"]},props:{role:{type:String,required:!0},imageOverride:{type:Object,default:null}},computed:{icon:({role:e})=>w[e]}},$=A,D=(n("83a8"),Object(y["a"])($,d,p,!1,null,"384630c1",null)),P=D.exports,F=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("code",{staticClass:"decorated-title"},e._l(e.tokens,(function(t,a){return n(e.componentFor(t),{key:a,tag:"component",class:[e.classFor(t),e.emptyTokenClass(t)]},[e._v(e._s(t.text))])})),1)},z=[],E=n("00b4");const{TokenKind:M}=E["a"].constants,N={decorator:"decorator",identifier:"identifier",label:"label"};var R={name:"DecoratedTopicTitle",components:{WordBreak:c["a"]},props:{tokens:{type:Array,required:!0,default:()=>[]}},constants:{TokenKind:M},methods:{emptyTokenClass:({text:e})=>({"empty-token":" "===e}),classFor({kind:e}){switch(e){case M.externalParam:case M.identifier:return N.identifier;case M.label:return N.label;default:return N.decorator}},componentFor(e){return/^\s+$/.test(e.text)?"span":c["a"]}}},V=R,L=(n("dcf6"),Object(y["a"])(V,F,z,!1,null,"06ec7395",null)),W=L.exports,G=n("64cf"),K=n("e8ea"),H=n("5d59");const J={article:"article",symbol:"symbol"},X={title:"title",symbol:"symbol"},Q={link:"link"};var U={name:"TopicsLinkBlock",components:{Badge:s["a"],WordBreak:c["a"],ContentNode:l["a"],TopicLinkBlockIcon:P,DecoratedTopicTitle:W,RequirementMetadata:K["a"],ConditionalConstraints:G["a"]},inject:["store","references"],mixins:[H["b"],H["a"]],constants:{ReferenceType:Q,TopicKind:J,TitleStyles:X},props:{isSymbolBeta:Boolean,isSymbolDeprecated:Boolean,topic:{type:Object,required:!0,validator:e=>(!("abstract"in e)||Array.isArray(e.abstract))&&"string"===typeof e.identifier&&(e.type===Q.link&&!e.kind||"string"===typeof e.kind)&&(e.type===Q.link&&!e.role||"string"===typeof e.role)&&"string"===typeof e.title&&"string"===typeof e.url&&(!("defaultImplementations"in e)||"number"===typeof e.defaultImplementations)&&(!("required"in e)||"boolean"===typeof e.required)&&(!("conformance"in e)||"object"===typeof e.conformance)}},data(){return{state:this.store.state}},computed:{linkComponent:({topic:e})=>e.type===Q.link?"a":"router-link",linkProps({topic:e}){const t=Object(o["b"])(e.url,this.$route.query);return e.type===Q.link?{href:t}:{to:t}},linkBlockClasses:({changesClasses:e,hasAbstractElements:t,hasMultipleLinesAfterAPIChanges:n,multipleLinesClass:a})=>({"has-inline-element":!t,[a]:n,...!t&&e}),linkClasses:({changesClasses:e,deprecated:t,hasAbstractElements:n})=>({deprecated:t,"has-adjacent-elements":n,...n&&e}),changesClasses:({getChangesClasses:e,change:t})=>e(t),titleTag({topic:e}){if(e.titleStyle===X.title)return e.ideTitle?"span":"code";if(e.role&&(e.role===i["a"].collection||e.role===i["a"].dictionarySymbol))return"span";switch(e.kind){case J.symbol:return"code";default:return"span"}},titleStyles:()=>X,deprecated:({showDeprecatedBadge:e,topic:t})=>e||t.deprecated,showBetaBadge:({topic:e,isSymbolBeta:t})=>Boolean(!t&&e.beta),showDeprecatedBadge:({topic:e,isSymbolDeprecated:t})=>Boolean(!t&&e.deprecated),change({topic:{identifier:e},state:{apiChanges:t}}){return this.changeFor(e,t)},changeName:({change:e,getChangeName:t})=>t(e),hasAbstractElements:({topic:{abstract:e,conformance:t,required:n,defaultImplementations:a}}={})=>e&&e.length>0||t||n||a,tags:({topic:e})=>(e.tags||[]).slice(0,1),iconOverride:({topic:{images:e=[]}})=>{const t=e.find(({type:e})=>"icon"===e);return t?t.identifier:null}}},Y=U,Z=(n("036f"),Object(y["a"])(Y,a,r,!1,null,"750aa7a8",null));t["default"]=Z.exports},"2f04":function(e,t,n){},3484:function(e,t,n){"use strict";n("18b8")},"5a86":function(e,t,n){"use strict";n("fab0")},"5d59":function(e,t,n){"use strict";n.d(t,"a",(function(){return c})),n.d(t,"b",(function(){return l}));var a=n("b5cf"),r=n("9055"),i=n("beb1");const o="latest_",s={xcode:{value:"xcode",label:"Xcode"},other:{value:"other",label:"Other"}},c={constants:{multipleLinesClass:r["a"]},data(){return{multipleLinesClass:r["a"]}},computed:{hasMultipleLinesAfterAPIChanges:({change:e,changeType:t,$refs:n})=>!(!e&&!t)&&Object(i["a"])(n.apiChangesDiff)}},l={methods:{toVersionRange({platform:e,versions:t}){return`${e} ${t[0]} – ${e} ${t[1]}`},toOptionValue:e=>`${o}${e}`,toScope:e=>e.slice(o.length,e.length),getOptionsForDiffAvailability(e={}){return this.getOptionsForDiffAvailabilities([e])},getOptionsForDiffAvailabilities(e=[]){const t=e.reduce((e,t={})=>Object.keys(t).reduce((e,n)=>({...e,[n]:(e[n]||[]).concat(t[n])}),e),{}),n=Object.keys(t),a=n.reduce((e,n)=>{const a=t[n];return{...e,[n]:a.find(e=>e.platform===s.xcode.label)||a[0]}},{}),r=e=>({label:this.toVersionRange(a[e]),value:this.toOptionValue(e),platform:a[e].platform}),{sdk:i,beta:o,minor:c,major:l,...d}=a,p=[].concat(i?r("sdk"):[]).concat(o?r("beta"):[]).concat(c?r("minor"):[]).concat(l?r("major"):[]).concat(Object.keys(d).map(r));return this.splitOptionsPerPlatform(p)},changesClassesFor(e,t){const n=this.changeFor(e,t);return this.getChangesClasses(n)},getChangesClasses:e=>({["changed changed-"+e]:!!e}),changeFor(e,t){const{change:n}=(t||{})[e]||{};return n},splitOptionsPerPlatform(e){return e.reduce((e,t)=>{const n=t.platform===s.xcode.label?s.xcode.value:s.other.value;return e[n].push(t),e},{[s.xcode.value]:[],[s.other.value]:[]})},getChangeName(e){return a["b"][e]}},computed:{availableOptions({diffAvailability:e={},toOptionValue:t}){return new Set(Object.keys(e).map(t))}}}},6359:function(e,t,n){"use strict";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseContentNode",e._b({},"BaseContentNode",e.$props,!1))},r=[],i=n("5677"),o={name:"ContentNode",components:{BaseContentNode:i["default"]},props:i["default"].props,methods:i["default"].methods,BlockType:i["default"].BlockType,InlineType:i["default"].InlineType},s=o,c=(n("3484"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"7f03310b",null);t["a"]=l.exports},"64cf":function(e,t,n){"use strict";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentNode",{staticClass:"conditional-constraints",attrs:{content:e.content}})},r=[],i=n("6359"),o={name:"ConditionalConstraints",components:{ContentNode:i["a"]},props:{constraints:i["a"].props.content,prefix:i["a"].props.content},computed:{content:({constraints:e,prefix:t,space:n})=>t.concat(n).concat(e),space:()=>({type:i["a"].InlineType.text,text:" "})}},s=o,c=(n("918a"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"1548fd90",null);t["a"]=l.exports},7395:function(e,t,n){},"83a8":function(e,t,n){"use strict";n("b6f5")},9055:function(e,t,n){"use strict";n.d(t,"a",(function(){return a}));const a="has-multiple-lines"},"918a":function(e,t,n){"use strict";n("a2b5")},a0fd:function(e,t,n){"use strict";var a=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a("span",{staticClass:"badge",class:(e={},e["badge-"+t.variant]=t.variant,e),attrs:{role:"presentation"}},[t._t("default",(function(){return[t._v(t._s(t.text))]}))],2)},r=[];const i={beta:"Beta",deprecated:"Deprecated"};var o={name:"Badge",props:{variant:{type:String,default:()=>""}},computed:{text:({variant:e})=>i[e]}},s=o,c=(n("5a86"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"b3052e12",null);t["a"]=l.exports},a2b5:function(e,t,n){},b5cf:function(e,t,n){"use strict";n.d(t,"c",(function(){return a})),n.d(t,"d",(function(){return r})),n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o}));const a={added:"added",modified:"modified",deprecated:"deprecated"},r=[a.modified,a.added,a.deprecated],i={[a.modified]:"Modified",[a.added]:"Added",[a.deprecated]:"Deprecated"},o={Modified:a.modified,Added:a.added,Deprecated:a.deprecated}},b6f5:function(e,t,n){},beb1:function(e,t,n){"use strict";function a(e){if(!e)return!1;const t=window.getComputedStyle(e.$el||e),n=(e.$el||e).offsetHeight,a=t.lineHeight?parseFloat(t.lineHeight):1,r=t.paddingTop?parseFloat(t.paddingTop):0,i=t.paddingBottom?parseFloat(t.paddingBottom):0,o=t.borderTopWidth?parseFloat(t.borderTopWidth):0,s=t.borderBottomWidth?parseFloat(t.borderBottomWidth):0,c=n-(r+i+o+s),l=c/a;return l>=2}n.d(t,"a",(function(){return a}))},c36f:function(e,t,n){"use strict";n("f8bd")},dcf6:function(e,t,n){"use strict";n("2f04")},e8ea:function(e,t,n){"use strict";var a=function(e,t){var n=t._c;return n("p",{staticClass:"requirement-metadata",class:t.data.staticClass},[n("strong",[t._v("Required.")]),t.props.defaultImplementationsCount?[t._v(" Default implementation"+t._s(t.props.defaultImplementationsCount>1?"s":"")+" provided. ")]:t._e()],2)},r=[],i={name:"RequirementMetadata",props:{defaultImplementationsCount:{type:Number,default:0}}},o=i,s=n("2877"),c=Object(s["a"])(o,a,r,!0,null,null,null);t["a"]=c.exports},f8bd:function(e,t,n){},fab0:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/chunk-c0335d80.76a68cc5.js b/docs/js/chunk-c0335d80.76a68cc5.js new file mode 100644 index 0000000..f4f01b7 --- /dev/null +++ b/docs/js/chunk-c0335d80.76a68cc5.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-c0335d80"],{"00b4":function(e,t,n){"use strict";var a,r,i,o,s,c,l,d,p=n("7b1f"),u={name:"ChangedToken",render(e){const{kind:t,tokens:n}=this;return e("span",{class:["token-"+t,"token-changed"]},n.map(t=>e(D,{props:t})))},props:{kind:{type:String,required:!0},tokens:{type:Array,required:!0}}},f=u,m=n("2877"),h=Object(m["a"])(f,a,r,!1,null,null,null),b=h.exports,g=n("86d8"),v=n("2f34"),y={name:"LinkableToken",mixins:[v["a"]],render(e){const t=this.references[this.identifier];return t&&t.url?e(g["a"],{props:{url:t.url,kind:t.kind,role:t.role}},this.$slots.default):e("span",{},this.$slots.default)},props:{identifier:{type:String,required:!0,default:()=>""}}},k=y,C=Object(m["a"])(k,i,o,!1,null,null,null),_=C.exports,x={name:"RawText",render(e){const{_v:t=(t=>e("span",t)),text:n}=this;return t(n)},props:{text:{type:String,required:!0}}},O=x,B=Object(m["a"])(O,s,c,!1,null,null,null),T=B.exports,S={name:"SyntaxToken",render(e){return e("span",{class:"token-"+this.kind},this.text)},props:{kind:{type:String,required:!0},text:{type:String,required:!0}}},I=S,$=Object(m["a"])(I,l,d,!1,null,null,null),j=$.exports;const q={attribute:"attribute",externalParam:"externalParam",genericParameter:"genericParameter",identifier:"identifier",internalParam:"internalParam",keyword:"keyword",label:"label",number:"number",string:"string",text:"text",typeIdentifier:"typeIdentifier",added:"added",removed:"removed"};var w,A,P={name:"DeclarationToken",render(e){const{kind:t,text:n,tokens:a}=this;switch(t){case q.text:{const t={text:n};return e(T,{props:t})}case q.typeIdentifier:{const t={identifier:this.identifier};return e(_,{class:"type-identifier-link",props:t},[e(p["a"],n)])}case q.attribute:{const{identifier:a}=this;return a?e(_,{class:"attribute-link",props:{identifier:a}},[e(p["a"],n)]):e(j,{props:{kind:t,text:n}})}case q.added:case q.removed:return e(b,{props:{tokens:a,kind:t}});default:{const a={kind:t,text:n};return e(j,{props:a})}}},constants:{TokenKind:q},props:{kind:{type:String,required:!0},identifier:{type:String,required:!1},text:{type:String,required:!1},tokens:{type:Array,required:!1,default:()=>[]}}},F=P,z=(n("8f34"),Object(m["a"])(F,w,A,!1,null,"3fd63d6c",null)),D=t["a"]=z.exports},"2a18":function(e,t,n){"use strict";n.r(t);var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"link-block",class:e.linkBlockClasses},[n(e.linkComponent,e._b({ref:"apiChangesDiff",tag:"component",staticClass:"link",class:e.linkClasses},"component",e.linkProps,!1),[e.topic.role&&!e.change?n("TopicLinkBlockIcon",{attrs:{role:e.topic.role,imageOverride:e.references[e.iconOverride]}}):e._e(),e.topic.fragments?n("DecoratedTopicTitle",{attrs:{tokens:e.topic.fragments}}):n("WordBreak",{attrs:{tag:e.titleTag}},[e._v(e._s(e.topic.title))]),e.change?n("span",{staticClass:"visuallyhidden"},[e._v("- "+e._s(e.$t(e.changeName)))]):e._e()],1),e.hasAbstractElements?n("div",{staticClass:"abstract"},[e.topic.abstract?n("ContentNode",{attrs:{content:e.topic.abstract}}):e._e(),e.topic.ideTitle?n("div",{staticClass:"topic-keyinfo"},[e.topic.titleStyle===e.titleStyles.title?[n("strong",[e._v("Key:")]),e._v(" "+e._s(e.topic.name)+" ")]:e.topic.titleStyle===e.titleStyles.symbol?[n("strong",[e._v("Name:")]),e._v(" "+e._s(e.topic.ideTitle)+" ")]:e._e()],2):e._e(),e.topic.required||e.topic.defaultImplementations?n("RequirementMetadata",{staticClass:"topic-required",attrs:{defaultImplementationsCount:e.topic.defaultImplementations}}):e._e(),e.topic.conformance?n("ConditionalConstraints",{attrs:{constraints:e.topic.conformance.constraints,prefix:e.topic.conformance.availabilityPrefix}}):e._e()],1):e._e(),e.showDeprecatedBadge?n("Badge",{attrs:{variant:"deprecated"}}):e.showBetaBadge?n("Badge",{attrs:{variant:"beta"}}):e._e(),e._l(e.tags,(function(t){return n("Badge",{key:t.type+"-"+t.text,attrs:{variant:t.type}},[e._v(" "+e._s(t.text)+" ")])}))],2)},r=[],i=n("66cd"),o=n("d26a"),s=n("a0fd"),c=n("7b1f"),l=n("6359"),d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.imageOverride||e.icon?n("div",{staticClass:"topic-icon-wrapper"},[e.imageOverride?n("OverridableAsset",{staticClass:"topic-icon",attrs:{imageOverride:e.imageOverride}}):e.icon?n(e.icon,{tag:"component",staticClass:"topic-icon"}):e._e()],1):e._e()},p=[],u=n("a9f1"),f=n("3b96"),m=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"api-reference-icon",attrs:{viewBox:"0 0 14 14",themeId:"api-reference"}},[n("title",[e._v(e._s(e.$t("api-reference")))]),n("path",{attrs:{d:"m1 1v12h12v-12zm11 11h-10v-10h10z"}}),n("path",{attrs:{d:"m3 4h8v1h-8zm0 2.5h8v1h-8zm0 2.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 4h8v1h-8z"}}),n("path",{attrs:{d:"m3 6.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 9h8v1h-8z"}})])},h=[],b=n("be08"),g={name:"APIReferenceIcon",components:{SVGIcon:b["a"]}},v=g,y=n("2877"),k=Object(y["a"])(v,m,h,!1,null,null,null),C=k.exports,_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",themeId:"endpoint"}},[n("title",[e._v(e._s(e.$t("icons.web-service-endpoint")))]),n("path",{attrs:{d:"M4.052 8.737h-1.242l-1.878 5.263h1.15l0.364-1.081h1.939l0.339 1.081h1.193zM2.746 12.012l0.678-2.071 0.653 2.071z"}}),n("path",{attrs:{d:"M11.969 8.737h1.093v5.263h-1.093v-5.263z"}}),n("path",{attrs:{d:"M9.198 8.737h-2.295v5.263h1.095v-1.892h1.12c0.040 0.003 0.087 0.004 0.134 0.004 0.455 0 0.875-0.146 1.217-0.394l-0.006 0.004c0.296-0.293 0.48-0.699 0.48-1.148 0-0.060-0.003-0.118-0.010-0.176l0.001 0.007c0.003-0.039 0.005-0.085 0.005-0.131 0-0.442-0.183-0.842-0.476-1.128l-0-0c-0.317-0.256-0.724-0.41-1.168-0.41-0.034 0-0.069 0.001-0.102 0.003l0.005-0zM9.628 11.014c-0.15 0.118-0.341 0.188-0.548 0.188-0.020 0-0.040-0.001-0.060-0.002l0.003 0h-1.026v-1.549h1.026c0.017-0.001 0.037-0.002 0.058-0.002 0.206 0 0.396 0.066 0.551 0.178l-0.003-0.002c0.135 0.13 0.219 0.313 0.219 0.515 0 0.025-0.001 0.050-0.004 0.074l0-0.003c0.002 0.020 0.003 0.044 0.003 0.068 0 0.208-0.083 0.396-0.219 0.534l0-0z"}}),n("path",{attrs:{d:"M13.529 4.981c0-1.375-1.114-2.489-2.489-2.49h-0l-0.134 0.005c-0.526-1.466-1.903-2.496-3.522-2.496-0.892 0-1.711 0.313-2.353 0.835l0.007-0.005c-0.312-0.243-0.709-0.389-1.14-0.389-1.030 0-1.865 0.834-1.866 1.864v0c0 0.001 0 0.003 0 0.004 0 0.123 0.012 0.242 0.036 0.358l-0.002-0.012c-0.94 0.37-1.593 1.27-1.593 2.323 0 1.372 1.11 2.485 2.482 2.49h8.243c1.306-0.084 2.333-1.164 2.333-2.484 0-0.001 0-0.002 0-0.003v0zM11.139 6.535h-8.319c-0.799-0.072-1.421-0.739-1.421-1.551 0-0.659 0.41-1.223 0.988-1.45l0.011-0.004 0.734-0.28-0.148-0.776-0.012-0.082v-0.088c0-0 0-0.001 0-0.001 0-0.515 0.418-0.933 0.933-0.933 0.216 0 0.416 0.074 0.574 0.197l-0.002-0.002 0.584 0.453 0.575-0.467 0.169-0.127c0.442-0.306 0.991-0.489 1.581-0.489 1.211 0 2.243 0.769 2.633 1.846l0.006 0.019 0.226 0.642 0.814-0.023 0.131 0.006c0.805 0.067 1.432 0.736 1.432 1.552 0 0.836-0.659 1.518-1.486 1.556l-0.003 0z"}})])},x=[],O={name:"EndpointIcon",components:{SVGIcon:b["a"]}},B=O,T=Object(y["a"])(B,_,x,!1,null,null,null),S=T.exports,I=n("a295"),$=n("3024"),j=n("8d2d"),q=n("fdd9");const w={[i["a"].article]:u["a"],[i["a"].collection]:$["a"],[i["a"].collectionGroup]:C,[i["a"].learn]:I["a"],[i["a"].overview]:I["a"],[i["a"].project]:j["a"],[i["a"].tutorial]:j["a"],[i["a"].resources]:I["a"],[i["a"].sampleCode]:f["a"],[i["a"].restRequestSymbol]:S};var A={components:{OverridableAsset:q["a"],SVGIcon:b["a"]},props:{role:{type:String,required:!0},imageOverride:{type:Object,default:null}},computed:{icon:({role:e})=>w[e]}},P=A,F=(n("d94b"),Object(y["a"])(P,d,p,!1,null,"03cf3183",null)),z=F.exports,D=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("code",{staticClass:"decorated-title"},e._l(e.tokens,(function(t,a){return n(e.componentFor(t),{key:a,tag:"component",class:[e.classFor(t),e.emptyTokenClass(t)]},[e._v(e._s(t.text))])})),1)},N=[],E=n("00b4");const{TokenKind:M}=E["a"].constants,V={decorator:"decorator",identifier:"identifier",label:"label"};var L={name:"DecoratedTopicTitle",components:{WordBreak:c["a"]},props:{tokens:{type:Array,required:!0,default:()=>[]}},constants:{TokenKind:M},methods:{emptyTokenClass:({text:e})=>({"empty-token":" "===e}),classFor({kind:e}){switch(e){case M.externalParam:case M.identifier:return V.identifier;case M.label:return V.label;default:return V.decorator}},componentFor(e){return/^\s+$/.test(e.text)?"span":c["a"]}}},R=L,W=(n("dcf6"),Object(y["a"])(R,D,N,!1,null,"06ec7395",null)),G=W.exports,K=n("64cf"),H=n("e8ea"),J=n("5d59"),X=n("2f34");const Q={article:"article",symbol:"symbol"},U={title:"title",symbol:"symbol"},Y={link:"link"};var Z={name:"TopicsLinkBlock",components:{Badge:s["a"],WordBreak:c["a"],ContentNode:l["a"],TopicLinkBlockIcon:z,DecoratedTopicTitle:G,RequirementMetadata:H["a"],ConditionalConstraints:K["a"]},mixins:[J["b"],J["a"],X["a"]],constants:{ReferenceType:Y,TopicKind:Q,TitleStyles:U},props:{isSymbolBeta:Boolean,isSymbolDeprecated:Boolean,topic:{type:Object,required:!0,validator:e=>(!("abstract"in e)||Array.isArray(e.abstract))&&"string"===typeof e.identifier&&(e.type===Y.link&&!e.kind||"string"===typeof e.kind)&&(e.type===Y.link&&!e.role||"string"===typeof e.role)&&"string"===typeof e.title&&"string"===typeof e.url&&(!("defaultImplementations"in e)||"number"===typeof e.defaultImplementations)&&(!("required"in e)||"boolean"===typeof e.required)&&(!("conformance"in e)||"object"===typeof e.conformance)}},data(){return{state:this.store.state}},computed:{linkComponent:({topic:e})=>e.type===Y.link?"a":"router-link",linkProps({topic:e}){const t=Object(o["b"])(e.url,this.$route.query);return e.type===Y.link?{href:t}:{to:t}},linkBlockClasses:({changesClasses:e,hasAbstractElements:t,displaysMultipleLinesAfterAPIChanges:n,multipleLinesClass:a})=>({"has-inline-element":!t,[a]:n,...!t&&e}),linkClasses:({changesClasses:e,deprecated:t,hasAbstractElements:n})=>({deprecated:t,"has-adjacent-elements":n,...n&&e}),changesClasses:({getChangesClasses:e,change:t})=>e(t),titleTag({topic:e}){if(e.titleStyle===U.title)return e.ideTitle?"span":"code";if(e.role&&(e.role===i["a"].collection||e.role===i["a"].dictionarySymbol))return"span";switch(e.kind){case Q.symbol:return"code";default:return"span"}},titleStyles:()=>U,deprecated:({showDeprecatedBadge:e,topic:t})=>e||t.deprecated,showBetaBadge:({topic:e,isSymbolBeta:t})=>Boolean(!t&&e.beta),showDeprecatedBadge:({topic:e,isSymbolDeprecated:t})=>Boolean(!t&&e.deprecated),change({topic:{identifier:e},state:{apiChanges:t}}){return this.changeFor(e,t)},changeName:({change:e,getChangeName:t})=>t(e),hasAbstractElements:({topic:{abstract:e,conformance:t,required:n,defaultImplementations:a}}={})=>e&&e.length>0||t||n||a,tags:({topic:e})=>(e.tags||[]).slice(0,1),iconOverride:({topic:{images:e=[]}})=>{const t=e.find(({type:e})=>"icon"===e);return t?t.identifier:null}}},ee=Z,te=(n("8d8f8"),Object(y["a"])(ee,a,r,!1,null,"52205924",null));t["default"]=te.exports},"2f04":function(e,t,n){},4782:function(e,t,n){},4918:function(e,t,n){},"5d59":function(e,t,n){"use strict";n.d(t,"a",(function(){return c})),n.d(t,"b",(function(){return l}));var a=n("b5cf"),r=n("9055"),i=n("beb1");const o="latest_",s={xcode:{value:"xcode",label:"Xcode"},other:{value:"other",label:"Other"}},c={constants:{multipleLinesClass:r["a"]},data(){return{multipleLinesClass:r["a"]}},computed:{displaysMultipleLinesAfterAPIChanges:({change:e,changeType:t,$refs:n})=>!(!e&&!t)&&Object(i["a"])(n.apiChangesDiff)}},l={methods:{toVersionRange({platform:e,versions:t}){return`${e} ${t[0]} – ${e} ${t[1]}`},toOptionValue:e=>`${o}${e}`,toScope:e=>e.slice(o.length,e.length),getOptionsForDiffAvailability(e={}){return this.getOptionsForDiffAvailabilities([e])},getOptionsForDiffAvailabilities(e=[]){const t=e.reduce((e,t={})=>Object.keys(t).reduce((e,n)=>({...e,[n]:(e[n]||[]).concat(t[n])}),e),{}),n=Object.keys(t),a=n.reduce((e,n)=>{const a=t[n];return{...e,[n]:a.find(e=>e.platform===s.xcode.label)||a[0]}},{}),r=e=>({label:this.toVersionRange(a[e]),value:this.toOptionValue(e),platform:a[e].platform}),{sdk:i,beta:o,minor:c,major:l,...d}=a,p=[].concat(i?r("sdk"):[]).concat(o?r("beta"):[]).concat(c?r("minor"):[]).concat(l?r("major"):[]).concat(Object.keys(d).map(r));return this.splitOptionsPerPlatform(p)},changesClassesFor(e,t){const n=this.changeFor(e,t);return this.getChangesClasses(n)},getChangesClasses:e=>({["changed changed-"+e]:!!e}),changeFor(e,t){const{change:n}=(t||{})[e]||{};return n},splitOptionsPerPlatform(e){return e.reduce((e,t)=>{const n=t.platform===s.xcode.label?s.xcode.value:s.other.value;return e[n].push(t),e},{[s.xcode.value]:[],[s.other.value]:[]})},getChangeName(e){return a["b"][e]}},computed:{availableOptions({diffAvailability:e={},toOptionValue:t}){return new Set(Object.keys(e).map(t))}}}},6359:function(e,t,n){"use strict";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseContentNode",e._b({},"BaseContentNode",e.$props,!1))},r=[],i=n("5677"),o={name:"ContentNode",components:{BaseContentNode:i["default"]},props:i["default"].props,methods:i["default"].methods,BlockType:i["default"].BlockType,InlineType:i["default"].InlineType},s=o,c=(n("958a"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"20945666",null);t["a"]=l.exports},"64cf":function(e,t,n){"use strict";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentNode",{staticClass:"conditional-constraints",attrs:{content:e.content}})},r=[],i=n("6359"),o={name:"ConditionalConstraints",components:{ContentNode:i["a"]},props:{constraints:i["a"].props.content,prefix:i["a"].props.content},computed:{content:({constraints:e,prefix:t,space:n})=>t.concat(n).concat(e),space:()=>({type:i["a"].InlineType.text,text:" "})}},s=o,c=(n("918a"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"1548fd90",null);t["a"]=l.exports},"686d":function(e,t,n){},"8d74":function(e,t,n){},"8d8f8":function(e,t,n){"use strict";n("4918")},"8f34":function(e,t,n){"use strict";n("686d")},9055:function(e,t,n){"use strict";n.d(t,"a",(function(){return a}));const a="displays-multiple-lines"},"918a":function(e,t,n){"use strict";n("a2b5")},"94ca":function(e,t,n){"use strict";n("4782")},"958a":function(e,t,n){"use strict";n("8d74")},a0fd:function(e,t,n){"use strict";var a=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a("span",{staticClass:"badge",class:(e={},e["badge-"+t.variant]=t.variant,e),attrs:{role:"presentation"}},[t._t("default",(function(){return[t._v(t._s(t.text?t.$t(t.text):""))]}))],2)},r=[];const i={beta:"aside-kind.beta",deprecated:"aside-kind.deprecated"};var o={name:"Badge",props:{variant:{type:String,default:()=>""}},computed:{text:({variant:e})=>i[e]}},s=o,c=(n("94ca"),n("2877")),l=Object(c["a"])(s,a,r,!1,null,"8d6893ae",null);t["a"]=l.exports},a2b5:function(e,t,n){},b5cf:function(e,t,n){"use strict";n.d(t,"c",(function(){return a})),n.d(t,"d",(function(){return r})),n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o}));const a={added:"added",modified:"modified",deprecated:"deprecated"},r=[a.modified,a.added,a.deprecated],i={[a.modified]:"change-type.modified",[a.added]:"change-type.added",[a.deprecated]:"change-type.deprecated"},o={"change-type.modified":a.modified,"change-type.added":a.added,"change-type.deprecated":a.deprecated}},beb1:function(e,t,n){"use strict";function a(e){if(!e)return!1;const t=window.getComputedStyle(e.$el||e),n=(e.$el||e).offsetHeight,a=t.lineHeight?parseFloat(t.lineHeight):1,r=t.paddingTop?parseFloat(t.paddingTop):0,i=t.paddingBottom?parseFloat(t.paddingBottom):0,o=t.borderTopWidth?parseFloat(t.borderTopWidth):0,s=t.borderBottomWidth?parseFloat(t.borderBottomWidth):0,c=n-(r+i+o+s),l=c/a;return l>=2}n.d(t,"a",(function(){return a}))},d94b:function(e,t,n){"use strict";n("fff0")},dcf6:function(e,t,n){"use strict";n("2f04")},e8ea:function(e,t,n){"use strict";var a=function(e,t){var n=t._c;return n("p",{staticClass:"requirement-metadata",class:t.data.staticClass},[n("strong",[t._v(t._s(t.parent.$t("required")))]),t.props.defaultImplementationsCount?[t._v(" "+t._s(t.parent.$tc("metadata.default-implementation",t.props.defaultImplementationsCount))+" ")]:t._e()],2)},r=[],i={name:"RequirementMetadata",props:{defaultImplementationsCount:{type:Number,default:0}}},o=i,s=n("2877"),c=Object(s["a"])(o,a,r,!0,null,null,null);t["a"]=c.exports},fff0:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/chunk-vendors.b24b7aaa.js b/docs/js/chunk-vendors.b24b7aaa.js deleted file mode 100644 index 5a98336..0000000 --- a/docs/js/chunk-vendors.b24b7aaa.js +++ /dev/null @@ -1,21 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{2877:function(t,e,n){"use strict";function r(t,e,n,r,o,i,a,s){var c,u="function"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i),a?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=c):o&&(c=s?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(u.functional){u._injectStyles=c;var f=u.render;u.render=function(t,e){return c.call(e),f(t,e)}}else{var l=u.beforeCreate;u.beforeCreate=l?[].concat(l,c):[c]}return{exports:t,options:u}}n.d(e,"a",(function(){return r}))},"2b0e":function(t,e,n){"use strict";n.r(e),function(t){ -/*! - * Vue.js v2.6.14 - * (c) 2014-2021 Evan You - * Released under the MIT License. - */ -var n=Object.freeze({});function r(t){return void 0===t||null===t}function o(t){return void 0!==t&&null!==t}function i(t){return!0===t}function a(t){return!1===t}function s(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function c(t){return null!==t&&"object"===typeof t}var u=Object.prototype.toString;function f(t){return"[object Object]"===u.call(t)}function l(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return o(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||f(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function y(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o-1)return t.splice(n,1)}}var _=Object.prototype.hasOwnProperty;function b(t,e){return _.call(t,e)}function w(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var C=/-(\w)/g,x=w((function(t){return t.replace(C,(function(t,e){return e?e.toUpperCase():""}))})),A=w((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),$=/\B([A-Z])/g,k=w((function(t){return t.replace($,"-$1").toLowerCase()}));function O(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function S(t,e){return t.bind(e)}var E=Function.prototype.bind?S:O;function T(t,e){e=e||0;var n=t.length-e,r=new Array(n);while(n--)r[n]=t[n+e];return r}function j(t,e){for(var n in e)t[n]=e[n];return t}function R(t){for(var e={},n=0;n0,nt=Z&&Z.indexOf("edge/")>0,rt=(Z&&Z.indexOf("android"),Z&&/iphone|ipad|ipod|ios/.test(Z)||"ios"===Y),ot=(Z&&/chrome\/\d+/.test(Z),Z&&/phantomjs/.test(Z),Z&&Z.match(/firefox\/(\d+)/)),it={}.watch,at=!1;if(G)try{var st={};Object.defineProperty(st,"passive",{get:function(){at=!0}}),window.addEventListener("test-passive",null,st)}catch(Aa){}var ct=function(){return void 0===X&&(X=!G&&!Q&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),X},ut=G&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ft(t){return"function"===typeof t&&/native code/.test(t.toString())}var lt,pt="undefined"!==typeof Symbol&&ft(Symbol)&&"undefined"!==typeof Reflect&&ft(Reflect.ownKeys);lt="undefined"!==typeof Set&&ft(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=P,ht=0,vt=function(){this.id=ht++,this.subs=[]};vt.prototype.addSub=function(t){this.subs.push(t)},vt.prototype.removeSub=function(t){g(this.subs,t)},vt.prototype.depend=function(){vt.target&&vt.target.addDep(this)},vt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(i&&!b(o,"default"))a=!1;else if(""===a||a===k(t)){var c=ee(String,o.type);(c<0||s0&&(a=Se(a,(e||"")+"_"+n),Oe(a[0])&&Oe(u)&&(f[c]=Ct(u.text+a[0].text),a.shift()),f.push.apply(f,a)):s(a)?Oe(u)?f[c]=Ct(u.text+a):""!==a&&f.push(Ct(a)):Oe(a)&&Oe(u)?f[c]=Ct(u.text+a.text):(i(t._isVList)&&o(a.tag)&&r(a.key)&&o(e)&&(a.key="__vlist"+e+"_"+n+"__"),f.push(a)));return f}function Ee(t){var e=t.$options.provide;e&&(t._provided="function"===typeof e?e.call(t):e)}function Te(t){var e=je(t.$options.inject,t);e&&(Et(!1),Object.keys(e).forEach((function(n){It(t,n,e[n])})),Et(!0))}function je(t,e){if(t){for(var n=Object.create(null),r=pt?Reflect.ownKeys(t):Object.keys(t),o=0;o0,a=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==n&&s===r.$key&&!i&&!r.$hasNormal)return r;for(var c in o={},t)t[c]&&"$"!==c[0]&&(o[c]=Ne(e,c,t[c]))}else o={};for(var u in e)u in o||(o[u]=De(e,u));return t&&Object.isExtensible(t)&&(t._normalized=o),z(o,"$stable",a),z(o,"$key",s),z(o,"$hasNormal",i),o}function Ne(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});t=t&&"object"===typeof t&&!Array.isArray(t)?[t]:ke(t);var e=t&&t[0];return t&&(!e||1===t.length&&e.isComment&&!Ie(e))?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function De(t,e){return function(){return t[e]}}function Me(t,e){var n,r,i,a,s;if(Array.isArray(t)||"string"===typeof t)for(n=new Array(t.length),r=0,i=t.length;r1?T(n):n;for(var r=T(arguments,1),o='event handler for "'+t+'"',i=0,a=n.length;idocument.createEvent("Event").timeStamp&&(Jn=function(){return Gn.now()})}function Qn(){var t,e;for(Xn=Jn(),zn=!0,Vn.sort((function(t,e){return t.id-e.id})),Wn=0;WnWn&&Vn[n].id>t.id)n--;Vn.splice(n+1,0,t)}else Vn.push(t);qn||(qn=!0,ve(Qn))}}var nr=0,rr=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++nr,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new lt,this.newDepIds=new lt,this.expression="","function"===typeof e?this.getter=e:(this.getter=K(e),this.getter||(this.getter=P)),this.value=this.lazy?void 0:this.get()};rr.prototype.get=function(){var t;mt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(Aa){if(!this.user)throw Aa;ne(Aa,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&me(t),gt(),this.cleanupDeps()}return t},rr.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},rr.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},rr.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():er(this)},rr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher "'+this.expression+'"';re(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},rr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},rr.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},rr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var or={enumerable:!0,configurable:!0,get:P,set:P};function ir(t,e,n){or.get=function(){return this[e][n]},or.set=function(t){this[e][n]=t},Object.defineProperty(t,n,or)}function ar(t){t._watchers=[];var e=t.$options;e.props&&sr(t,e.props),e.methods&&vr(t,e.methods),e.data?cr(t):Pt(t._data={},!0),e.computed&&lr(t,e.computed),e.watch&&e.watch!==it&&yr(t,e.watch)}function sr(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[],i=!t.$parent;i||Et(!1);var a=function(i){o.push(i);var a=Gt(i,e,n,t);It(r,i,a),i in t||ir(t,"_props",i)};for(var s in e)a(s);Et(!0)}function cr(t){var e=t.$options.data;e=t._data="function"===typeof e?ur(e,t):e||{},f(e)||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);while(o--){var i=n[o];0,r&&b(r,i)||q(i)||ir(t,"_data",i)}Pt(e,!0)}function ur(t,e){mt();try{return t.call(e,e)}catch(Aa){return ne(Aa,e,"data()"),{}}finally{gt()}}var fr={lazy:!0};function lr(t,e){var n=t._computedWatchers=Object.create(null),r=ct();for(var o in e){var i=e[o],a="function"===typeof i?i:i.get;0,r||(n[o]=new rr(t,a||P,P,fr)),o in t||pr(t,o,i)}}function pr(t,e,n){var r=!ct();"function"===typeof n?(or.get=r?dr(e):hr(n),or.set=P):(or.get=n.get?r&&!1!==n.cache?dr(e):hr(n.get):P,or.set=n.set||P),Object.defineProperty(t,e,or)}function dr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),vt.target&&e.depend(),e.value}}function hr(t){return function(){return t.call(this,this)}}function vr(t,e){t.$options.props;for(var n in e)t[n]="function"!==typeof e[n]?P:E(e[n],t)}function yr(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o-1)return this;var n=T(arguments,1);return n.unshift(this),"function"===typeof t.install?t.install.apply(t,n):"function"===typeof t&&t.apply(null,n),e.push(t),this}}function kr(t){t.mixin=function(t){return this.options=Xt(this.options,t),this}}function Or(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=e++,a.options=Xt(n.options,t),a["super"]=n,a.options.props&&Sr(a),a.options.computed&&Er(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,U.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=j({},a.options),o[r]=a,a}}function Sr(t){var e=t.options.props;for(var n in e)ir(t.prototype,"_props",n)}function Er(t){var e=t.options.computed;for(var n in e)pr(t.prototype,n,e[n])}function Tr(t){U.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&f(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"===typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}function jr(t){return t&&(t.Ctor.options.name||t.tag)}function Rr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!l(t)&&t.test(e)}function Pr(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var s=a.name;s&&!e(s)&&Ir(n,i,r,o)}}}function Ir(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}br(Ar),gr(Ar),Tn(Ar),In(Ar),bn(Ar);var Lr=[String,RegExp,Array],Nr={name:"keep-alive",abstract:!0,props:{include:Lr,exclude:Lr,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,o=t.keyToCache;if(r){var i=r.tag,a=r.componentInstance,s=r.componentOptions;e[o]={name:jr(s),tag:i,componentInstance:a},n.push(o),this.max&&n.length>parseInt(this.max)&&Ir(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ir(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){Pr(t,(function(t){return Rr(e,t)}))})),this.$watch("exclude",(function(e){Pr(t,(function(t){return!Rr(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=An(t),n=e&&e.componentOptions;if(n){var r=jr(n),o=this,i=o.include,a=o.exclude;if(i&&(!r||!Rr(i,r))||a&&r&&Rr(a,r))return e;var s=this,c=s.cache,u=s.keys,f=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;c[f]?(e.componentInstance=c[f].componentInstance,g(u,f),u.push(f)):(this.vnodeToCache=e,this.keyToCache=f),e.data.keepAlive=!0}return e||t&&t[0]}},Dr={KeepAlive:Nr};function Mr(t){var e={get:function(){return B}};Object.defineProperty(t,"config",e),t.util={warn:dt,extend:j,mergeOptions:Xt,defineReactive:It},t.set=Lt,t.delete=Nt,t.nextTick=ve,t.observable=function(t){return Pt(t),t},t.options=Object.create(null),U.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,j(t.options.components,Dr),$r(t),kr(t),Or(t),Tr(t)}Mr(Ar),Object.defineProperty(Ar.prototype,"$isServer",{get:ct}),Object.defineProperty(Ar.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Ar,"FunctionalRenderContext",{value:Ze}),Ar.version="2.6.14";var Fr=y("style,class"),Ur=y("input,textarea,option,select,progress"),Vr=function(t,e,n){return"value"===n&&Ur(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Br=y("contenteditable,draggable,spellcheck"),Hr=y("events,caret,typing,plaintext-only"),qr=function(t,e){return Jr(e)||"false"===e?"false":"contenteditable"===t&&Hr(e)?e:"true"},zr=y("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Wr="http://www.w3.org/1999/xlink",Kr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Xr=function(t){return Kr(t)?t.slice(6,t.length):""},Jr=function(t){return null==t||!1===t};function Gr(t){var e=t.data,n=t,r=t;while(o(r.componentInstance))r=r.componentInstance._vnode,r&&r.data&&(e=Qr(r.data,e));while(o(n=n.parent))n&&n.data&&(e=Qr(e,n.data));return Yr(e.staticClass,e.class)}function Qr(t,e){return{staticClass:Zr(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function Yr(t,e){return o(t)||o(e)?Zr(t,to(e)):""}function Zr(t,e){return t?e?t+" "+e:t:e||""}function to(t){return Array.isArray(t)?eo(t):c(t)?no(t):"string"===typeof t?t:""}function eo(t){for(var e,n="",r=0,i=t.length;r-1?co[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:co[t]=/HTMLUnknownElement/.test(e.toString())}var fo=y("text,number,password,search,email,tel,url");function lo(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function po(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n}function ho(t,e){return document.createElementNS(ro[t],e)}function vo(t){return document.createTextNode(t)}function yo(t){return document.createComment(t)}function mo(t,e,n){t.insertBefore(e,n)}function go(t,e){t.removeChild(e)}function _o(t,e){t.appendChild(e)}function bo(t){return t.parentNode}function wo(t){return t.nextSibling}function Co(t){return t.tagName}function xo(t,e){t.textContent=e}function Ao(t,e){t.setAttribute(e,"")}var $o=Object.freeze({createElement:po,createElementNS:ho,createTextNode:vo,createComment:yo,insertBefore:mo,removeChild:go,appendChild:_o,parentNode:bo,nextSibling:wo,tagName:Co,setTextContent:xo,setStyleScope:Ao}),ko={create:function(t,e){Oo(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Oo(t,!0),Oo(e))},destroy:function(t){Oo(t,!0)}};function Oo(t,e){var n=t.data.ref;if(o(n)){var r=t.context,i=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],i):a[n]===i&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(i)<0&&a[n].push(i):a[n]=[i]:a[n]=i}}var So=new _t("",{},[]),Eo=["create","activate","update","remove","destroy"];function To(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&o(t.data)===o(e.data)&&jo(t,e)||i(t.isAsyncPlaceholder)&&r(e.asyncFactory.error))}function jo(t,e){if("input"!==t.tag)return!0;var n,r=o(n=t.data)&&o(n=n.attrs)&&n.type,i=o(n=e.data)&&o(n=n.attrs)&&n.type;return r===i||fo(r)&&fo(i)}function Ro(t,e,n){var r,i,a={};for(r=e;r<=n;++r)i=t[r].key,o(i)&&(a[i]=r);return a}function Po(t){var e,n,a={},c=t.modules,u=t.nodeOps;for(e=0;ev?(l=r(n[g+1])?null:n[g+1].elm,x(t,l,n,h,g,i)):h>g&&$(e,p,v)}function S(t,e,n,r){for(var i=n;i-1?qo(t,e,n):zr(e)?Jr(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Br(e)?t.setAttribute(e,qr(e,n)):Kr(e)?Jr(n)?t.removeAttributeNS(Wr,Xr(e)):t.setAttributeNS(Wr,e,n):qo(t,e,n)}function qo(t,e,n){if(Jr(n))t.removeAttribute(e);else{if(tt&&!et&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var zo={create:Bo,update:Bo};function Wo(t,e){var n=e.elm,i=e.data,a=t.data;if(!(r(i.staticClass)&&r(i.class)&&(r(a)||r(a.staticClass)&&r(a.class)))){var s=Gr(e),c=n._transitionClasses;o(c)&&(s=Zr(s,to(c))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var Ko,Xo={create:Wo,update:Wo},Jo="__r",Go="__c";function Qo(t){if(o(t[Jo])){var e=tt?"change":"input";t[e]=[].concat(t[Jo],t[e]||[]),delete t[Jo]}o(t[Go])&&(t.change=[].concat(t[Go],t.change||[]),delete t[Go])}function Yo(t,e,n){var r=Ko;return function o(){var i=e.apply(null,arguments);null!==i&&ei(t,o,n,r)}}var Zo=se&&!(ot&&Number(ot[1])<=53);function ti(t,e,n,r){if(Zo){var o=Xn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}Ko.addEventListener(t,e,at?{capture:n,passive:r}:n)}function ei(t,e,n,r){(r||Ko).removeEventListener(t,e._wrapper||e,n)}function ni(t,e){if(!r(t.data.on)||!r(e.data.on)){var n=e.data.on||{},o=t.data.on||{};Ko=e.elm,Qo(n),we(n,o,ti,ei,Yo,e.context),Ko=void 0}}var ri,oi={create:ni,update:ni};function ii(t,e){if(!r(t.data.domProps)||!r(e.data.domProps)){var n,i,a=e.elm,s=t.data.domProps||{},c=e.data.domProps||{};for(n in o(c.__ob__)&&(c=e.data.domProps=j({},c)),s)n in c||(a[n]="");for(n in c){if(i=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),i===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=i;var u=r(i)?"":String(i);ai(a,u)&&(a.value=u)}else if("innerHTML"===n&&io(a.tagName)&&r(a.innerHTML)){ri=ri||document.createElement("div"),ri.innerHTML=""+i+"";var f=ri.firstChild;while(a.firstChild)a.removeChild(a.firstChild);while(f.firstChild)a.appendChild(f.firstChild)}else if(i!==s[n])try{a[n]=i}catch(Aa){}}}}function ai(t,e){return!t.composing&&("OPTION"===t.tagName||si(t,e)||ci(t,e))}function si(t,e){var n=!0;try{n=document.activeElement!==t}catch(Aa){}return n&&t.value!==e}function ci(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var ui={create:ii,update:ii},fi=w((function(t){var e={},n=/;(?![^(]*\))/g,r=/:(.+)/;return t.split(n).forEach((function(t){if(t){var n=t.split(r);n.length>1&&(e[n[0].trim()]=n[1].trim())}})),e}));function li(t){var e=pi(t.style);return t.staticStyle?j(t.staticStyle,e):e}function pi(t){return Array.isArray(t)?R(t):"string"===typeof t?fi(t):t}function di(t,e){var n,r={};if(e){var o=t;while(o.componentInstance)o=o.componentInstance._vnode,o&&o.data&&(n=li(o.data))&&j(r,n)}(n=li(t.data))&&j(r,n);var i=t;while(i=i.parent)i.data&&(n=li(i.data))&&j(r,n);return r}var hi,vi=/^--/,yi=/\s*!important$/,mi=function(t,e,n){if(vi.test(e))t.style.setProperty(e,n);else if(yi.test(n))t.style.setProperty(k(e),n.replace(yi,""),"important");else{var r=_i(e);if(Array.isArray(n))for(var o=0,i=n.length;o-1?e.split(Ci).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Ai(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Ci).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";while(n.indexOf(r)>=0)n=n.replace(r," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function $i(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&j(e,ki(t.name||"v")),j(e,t),e}return"string"===typeof t?ki(t):void 0}}var ki=w((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Oi=G&&!et,Si="transition",Ei="animation",Ti="transition",ji="transitionend",Ri="animation",Pi="animationend";Oi&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Ti="WebkitTransition",ji="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ri="WebkitAnimation",Pi="webkitAnimationEnd"));var Ii=G?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Li(t){Ii((function(){Ii(t)}))}function Ni(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),xi(t,e))}function Di(t,e){t._transitionClasses&&g(t._transitionClasses,e),Ai(t,e)}function Mi(t,e,n){var r=Ui(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s=o===Si?ji:Pi,c=0,u=function(){t.removeEventListener(s,f),n()},f=function(e){e.target===t&&++c>=a&&u()};setTimeout((function(){c0&&(n=Si,f=a,l=i.length):e===Ei?u>0&&(n=Ei,f=u,l=c.length):(f=Math.max(a,u),n=f>0?a>u?Si:Ei:null,l=n?n===Si?i.length:c.length:0);var p=n===Si&&Fi.test(r[Ti+"Property"]);return{type:n,timeout:f,propCount:l,hasTransform:p}}function Vi(t,e){while(t.length1}function Ki(t,e){!0!==e.data.show&&Hi(e)}var Xi=G?{create:Ki,activate:Ki,remove:function(t,e){!0!==t.data.show?qi(t,e):e()}}:{},Ji=[zo,Xo,oi,ui,wi,Xi],Gi=Ji.concat(Vo),Qi=Po({nodeOps:$o,modules:Gi});et&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&ia(t,"input")}));var Yi={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?Ce(n,"postpatch",(function(){Yi.componentUpdated(t,e,n)})):Zi(t,e,n.context),t._vOptions=[].map.call(t.options,na)):("textarea"===n.tag||fo(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",ra),t.addEventListener("compositionend",oa),t.addEventListener("change",oa),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Zi(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,na);if(o.some((function(t,e){return!N(t,r[e])}))){var i=t.multiple?e.value.some((function(t){return ea(t,o)})):e.value!==e.oldValue&&ea(e.value,o);i&&ia(t,"change")}}}};function Zi(t,e,n){ta(t,e,n),(tt||nt)&&setTimeout((function(){ta(t,e,n)}),0)}function ta(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,s=0,c=t.options.length;s-1,a.selected!==i&&(a.selected=i);else if(N(na(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));o||(t.selectedIndex=-1)}}function ea(t,e){return e.every((function(e){return!N(e,t)}))}function na(t){return"_value"in t?t._value:t.value}function ra(t){t.target.composing=!0}function oa(t){t.target.composing&&(t.target.composing=!1,ia(t.target,"input"))}function ia(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function aa(t){return!t.componentInstance||t.data&&t.data.transition?t:aa(t.componentInstance._vnode)}var sa={bind:function(t,e,n){var r=e.value;n=aa(n);var o=n.data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&o?(n.data.show=!0,Hi(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value,o=e.oldValue;if(!r!==!o){n=aa(n);var i=n.data&&n.data.transition;i?(n.data.show=!0,r?Hi(n,(function(){t.style.display=t.__vOriginalDisplay})):qi(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}},ca={model:Yi,show:sa},ua={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function fa(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?fa(An(e.children)):t}function la(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[x(i)]=o[i];return e}function pa(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function da(t){while(t=t.parent)if(t.data.transition)return!0}function ha(t,e){return e.key===t.key&&e.tag===t.tag}var va=function(t){return t.tag||Ie(t)},ya=function(t){return"show"===t.name},ma={name:"transition",props:ua,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(va),n.length)){0;var r=this.mode;0;var o=n[0];if(da(this.$vnode))return o;var i=fa(o);if(!i)return o;if(this._leaving)return pa(t,o);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:s(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var c=(i.data||(i.data={})).transition=la(this),u=this._vnode,f=fa(u);if(i.data.directives&&i.data.directives.some(ya)&&(i.data.show=!0),f&&f.data&&!ha(i,f)&&!Ie(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=j({},c);if("out-in"===r)return this._leaving=!0,Ce(l,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),pa(t,o);if("in-out"===r){if(Ie(i))return u;var p,d=function(){p()};Ce(c,"afterEnter",d),Ce(c,"enterCancelled",d),Ce(l,"delayLeave",(function(t){p=t}))}}return o}}},ga=j({tag:String,moveClass:String},ua);delete ga.mode;var _a={props:ga,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Rn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=la(this),s=0;s=0&&(e=t.slice(r),t=t.slice(0,r));var o=t.indexOf("?");return o>=0&&(n=t.slice(o+1),t=t.slice(0,o)),{path:t,query:n,hash:e}}function T(t){return t.replace(/\/\//g,"/")}var j=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},R=Q,P=M,I=F,L=B,N=G,D=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function M(t,e){var n,r=[],o=0,i=0,a="",s=e&&e.delimiter||"/";while(null!=(n=D.exec(t))){var c=n[0],u=n[1],f=n.index;if(a+=t.slice(i,f),i=f+c.length,u)a+=u[1];else{var l=t[i],p=n[2],d=n[3],h=n[4],v=n[5],y=n[6],m=n[7];a&&(r.push(a),a="");var g=null!=p&&null!=l&&l!==p,_="+"===y||"*"===y,b="?"===y||"*"===y,w=n[2]||s,C=h||v;r.push({name:d||o++,prefix:p||"",delimiter:w,optional:b,repeat:_,partial:g,asterisk:!!m,pattern:C?q(C):m?".*":"[^"+H(w)+"]+?"})}}return i1||!A.length)return 0===A.length?t():t("span",{},A)}if("a"===this.tag)x.on=w,x.attrs={href:c,"aria-current":g};else{var $=st(this.$slots.default);if($){$.isStatic=!1;var k=$.data=o({},$.data);for(var O in k.on=k.on||{},k.on){var S=k.on[O];O in w&&(k.on[O]=Array.isArray(S)?S:[S])}for(var E in w)E in k.on?k.on[E].push(w[E]):k.on[E]=_;var T=$.data.attrs=o({},$.data.attrs);T.href=c,T["aria-current"]=g}else x.on=w}return t(this.tag,x,this.$slots.default)}};function at(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function st(t){if(t)for(var e,n=0;n-1&&(s.params[l]=n.params[l]);return s.path=Z(u.path,s.params,'named route "'+c+'"'),p(u,s,a)}if(s.path){s.params={};for(var d=0;d=t.length?n():t[o]?e(t[o],(function(){r(o+1)})):r(o+1)};r(0)}var Ft={redirected:2,aborted:4,cancelled:8,duplicated:16};function Ut(t,e){return qt(t,e,Ft.redirected,'Redirected when going from "'+t.fullPath+'" to "'+Wt(e)+'" via a navigation guard.')}function Vt(t,e){var n=qt(t,e,Ft.duplicated,'Avoided redundant navigation to current location: "'+t.fullPath+'".');return n.name="NavigationDuplicated",n}function Bt(t,e){return qt(t,e,Ft.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Ht(t,e){return qt(t,e,Ft.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}function qt(t,e,n,r){var o=new Error(r);return o._isRouter=!0,o.from=t,o.to=e,o.type=n,o}var zt=["params","query","hash"];function Wt(t){if("string"===typeof t)return t;if("path"in t)return t.path;var e={};return zt.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}function Kt(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function Xt(t,e){return Kt(t)&&t._isRouter&&(null==e||t.type===e)}function Jt(t){return function(e,n,r){var o=!1,i=0,a=null;Gt(t,(function(t,e,n,s){if("function"===typeof t&&void 0===t.cid){o=!0,i++;var c,u=te((function(e){Zt(e)&&(e=e.default),t.resolved="function"===typeof e?e:et.extend(e),n.components[s]=e,i--,i<=0&&r()})),f=te((function(t){var e="Failed to resolve async component "+s+": "+t;a||(a=Kt(t)?t:new Error(e),r(a))}));try{c=t(u,f)}catch(p){f(p)}if(c)if("function"===typeof c.then)c.then(u,f);else{var l=c.component;l&&"function"===typeof l.then&&l.then(u,f)}}})),o||r()}}function Gt(t,e){return Qt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function Qt(t){return Array.prototype.concat.apply([],t)}var Yt="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Zt(t){return t.__esModule||Yt&&"Module"===t[Symbol.toStringTag]}function te(t){var e=!1;return function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var ee=function(t,e){this.router=t,this.base=ne(e),this.current=m,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function ne(t){if(!t)if(ut){var e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}function re(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n0)){var e=this.router,n=e.options.scrollBehavior,r=Lt&&n;r&&this.listeners.push(xt());var o=function(){var n=t.current,o=pe(t.base);t.current===m&&o===t._startLocation||t.transitionTo(o,(function(t){r&&At(e,t,n,!0)}))};window.addEventListener("popstate",o),this.listeners.push((function(){window.removeEventListener("popstate",o)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){Nt(T(r.base+t.fullPath)),At(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){Dt(T(r.base+t.fullPath)),At(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(pe(this.base)!==this.current.fullPath){var e=T(this.base+this.current.fullPath);t?Nt(e):Dt(e)}},e.prototype.getCurrentLocation=function(){return pe(this.base)},e}(ee);function pe(t){var e=window.location.pathname,n=e.toLowerCase(),r=t.toLowerCase();return!t||n!==r&&0!==n.indexOf(T(r+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var de=function(t){function e(e,n,r){t.call(this,e,n),r&&he(this.base)||ve()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,r=Lt&&n;r&&this.listeners.push(xt());var o=function(){var e=t.current;ve()&&t.transitionTo(ye(),(function(n){r&&At(t.router,n,e,!0),Lt||_e(n.fullPath)}))},i=Lt?"popstate":"hashchange";window.addEventListener(i,o),this.listeners.push((function(){window.removeEventListener(i,o)}))}},e.prototype.push=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){ge(t.fullPath),At(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){_e(t.fullPath),At(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;ye()!==e&&(t?ge(e):_e(e))},e.prototype.getCurrentLocation=function(){return ye()},e}(ee);function he(t){var e=pe(t);if(!/^\/#/.test(e))return window.location.replace(T(t+"/#"+e)),!0}function ve(){var t=ye();return"/"===t.charAt(0)||(_e("/"+t),!1)}function ye(){var t=window.location.href,e=t.indexOf("#");return e<0?"":(t=t.slice(e+1),t)}function me(t){var e=window.location.href,n=e.indexOf("#"),r=n>=0?e.slice(0,n):e;return r+"#"+t}function ge(t){Lt?Nt(me(t)):window.location.hash=t}function _e(t){Lt?Dt(me(t)):window.location.replace(me(t))}var be=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){var t=e.current;e.index=n,e.updateRoute(r),e.router.afterHooks.forEach((function(e){e&&e(r,t)}))}),(function(t){Xt(t,Ft.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(ee),we=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=ht(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Lt&&!1!==t.fallback,this.fallback&&(e="hash"),ut||(e="abstract"),this.mode=e,e){case"history":this.history=new le(this,t.base);break;case"hash":this.history=new de(this,t.base,this.fallback);break;case"abstract":this.history=new be(this,t.base);break;default:0}},Ce={currentRoute:{configurable:!0}};function xe(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function Ae(t,e,n){var r="hash"===n?"#"+e:e;return t?T(t+"/"+r):r}we.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Ce.currentRoute.get=function(){return this.history&&this.history.current},we.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof le||n instanceof de){var r=function(t){var r=n.current,o=e.options.scrollBehavior,i=Lt&&o;i&&"fullPath"in t&&At(e,t,r,!1)},o=function(t){n.setupListeners(),r(t)};n.transitionTo(n.getCurrentLocation(),o,o)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},we.prototype.beforeEach=function(t){return xe(this.beforeHooks,t)},we.prototype.beforeResolve=function(t){return xe(this.resolveHooks,t)},we.prototype.afterEach=function(t){return xe(this.afterHooks,t)},we.prototype.onReady=function(t,e){this.history.onReady(t,e)},we.prototype.onError=function(t){this.history.onError(t)},we.prototype.push=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.push(t,e,n)}));this.history.push(t,e,n)},we.prototype.replace=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.replace(t,e,n)}));this.history.replace(t,e,n)},we.prototype.go=function(t){this.history.go(t)},we.prototype.back=function(){this.go(-1)},we.prototype.forward=function(){this.go(1)},we.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},we.prototype.resolve=function(t,e,n){e=e||this.history.current;var r=tt(t,e,n,this),o=this.match(r,e),i=o.redirectedFrom||o.fullPath,a=this.history.base,s=Ae(a,i,this.mode);return{location:r,route:o,href:s,normalizedTo:r,resolved:o}},we.prototype.getRoutes=function(){return this.matcher.getRoutes()},we.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==m&&this.history.transitionTo(this.history.getCurrentLocation())},we.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==m&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(we.prototype,Ce),we.install=ct,we.version="3.5.2",we.isNavigationFailure=Xt,we.NavigationFailureType=Ft,we.START_LOCATION=m,ut&&window.Vue&&window.Vue.use(we),e["a"]=we},c8ba:function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(r){"object"===typeof window&&(n=window)}t.exports=n},e7a5:function(t,e,n){(function(e){(function(e,n){t.exports=n(e)})("undefined"!=typeof e?e:this,(function(t){if(t.CSS&&t.CSS.escape)return t.CSS.escape;var e=function(t){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");var e,n=String(t),r=n.length,o=-1,i="",a=n.charCodeAt(0);while(++o=1&&e<=31||127==e||0==o&&e>=48&&e<=57||1==o&&e>=48&&e<=57&&45==a?"\\"+e.toString(16)+" ":(0!=o||1!=r||45!=e)&&(e>=128||45==e||95==e||e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122)?n.charAt(o):"\\"+n.charAt(o):"�";return i};return t.CSS||(t.CSS={}),t.CSS.escape=e,e}))}).call(this,n("c8ba"))}}]); \ No newline at end of file diff --git a/docs/js/chunk-vendors.ba2dd0cb.js b/docs/js/chunk-vendors.ba2dd0cb.js new file mode 100644 index 0000000..1230066 --- /dev/null +++ b/docs/js/chunk-vendors.ba2dd0cb.js @@ -0,0 +1,26 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{2877:function(t,e,n){"use strict";function r(t,e,n,r,i,o,a,s){var c,u="function"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),a?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=c):i&&(c=s?function(){i.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(u.functional){u._injectStyles=c;var l=u.render;u.render=function(t,e){return c.call(e),l(t,e)}}else{var f=u.beforeCreate;u.beforeCreate=f?[].concat(f,c):[c]}return{exports:t,options:u}}n.d(e,"a",(function(){return r}))},"2b0e":function(t,e,n){"use strict";n.r(e),function(t){ +/*! + * Vue.js v2.6.14 + * (c) 2014-2021 Evan You + * Released under the MIT License. + */ +var n=Object.freeze({});function r(t){return void 0===t||null===t}function i(t){return void 0!==t&&null!==t}function o(t){return!0===t}function a(t){return!1===t}function s(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function c(t){return null!==t&&"object"===typeof t}var u=Object.prototype.toString;function l(t){return"[object Object]"===u.call(t)}function f(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function h(t){return i(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function d(t){return null==t?"":Array.isArray(t)||l(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}var _=Object.prototype.hasOwnProperty;function b(t,e){return _.call(t,e)}function w(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var C=/-(\w)/g,k=w((function(t){return t.replace(C,(function(t,e){return e?e.toUpperCase():""}))})),$=w((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),x=/\B([A-Z])/g,A=w((function(t){return t.replace(x,"-$1").toLowerCase()}));function O(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function S(t,e){return t.bind(e)}var T=Function.prototype.bind?S:O;function E(t,e){e=e||0;var n=t.length-e,r=new Array(n);while(n--)r[n]=t[n+e];return r}function j(t,e){for(var n in e)t[n]=e[n];return t}function F(t){for(var e={},n=0;n0,nt=Q&&Q.indexOf("edge/")>0,rt=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===Y),it=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),ot={}.watch,at=!1;if(X)try{var st={};Object.defineProperty(st,"passive",{get:function(){at=!0}}),window.addEventListener("test-passive",null,st)}catch($a){}var ct=function(){return void 0===K&&(K=!X&&!Z&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),K},ut=X&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function lt(t){return"function"===typeof t&&/native code/.test(t.toString())}var ft,pt="undefined"!==typeof Symbol&<(Symbol)&&"undefined"!==typeof Reflect&<(Reflect.ownKeys);ft="undefined"!==typeof Set&<(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ht=I,dt=0,vt=function(){this.id=dt++,this.subs=[]};vt.prototype.addSub=function(t){this.subs.push(t)},vt.prototype.removeSub=function(t){g(this.subs,t)},vt.prototype.depend=function(){vt.target&&vt.target.addDep(this)},vt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(o&&!b(i,"default"))a=!1;else if(""===a||a===A(t)){var c=ee(String,i.type);(c<0||s0&&(a=Se(a,(e||"")+"_"+n),Oe(a[0])&&Oe(u)&&(l[c]=Ct(u.text+a[0].text),a.shift()),l.push.apply(l,a)):s(a)?Oe(u)?l[c]=Ct(u.text+a):""!==a&&l.push(Ct(a)):Oe(a)&&Oe(u)?l[c]=Ct(u.text+a.text):(o(t._isVList)&&i(a.tag)&&r(a.key)&&i(e)&&(a.key="__vlist"+e+"_"+n+"__"),l.push(a)));return l}function Te(t){var e=t.$options.provide;e&&(t._provided="function"===typeof e?e.call(t):e)}function Ee(t){var e=je(t.$options.inject,t);e&&(Tt(!1),Object.keys(e).forEach((function(n){Lt(t,n,e[n])})),Tt(!0))}function je(t,e){if(t){for(var n=Object.create(null),r=pt?Reflect.ownKeys(t):Object.keys(t),i=0;i0,a=t?!!t.$stable:!o,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==n&&s===r.$key&&!o&&!r.$hasNormal)return r;for(var c in i={},t)t[c]&&"$"!==c[0]&&(i[c]=De(e,c,t[c]))}else i={};for(var u in e)u in i||(i[u]=Re(e,u));return t&&Object.isExtensible(t)&&(t._normalized=i),z(i,"$stable",a),z(i,"$key",s),z(i,"$hasNormal",o),i}function De(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});t=t&&"object"===typeof t&&!Array.isArray(t)?[t]:Ae(t);var e=t&&t[0];return t&&(!e||1===t.length&&e.isComment&&!Le(e))?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function Re(t,e){return function(){return t[e]}}function Ne(t,e){var n,r,o,a,s;if(Array.isArray(t)||"string"===typeof t)for(n=new Array(t.length),r=0,o=t.length;r1?E(n):n;for(var r=E(arguments,1),i='event handler for "'+t+'"',o=0,a=n.length;odocument.createEvent("Event").timeStamp&&(Gn=function(){return Xn.now()})}function Zn(){var t,e;for(Kn=Gn(),zn=!0,Wn.sort((function(t,e){return t.id-e.id})),qn=0;qnqn&&Wn[n].id>t.id)n--;Wn.splice(n+1,0,t)}else Wn.push(t);Bn||(Bn=!0,ve(Zn))}}var nr=0,rr=function(t,e,n,r,i){this.vm=t,i&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++nr,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ft,this.newDepIds=new ft,this.expression="","function"===typeof e?this.getter=e:(this.getter=J(e),this.getter||(this.getter=I)),this.value=this.lazy?void 0:this.get()};rr.prototype.get=function(){var t;yt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch($a){if(!this.user)throw $a;ne($a,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ye(t),gt(),this.cleanupDeps()}return t},rr.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},rr.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},rr.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():er(this)},rr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher "'+this.expression+'"';re(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},rr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},rr.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},rr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var ir={enumerable:!0,configurable:!0,get:I,set:I};function or(t,e,n){ir.get=function(){return this[e][n]},ir.set=function(t){this[e][n]=t},Object.defineProperty(t,n,ir)}function ar(t){t._watchers=[];var e=t.$options;e.props&&sr(t,e.props),e.methods&&vr(t,e.methods),e.data?cr(t):It(t._data={},!0),e.computed&&fr(t,e.computed),e.watch&&e.watch!==ot&&mr(t,e.watch)}function sr(t,e){var n=t.$options.propsData||{},r=t._props={},i=t.$options._propKeys=[],o=!t.$parent;o||Tt(!1);var a=function(o){i.push(o);var a=Xt(o,e,n,t);Lt(r,o,a),o in t||or(t,"_props",o)};for(var s in e)a(s);Tt(!0)}function cr(t){var e=t.$options.data;e=t._data="function"===typeof e?ur(e,t):e||{},l(e)||(e={});var n=Object.keys(e),r=t.$options.props,i=(t.$options.methods,n.length);while(i--){var o=n[i];0,r&&b(r,o)||B(o)||or(t,"_data",o)}It(e,!0)}function ur(t,e){yt();try{return t.call(e,e)}catch($a){return ne($a,e,"data()"),{}}finally{gt()}}var lr={lazy:!0};function fr(t,e){var n=t._computedWatchers=Object.create(null),r=ct();for(var i in e){var o=e[i],a="function"===typeof o?o:o.get;0,r||(n[i]=new rr(t,a||I,I,lr)),i in t||pr(t,i,o)}}function pr(t,e,n){var r=!ct();"function"===typeof n?(ir.get=r?hr(e):dr(n),ir.set=I):(ir.get=n.get?r&&!1!==n.cache?hr(e):dr(n.get):I,ir.set=n.set||I),Object.defineProperty(t,e,ir)}function hr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),vt.target&&e.depend(),e.value}}function dr(t){return function(){return t.call(this,this)}}function vr(t,e){t.$options.props;for(var n in e)t[n]="function"!==typeof e[n]?I:T(e[n],t)}function mr(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var i=0;i-1)return this;var n=E(arguments,1);return n.unshift(this),"function"===typeof t.install?t.install.apply(t,n):"function"===typeof t&&t.apply(null,n),e.push(t),this}}function Ar(t){t.mixin=function(t){return this.options=Kt(this.options,t),this}}function Or(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name;var a=function(t){this._init(t)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=e++,a.options=Kt(n.options,t),a["super"]=n,a.options.props&&Sr(a),a.options.computed&&Tr(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,V.forEach((function(t){a[t]=n[t]})),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=j({},a.options),i[r]=a,a}}function Sr(t){var e=t.options.props;for(var n in e)or(t.prototype,"_props",n)}function Tr(t){var e=t.options.computed;for(var n in e)pr(t.prototype,n,e[n])}function Er(t){V.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&l(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"===typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}function jr(t){return t&&(t.Ctor.options.name||t.tag)}function Fr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!f(t)&&t.test(e)}function Ir(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=a.name;s&&!e(s)&&Lr(n,o,r,i)}}}function Lr(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,g(n,e)}br($r),gr($r),En($r),Ln($r),bn($r);var Mr=[String,RegExp,Array],Dr={name:"keep-alive",abstract:!0,props:{include:Mr,exclude:Mr,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,i=t.keyToCache;if(r){var o=r.tag,a=r.componentInstance,s=r.componentOptions;e[i]={name:jr(s),tag:o,componentInstance:a},n.push(i),this.max&&n.length>parseInt(this.max)&&Lr(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Lr(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){Ir(t,(function(t){return Fr(e,t)}))})),this.$watch("exclude",(function(e){Ir(t,(function(t){return!Fr(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=$n(t),n=e&&e.componentOptions;if(n){var r=jr(n),i=this,o=i.include,a=i.exclude;if(o&&(!r||!Fr(o,r))||a&&r&&Fr(a,r))return e;var s=this,c=s.cache,u=s.keys,l=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;c[l]?(e.componentInstance=c[l].componentInstance,g(u,l),u.push(l)):(this.vnodeToCache=e,this.keyToCache=l),e.data.keepAlive=!0}return e||t&&t[0]}},Rr={KeepAlive:Dr};function Nr(t){var e={get:function(){return H}};Object.defineProperty(t,"config",e),t.util={warn:ht,extend:j,mergeOptions:Kt,defineReactive:Lt},t.set=Mt,t.delete=Dt,t.nextTick=ve,t.observable=function(t){return It(t),t},t.options=Object.create(null),V.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,j(t.options.components,Rr),xr(t),Ar(t),Or(t),Er(t)}Nr($r),Object.defineProperty($r.prototype,"$isServer",{get:ct}),Object.defineProperty($r.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty($r,"FunctionalRenderContext",{value:Qe}),$r.version="2.6.14";var Pr=m("style,class"),Vr=m("input,textarea,option,select,progress"),Wr=function(t,e,n){return"value"===n&&Vr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Hr=m("contenteditable,draggable,spellcheck"),Ur=m("events,caret,typing,plaintext-only"),Br=function(t,e){return Gr(e)||"false"===e?"false":"contenteditable"===t&&Ur(e)?e:"true"},zr=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),qr="http://www.w3.org/1999/xlink",Jr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Kr=function(t){return Jr(t)?t.slice(6,t.length):""},Gr=function(t){return null==t||!1===t};function Xr(t){var e=t.data,n=t,r=t;while(i(r.componentInstance))r=r.componentInstance._vnode,r&&r.data&&(e=Zr(r.data,e));while(i(n=n.parent))n&&n.data&&(e=Zr(e,n.data));return Yr(e.staticClass,e.class)}function Zr(t,e){return{staticClass:Qr(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Yr(t,e){return i(t)||i(e)?Qr(t,ti(e)):""}function Qr(t,e){return t?e?t+" "+e:t:e||""}function ti(t){return Array.isArray(t)?ei(t):c(t)?ni(t):"string"===typeof t?t:""}function ei(t){for(var e,n="",r=0,o=t.length;r-1?ci[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ci[t]=/HTMLUnknownElement/.test(e.toString())}var li=m("text,number,password,search,email,tel,url");function fi(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function pi(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n}function hi(t,e){return document.createElementNS(ri[t],e)}function di(t){return document.createTextNode(t)}function vi(t){return document.createComment(t)}function mi(t,e,n){t.insertBefore(e,n)}function yi(t,e){t.removeChild(e)}function gi(t,e){t.appendChild(e)}function _i(t){return t.parentNode}function bi(t){return t.nextSibling}function wi(t){return t.tagName}function Ci(t,e){t.textContent=e}function ki(t,e){t.setAttribute(e,"")}var $i=Object.freeze({createElement:pi,createElementNS:hi,createTextNode:di,createComment:vi,insertBefore:mi,removeChild:yi,appendChild:gi,parentNode:_i,nextSibling:bi,tagName:wi,setTextContent:Ci,setStyleScope:ki}),xi={create:function(t,e){Ai(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ai(t,!0),Ai(e))},destroy:function(t){Ai(t,!0)}};function Ai(t,e){var n=t.data.ref;if(i(n)){var r=t.context,o=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],o):a[n]===o&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(o)<0&&a[n].push(o):a[n]=[o]:a[n]=o}}var Oi=new _t("",{},[]),Si=["create","activate","update","remove","destroy"];function Ti(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&i(t.data)===i(e.data)&&Ei(t,e)||o(t.isAsyncPlaceholder)&&r(e.asyncFactory.error))}function Ei(t,e){if("input"!==t.tag)return!0;var n,r=i(n=t.data)&&i(n=n.attrs)&&n.type,o=i(n=e.data)&&i(n=n.attrs)&&n.type;return r===o||li(r)&&li(o)}function ji(t,e,n){var r,o,a={};for(r=e;r<=n;++r)o=t[r].key,i(o)&&(a[o]=r);return a}function Fi(t){var e,n,a={},c=t.modules,u=t.nodeOps;for(e=0;ev?(f=r(n[g+1])?null:n[g+1].elm,k(t,f,n,d,g,o)):d>g&&x(e,p,v)}function S(t,e,n,r){for(var o=n;o-1?Ui(t,e,n):zr(e)?Gr(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Hr(e)?t.setAttribute(e,Br(e,n)):Jr(e)?Gr(n)?t.removeAttributeNS(qr,Kr(e)):t.setAttributeNS(qr,e,n):Ui(t,e,n)}function Ui(t,e,n){if(Gr(n))t.removeAttribute(e);else{if(tt&&!et&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Bi={create:Wi,update:Wi};function zi(t,e){var n=e.elm,o=e.data,a=t.data;if(!(r(o.staticClass)&&r(o.class)&&(r(a)||r(a.staticClass)&&r(a.class)))){var s=Xr(e),c=n._transitionClasses;i(c)&&(s=Qr(s,ti(c))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var qi,Ji={create:zi,update:zi},Ki="__r",Gi="__c";function Xi(t){if(i(t[Ki])){var e=tt?"change":"input";t[e]=[].concat(t[Ki],t[e]||[]),delete t[Ki]}i(t[Gi])&&(t.change=[].concat(t[Gi],t.change||[]),delete t[Gi])}function Zi(t,e,n){var r=qi;return function i(){var o=e.apply(null,arguments);null!==o&&to(t,i,n,r)}}var Yi=se&&!(it&&Number(it[1])<=53);function Qi(t,e,n,r){if(Yi){var i=Kn,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}qi.addEventListener(t,e,at?{capture:n,passive:r}:n)}function to(t,e,n,r){(r||qi).removeEventListener(t,e._wrapper||e,n)}function eo(t,e){if(!r(t.data.on)||!r(e.data.on)){var n=e.data.on||{},i=t.data.on||{};qi=e.elm,Xi(n),we(n,i,Qi,to,Zi,e.context),qi=void 0}}var no,ro={create:eo,update:eo};function io(t,e){if(!r(t.data.domProps)||!r(e.data.domProps)){var n,o,a=e.elm,s=t.data.domProps||{},c=e.data.domProps||{};for(n in i(c.__ob__)&&(c=e.data.domProps=j({},c)),s)n in c||(a[n]="");for(n in c){if(o=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),o===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=o;var u=r(o)?"":String(o);oo(a,u)&&(a.value=u)}else if("innerHTML"===n&&oi(a.tagName)&&r(a.innerHTML)){no=no||document.createElement("div"),no.innerHTML=""+o+"";var l=no.firstChild;while(a.firstChild)a.removeChild(a.firstChild);while(l.firstChild)a.appendChild(l.firstChild)}else if(o!==s[n])try{a[n]=o}catch($a){}}}}function oo(t,e){return!t.composing&&("OPTION"===t.tagName||ao(t,e)||so(t,e))}function ao(t,e){var n=!0;try{n=document.activeElement!==t}catch($a){}return n&&t.value!==e}function so(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var co={create:io,update:io},uo=w((function(t){var e={},n=/;(?![^(]*\))/g,r=/:(.+)/;return t.split(n).forEach((function(t){if(t){var n=t.split(r);n.length>1&&(e[n[0].trim()]=n[1].trim())}})),e}));function lo(t){var e=fo(t.style);return t.staticStyle?j(t.staticStyle,e):e}function fo(t){return Array.isArray(t)?F(t):"string"===typeof t?uo(t):t}function po(t,e){var n,r={};if(e){var i=t;while(i.componentInstance)i=i.componentInstance._vnode,i&&i.data&&(n=lo(i.data))&&j(r,n)}(n=lo(t.data))&&j(r,n);var o=t;while(o=o.parent)o.data&&(n=lo(o.data))&&j(r,n);return r}var ho,vo=/^--/,mo=/\s*!important$/,yo=function(t,e,n){if(vo.test(e))t.style.setProperty(e,n);else if(mo.test(n))t.style.setProperty(A(e),n.replace(mo,""),"important");else{var r=_o(e);if(Array.isArray(n))for(var i=0,o=n.length;i-1?e.split(Co).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function $o(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Co).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";while(n.indexOf(r)>=0)n=n.replace(r," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function xo(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&j(e,Ao(t.name||"v")),j(e,t),e}return"string"===typeof t?Ao(t):void 0}}var Ao=w((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Oo=X&&!et,So="transition",To="animation",Eo="transition",jo="transitionend",Fo="animation",Io="animationend";Oo&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Eo="WebkitTransition",jo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Fo="WebkitAnimation",Io="webkitAnimationEnd"));var Lo=X?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Mo(t){Lo((function(){Lo(t)}))}function Do(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),ko(t,e))}function Ro(t,e){t._transitionClasses&&g(t._transitionClasses,e),$o(t,e)}function No(t,e,n){var r=Vo(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===So?jo:Io,c=0,u=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++c>=a&&u()};setTimeout((function(){c0&&(n=So,l=a,f=o.length):e===To?u>0&&(n=To,l=u,f=c.length):(l=Math.max(a,u),n=l>0?a>u?So:To:null,f=n?n===So?o.length:c.length:0);var p=n===So&&Po.test(r[Eo+"Property"]);return{type:n,timeout:l,propCount:f,hasTransform:p}}function Wo(t,e){while(t.length1}function Jo(t,e){!0!==e.data.show&&Uo(e)}var Ko=X?{create:Jo,activate:Jo,remove:function(t,e){!0!==t.data.show?Bo(t,e):e()}}:{},Go=[Bi,Ji,ro,co,wo,Ko],Xo=Go.concat(Vi),Zo=Fi({nodeOps:$i,modules:Xo});et&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&oa(t,"input")}));var Yo={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?Ce(n,"postpatch",(function(){Yo.componentUpdated(t,e,n)})):Qo(t,e,n.context),t._vOptions=[].map.call(t.options,na)):("textarea"===n.tag||li(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",ra),t.addEventListener("compositionend",ia),t.addEventListener("change",ia),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Qo(t,e,n.context);var r=t._vOptions,i=t._vOptions=[].map.call(t.options,na);if(i.some((function(t,e){return!D(t,r[e])}))){var o=t.multiple?e.value.some((function(t){return ea(t,i)})):e.value!==e.oldValue&&ea(e.value,i);o&&oa(t,"change")}}}};function Qo(t,e,n){ta(t,e,n),(tt||nt)&&setTimeout((function(){ta(t,e,n)}),0)}function ta(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=t.options.length;s-1,a.selected!==o&&(a.selected=o);else if(D(na(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function ea(t,e){return e.every((function(e){return!D(e,t)}))}function na(t){return"_value"in t?t._value:t.value}function ra(t){t.target.composing=!0}function ia(t){t.target.composing&&(t.target.composing=!1,oa(t.target,"input"))}function oa(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function aa(t){return!t.componentInstance||t.data&&t.data.transition?t:aa(t.componentInstance._vnode)}var sa={bind:function(t,e,n){var r=e.value;n=aa(n);var i=n.data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(n.data.show=!0,Uo(n,(function(){t.style.display=o}))):t.style.display=r?o:"none"},update:function(t,e,n){var r=e.value,i=e.oldValue;if(!r!==!i){n=aa(n);var o=n.data&&n.data.transition;o?(n.data.show=!0,r?Uo(n,(function(){t.style.display=t.__vOriginalDisplay})):Bo(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,r,i){i||(t.style.display=t.__vOriginalDisplay)}},ca={model:Yo,show:sa},ua={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function la(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?la($n(e.children)):t}function fa(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[k(o)]=i[o];return e}function pa(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ha(t){while(t=t.parent)if(t.data.transition)return!0}function da(t,e){return e.key===t.key&&e.tag===t.tag}var va=function(t){return t.tag||Le(t)},ma=function(t){return"show"===t.name},ya={name:"transition",props:ua,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(va),n.length)){0;var r=this.mode;0;var i=n[0];if(ha(this.$vnode))return i;var o=la(i);if(!o)return i;if(this._leaving)return pa(t,i);var a="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?a+"comment":a+o.tag:s(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var c=(o.data||(o.data={})).transition=fa(this),u=this._vnode,l=la(u);if(o.data.directives&&o.data.directives.some(ma)&&(o.data.show=!0),l&&l.data&&!da(o,l)&&!Le(l)&&(!l.componentInstance||!l.componentInstance._vnode.isComment)){var f=l.data.transition=j({},c);if("out-in"===r)return this._leaving=!0,Ce(f,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),pa(t,i);if("in-out"===r){if(Le(o))return u;var p,h=function(){p()};Ce(c,"afterEnter",h),Ce(c,"enterCancelled",h),Ce(f,"delayLeave",(function(t){p=t}))}}return i}}},ga=j({tag:String,moveClass:String},ua);delete ga.mode;var _a={props:ga,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var i=Fn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],a=fa(this),s=0;s=0&&(e=t.slice(r),t=t.slice(0,r));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}function E(t){return t.replace(/\/\//g,"/")}var j=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},F=Z,I=N,L=P,M=H,D=X,R=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function N(t,e){var n,r=[],i=0,o=0,a="",s=e&&e.delimiter||"/";while(null!=(n=R.exec(t))){var c=n[0],u=n[1],l=n.index;if(a+=t.slice(o,l),o=l+c.length,u)a+=u[1];else{var f=t[o],p=n[2],h=n[3],d=n[4],v=n[5],m=n[6],y=n[7];a&&(r.push(a),a="");var g=null!=p&&null!=f&&f!==p,_="+"===m||"*"===m,b="?"===m||"*"===m,w=n[2]||s,C=d||v;r.push({name:h||i++,prefix:p||"",delimiter:w,optional:b,repeat:_,partial:g,asterisk:!!y,pattern:C?B(C):y?".*":"[^"+U(w)+"]+?"})}}return o1||!$.length)return 0===$.length?t():t("span",{},$)}if("a"===this.tag)k.on=w,k.attrs={href:c,"aria-current":g};else{var x=st(this.$slots.default);if(x){x.isStatic=!1;var A=x.data=i({},x.data);for(var O in A.on=A.on||{},A.on){var S=A.on[O];O in w&&(A.on[O]=Array.isArray(S)?S:[S])}for(var T in w)T in A.on?A.on[T].push(w[T]):A.on[T]=_;var E=x.data.attrs=i({},x.data.attrs);E.href=c,E["aria-current"]=g}else k.on=w}return t(this.tag,k,this.$slots.default)}};function at(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function st(t){if(t)for(var e,n=0;n-1&&(s.params[f]=n.params[f]);return s.path=Q(u.path,s.params,'named route "'+c+'"'),p(u,s,a)}if(s.path){s.params={};for(var h=0;h=t.length?n():t[i]?e(t[i],(function(){r(i+1)})):r(i+1)};r(0)}var Pt={redirected:2,aborted:4,cancelled:8,duplicated:16};function Vt(t,e){return Bt(t,e,Pt.redirected,'Redirected when going from "'+t.fullPath+'" to "'+qt(e)+'" via a navigation guard.')}function Wt(t,e){var n=Bt(t,e,Pt.duplicated,'Avoided redundant navigation to current location: "'+t.fullPath+'".');return n.name="NavigationDuplicated",n}function Ht(t,e){return Bt(t,e,Pt.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Ut(t,e){return Bt(t,e,Pt.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}function Bt(t,e,n,r){var i=new Error(r);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var zt=["params","query","hash"];function qt(t){if("string"===typeof t)return t;if("path"in t)return t.path;var e={};return zt.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}function Jt(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function Kt(t,e){return Jt(t)&&t._isRouter&&(null==e||t.type===e)}function Gt(t){return function(e,n,r){var i=!1,o=0,a=null;Xt(t,(function(t,e,n,s){if("function"===typeof t&&void 0===t.cid){i=!0,o++;var c,u=te((function(e){Qt(e)&&(e=e.default),t.resolved="function"===typeof e?e:et.extend(e),n.components[s]=e,o--,o<=0&&r()})),l=te((function(t){var e="Failed to resolve async component "+s+": "+t;a||(a=Jt(t)?t:new Error(e),r(a))}));try{c=t(u,l)}catch(p){l(p)}if(c)if("function"===typeof c.then)c.then(u,l);else{var f=c.component;f&&"function"===typeof f.then&&f.then(u,l)}}})),i||r()}}function Xt(t,e){return Zt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function Zt(t){return Array.prototype.concat.apply([],t)}var Yt="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Qt(t){return t.__esModule||Yt&&"Module"===t[Symbol.toStringTag]}function te(t){var e=!1;return function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var ee=function(t,e){this.router=t,this.base=ne(e),this.current=y,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function ne(t){if(!t)if(ut){var e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}function re(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n0)){var e=this.router,n=e.options.scrollBehavior,r=Mt&&n;r&&this.listeners.push(kt());var i=function(){var n=t.current,i=pe(t.base);t.current===y&&i===t._startLocation||t.transitionTo(i,(function(t){r&&$t(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,i=this,o=i.current;this.transitionTo(t,(function(t){Dt(E(r.base+t.fullPath)),$t(r.router,t,o,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,i=this,o=i.current;this.transitionTo(t,(function(t){Rt(E(r.base+t.fullPath)),$t(r.router,t,o,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(pe(this.base)!==this.current.fullPath){var e=E(this.base+this.current.fullPath);t?Dt(e):Rt(e)}},e.prototype.getCurrentLocation=function(){return pe(this.base)},e}(ee);function pe(t){var e=window.location.pathname,n=e.toLowerCase(),r=t.toLowerCase();return!t||n!==r&&0!==n.indexOf(E(r+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var he=function(t){function e(e,n,r){t.call(this,e,n),r&&de(this.base)||ve()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,r=Mt&&n;r&&this.listeners.push(kt());var i=function(){var e=t.current;ve()&&t.transitionTo(me(),(function(n){r&&$t(t.router,n,e,!0),Mt||_e(n.fullPath)}))},o=Mt?"popstate":"hashchange";window.addEventListener(o,i),this.listeners.push((function(){window.removeEventListener(o,i)}))}},e.prototype.push=function(t,e,n){var r=this,i=this,o=i.current;this.transitionTo(t,(function(t){ge(t.fullPath),$t(r.router,t,o,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,i=this,o=i.current;this.transitionTo(t,(function(t){_e(t.fullPath),$t(r.router,t,o,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;me()!==e&&(t?ge(e):_e(e))},e.prototype.getCurrentLocation=function(){return me()},e}(ee);function de(t){var e=pe(t);if(!/^\/#/.test(e))return window.location.replace(E(t+"/#"+e)),!0}function ve(){var t=me();return"/"===t.charAt(0)||(_e("/"+t),!1)}function me(){var t=window.location.href,e=t.indexOf("#");return e<0?"":(t=t.slice(e+1),t)}function ye(t){var e=window.location.href,n=e.indexOf("#"),r=n>=0?e.slice(0,n):e;return r+"#"+t}function ge(t){Mt?Dt(ye(t)):window.location.hash=t}function _e(t){Mt?Rt(ye(t)):window.location.replace(ye(t))}var be=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){var t=e.current;e.index=n,e.updateRoute(r),e.router.afterHooks.forEach((function(e){e&&e(r,t)}))}),(function(t){Kt(t,Pt.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(ee),we=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=dt(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Mt&&!1!==t.fallback,this.fallback&&(e="hash"),ut||(e="abstract"),this.mode=e,e){case"history":this.history=new fe(this,t.base);break;case"hash":this.history=new he(this,t.base,this.fallback);break;case"abstract":this.history=new be(this,t.base);break;default:0}},Ce={currentRoute:{configurable:!0}};function ke(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function $e(t,e,n){var r="hash"===n?"#"+e:e;return t?E(t+"/"+r):r}we.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Ce.currentRoute.get=function(){return this.history&&this.history.current},we.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof fe||n instanceof he){var r=function(t){var r=n.current,i=e.options.scrollBehavior,o=Mt&&i;o&&"fullPath"in t&&$t(e,t,r,!1)},i=function(t){n.setupListeners(),r(t)};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},we.prototype.beforeEach=function(t){return ke(this.beforeHooks,t)},we.prototype.beforeResolve=function(t){return ke(this.resolveHooks,t)},we.prototype.afterEach=function(t){return ke(this.afterHooks,t)},we.prototype.onReady=function(t,e){this.history.onReady(t,e)},we.prototype.onError=function(t){this.history.onError(t)},we.prototype.push=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.push(t,e,n)}));this.history.push(t,e,n)},we.prototype.replace=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.replace(t,e,n)}));this.history.replace(t,e,n)},we.prototype.go=function(t){this.history.go(t)},we.prototype.back=function(){this.go(-1)},we.prototype.forward=function(){this.go(1)},we.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},we.prototype.resolve=function(t,e,n){e=e||this.history.current;var r=tt(t,e,n,this),i=this.match(r,e),o=i.redirectedFrom||i.fullPath,a=this.history.base,s=$e(a,o,this.mode);return{location:r,route:i,href:s,normalizedTo:r,resolved:i}},we.prototype.getRoutes=function(){return this.matcher.getRoutes()},we.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==y&&this.history.transitionTo(this.history.getCurrentLocation())},we.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==y&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(we.prototype,Ce),we.install=ct,we.version="3.5.2",we.isNavigationFailure=Kt,we.NavigationFailureType=Pt,we.START_LOCATION=y,ut&&window.Vue&&window.Vue.use(we),e["a"]=we},a925:function(t,e,n){"use strict"; +/*! + * vue-i18n v8.28.2 + * (c) 2022 kazuya kawaguchi + * Released under the MIT License. + */var r=["compactDisplay","currency","currencyDisplay","currencySign","localeMatcher","notation","numberingSystem","signDisplay","style","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits"],i=["dateStyle","timeStyle","calendar","localeMatcher","hour12","hourCycle","timeZone","formatMatcher","weekday","era","year","month","day","hour","minute","second","timeZoneName"];function o(t,e){"undefined"!==typeof console&&(console.warn("[vue-i18n] "+t),e&&console.warn(e.stack))}function a(t,e){"undefined"!==typeof console&&(console.error("[vue-i18n] "+t),e&&console.error(e.stack))}var s=Array.isArray;function c(t){return null!==t&&"object"===typeof t}function u(t){return"boolean"===typeof t}function l(t){return"string"===typeof t}var f=Object.prototype.toString,p="[object Object]";function h(t){return f.call(t)===p}function d(t){return null===t||void 0===t}function v(t){return"function"===typeof t}function m(){var t=[],e=arguments.length;while(e--)t[e]=arguments[e];var n=null,r=null;return 1===t.length?c(t[0])||s(t[0])?r=t[0]:"string"===typeof t[0]&&(n=t[0]):2===t.length&&("string"===typeof t[0]&&(n=t[0]),(c(t[1])||s(t[1]))&&(r=t[1])),{locale:n,params:r}}function y(t){return JSON.parse(JSON.stringify(t))}function g(t,e){if(t.delete(e))return t}function _(t){var e=[];return t.forEach((function(t){return e.push(t)})),e}function b(t,e){return!!~t.indexOf(e)}var w=Object.prototype.hasOwnProperty;function C(t,e){return w.call(t,e)}function k(t){for(var e=arguments,n=Object(t),r=1;r/g,">").replace(/"/g,""").replace(/'/g,"'")}function A(t){return null!=t&&Object.keys(t).forEach((function(e){"string"==typeof t[e]&&(t[e]=x(t[e]))})),t}function O(t){t.prototype.hasOwnProperty("$i18n")||Object.defineProperty(t.prototype,"$i18n",{get:function(){return this._i18n}}),t.prototype.$t=function(t){var e=[],n=arguments.length-1;while(n-- >0)e[n]=arguments[n+1];var r=this.$i18n;return r._t.apply(r,[t,r.locale,r._getMessages(),this].concat(e))},t.prototype.$tc=function(t,e){var n=[],r=arguments.length-2;while(r-- >0)n[r]=arguments[r+2];var i=this.$i18n;return i._tc.apply(i,[t,i.locale,i._getMessages(),this,e].concat(n))},t.prototype.$te=function(t,e){var n=this.$i18n;return n._te(t,n.locale,n._getMessages(),e)},t.prototype.$d=function(t){var e,n=[],r=arguments.length-1;while(r-- >0)n[r]=arguments[r+1];return(e=this.$i18n).d.apply(e,[t].concat(n))},t.prototype.$n=function(t){var e,n=[],r=arguments.length-1;while(r-- >0)n[r]=arguments[r+1];return(e=this.$i18n).n.apply(e,[t].concat(n))}}function S(t){function e(){this!==this.$root&&this.$options.__INTLIFY_META__&&this.$el&&this.$el.setAttribute("data-intlify",this.$options.__INTLIFY_META__)}return void 0===t&&(t=!1),t?{mounted:e}:{beforeCreate:function(){var t=this.$options;if(t.i18n=t.i18n||(t.__i18nBridge||t.__i18n?{}:null),t.i18n)if(t.i18n instanceof At){if(t.__i18nBridge||t.__i18n)try{var e=t.i18n&&t.i18n.messages?t.i18n.messages:{},n=t.__i18nBridge||t.__i18n;n.forEach((function(t){e=k(e,JSON.parse(t))})),Object.keys(e).forEach((function(n){t.i18n.mergeLocaleMessage(n,e[n])}))}catch(c){0}this._i18n=t.i18n,this._i18nWatcher=this._i18n.watchI18nData()}else if(h(t.i18n)){var r=this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof At?this.$root.$i18n:null;if(r&&(t.i18n.root=this.$root,t.i18n.formatter=r.formatter,t.i18n.fallbackLocale=r.fallbackLocale,t.i18n.formatFallbackMessages=r.formatFallbackMessages,t.i18n.silentTranslationWarn=r.silentTranslationWarn,t.i18n.silentFallbackWarn=r.silentFallbackWarn,t.i18n.pluralizationRules=r.pluralizationRules,t.i18n.preserveDirectiveContent=r.preserveDirectiveContent),t.__i18nBridge||t.__i18n)try{var i=t.i18n&&t.i18n.messages?t.i18n.messages:{},o=t.__i18nBridge||t.__i18n;o.forEach((function(t){i=k(i,JSON.parse(t))})),t.i18n.messages=i}catch(c){0}var a=t.i18n,s=a.sharedMessages;s&&h(s)&&(t.i18n.messages=k(t.i18n.messages,s)),this._i18n=new At(t.i18n),this._i18nWatcher=this._i18n.watchI18nData(),(void 0===t.i18n.sync||t.i18n.sync)&&(this._localeWatcher=this.$i18n.watchLocale()),r&&r.onComponentInstanceCreated(this._i18n)}else 0;else this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof At?this._i18n=this.$root.$i18n:t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof At&&(this._i18n=t.parent.$i18n)},beforeMount:function(){var t=this.$options;t.i18n=t.i18n||(t.__i18nBridge||t.__i18n?{}:null),t.i18n?(t.i18n instanceof At||h(t.i18n))&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0):(this.$root&&this.$root.$i18n&&this.$root.$i18n instanceof At||t.parent&&t.parent.$i18n&&t.parent.$i18n instanceof At)&&(this._i18n.subscribeDataChanging(this),this._subscribing=!0)},mounted:e,beforeDestroy:function(){if(this._i18n){var t=this;this.$nextTick((function(){t._subscribing&&(t._i18n.unsubscribeDataChanging(t),delete t._subscribing),t._i18nWatcher&&(t._i18nWatcher(),t._i18n.destroyVM(),delete t._i18nWatcher),t._localeWatcher&&(t._localeWatcher(),delete t._localeWatcher)}))}}}}var T={name:"i18n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},path:{type:String,required:!0},locale:{type:String},places:{type:[Array,Object]}},render:function(t,e){var n=e.data,r=e.parent,i=e.props,o=e.slots,a=r.$i18n;if(a){var s=i.path,c=i.locale,u=i.places,l=o(),f=a.i(s,c,E(l)||u?j(l.default,u):l),p=i.tag&&!0!==i.tag||!1===i.tag?i.tag:"span";return p?t(p,n,f):f}}};function E(t){var e;for(e in t)if("default"!==e)return!1;return Boolean(e)}function j(t,e){var n=e?F(e):{};if(!t)return n;t=t.filter((function(t){return t.tag||""!==t.text.trim()}));var r=t.every(M);return t.reduce(r?I:L,n)}function F(t){return Array.isArray(t)?t.reduce(L,{}):Object.assign({},t)}function I(t,e){return e.data&&e.data.attrs&&e.data.attrs.place&&(t[e.data.attrs.place]=e),t}function L(t,e,n){return t[n]=e,t}function M(t){return Boolean(t.data&&t.data.attrs&&t.data.attrs.place)}var D,R={name:"i18n-n",functional:!0,props:{tag:{type:[String,Boolean,Object],default:"span"},value:{type:Number,required:!0},format:{type:[String,Object]},locale:{type:String}},render:function(t,e){var n=e.props,i=e.parent,o=e.data,a=i.$i18n;if(!a)return null;var s=null,u=null;l(n.format)?s=n.format:c(n.format)&&(n.format.key&&(s=n.format.key),u=Object.keys(n.format).reduce((function(t,e){var i;return b(r,e)?Object.assign({},t,(i={},i[e]=n.format[e],i)):t}),null));var f=n.locale||a.locale,p=a._ntp(n.value,f,s,u),h=p.map((function(t,e){var n,r=o.scopedSlots&&o.scopedSlots[t.type];return r?r((n={},n[t.type]=t.value,n.index=e,n.parts=p,n)):t.value})),d=n.tag&&!0!==n.tag||!1===n.tag?n.tag:"span";return d?t(d,{attrs:o.attrs,class:o["class"],staticClass:o.staticClass},h):h}};function N(t,e,n){W(t,n)&&U(t,e,n)}function P(t,e,n,r){if(W(t,n)){var i=n.context.$i18n;H(t,n)&&$(e.value,e.oldValue)&&$(t._localeMessage,i.getLocaleMessage(i.locale))||U(t,e,n)}}function V(t,e,n,r){var i=n.context;if(i){var a=n.context.$i18n||{};e.modifiers.preserve||a.preserveDirectiveContent||(t.textContent=""),t._vt=void 0,delete t["_vt"],t._locale=void 0,delete t["_locale"],t._localeMessage=void 0,delete t["_localeMessage"]}else o("Vue instance does not exists in VNode context")}function W(t,e){var n=e.context;return n?!!n.$i18n||(o("VueI18n instance does not exists in Vue instance"),!1):(o("Vue instance does not exists in VNode context"),!1)}function H(t,e){var n=e.context;return t._locale===n.$i18n.locale}function U(t,e,n){var r,i,a=e.value,s=B(a),c=s.path,u=s.locale,l=s.args,f=s.choice;if(c||u||l)if(c){var p=n.context;t._vt=t.textContent=null!=f?(r=p.$i18n).tc.apply(r,[c,f].concat(z(u,l))):(i=p.$i18n).t.apply(i,[c].concat(z(u,l))),t._locale=p.$i18n.locale,t._localeMessage=p.$i18n.getLocaleMessage(p.$i18n.locale)}else o("`path` is required in v-t directive");else o("value type not supported")}function B(t){var e,n,r,i;return l(t)?e=t:h(t)&&(e=t.path,n=t.locale,r=t.args,i=t.choice),{path:e,locale:n,args:r,choice:i}}function z(t,e){var n=[];return t&&n.push(t),e&&(Array.isArray(e)||h(e))&&n.push(e),n}function q(t,e){void 0===e&&(e={bridge:!1}),q.installed=!0,D=t;D.version&&Number(D.version.split(".")[0]);O(D),D.mixin(S(e.bridge)),D.directive("t",{bind:N,update:P,unbind:V}),D.component(T.name,T),D.component(R.name,R);var n=D.config.optionMergeStrategies;n.i18n=function(t,e){return void 0===e?t:e}}var J=function(){this._caches=Object.create(null)};J.prototype.interpolate=function(t,e){if(!e)return[t];var n=this._caches[t];return n||(n=X(t),this._caches[t]=n),Z(n,e)};var K=/^(?:\d)+/,G=/^(?:\w)+/;function X(t){var e=[],n=0,r="";while(n0)f--,l=at,p[Y]();else{if(f=0,void 0===n)return!1;if(n=mt(n),!1===n)return!1;p[Q]()}};while(null!==l)if(u++,e=t[u],"\\"!==e||!h()){if(i=vt(e),s=ft[l],o=s[i]||s["else"]||lt,o===lt)return;if(l=o[0],a=p[o[1]],a&&(r=o[2],r=void 0===r?e:r,!1===a()))return;if(l===ut)return c}}var gt=function(){this._cache=Object.create(null)};gt.prototype.parsePath=function(t){var e=this._cache[t];return e||(e=yt(t),e&&(this._cache[t]=e)),e||[]},gt.prototype.getPathValue=function(t,e){if(!c(t))return null;var n=this.parsePath(e);if(0===n.length)return null;var r=n.length,i=t,o=0;while(o/,wt=/(?:@(?:\.[a-zA-Z]+)?:(?:[\w\-_|./]+|\([\w\-_:|./]+\)))/g,Ct=/^@(?:\.([a-zA-Z]+))?:/,kt=/[()]/g,$t={upper:function(t){return t.toLocaleUpperCase()},lower:function(t){return t.toLocaleLowerCase()},capitalize:function(t){return""+t.charAt(0).toLocaleUpperCase()+t.substr(1)}},xt=new J,At=function(t){var e=this;void 0===t&&(t={}),!D&&"undefined"!==typeof window&&window.Vue&&q(window.Vue);var n=t.locale||"en-US",r=!1!==t.fallbackLocale&&(t.fallbackLocale||"en-US"),i=t.messages||{},o=t.dateTimeFormats||t.datetimeFormats||{},a=t.numberFormats||{};this._vm=null,this._formatter=t.formatter||xt,this._modifiers=t.modifiers||{},this._missing=t.missing||null,this._root=t.root||null,this._sync=void 0===t.sync||!!t.sync,this._fallbackRoot=void 0===t.fallbackRoot||!!t.fallbackRoot,this._fallbackRootWithEmptyString=void 0===t.fallbackRootWithEmptyString||!!t.fallbackRootWithEmptyString,this._formatFallbackMessages=void 0!==t.formatFallbackMessages&&!!t.formatFallbackMessages,this._silentTranslationWarn=void 0!==t.silentTranslationWarn&&t.silentTranslationWarn,this._silentFallbackWarn=void 0!==t.silentFallbackWarn&&!!t.silentFallbackWarn,this._dateTimeFormatters={},this._numberFormatters={},this._path=new gt,this._dataListeners=new Set,this._componentInstanceCreatedListener=t.componentInstanceCreatedListener||null,this._preserveDirectiveContent=void 0!==t.preserveDirectiveContent&&!!t.preserveDirectiveContent,this.pluralizationRules=t.pluralizationRules||{},this._warnHtmlInMessage=t.warnHtmlInMessage||"off",this._postTranslation=t.postTranslation||null,this._escapeParameterHtml=t.escapeParameterHtml||!1,"__VUE_I18N_BRIDGE__"in t&&(this.__VUE_I18N_BRIDGE__=t.__VUE_I18N_BRIDGE__),this.getChoiceIndex=function(t,n){var r=Object.getPrototypeOf(e);if(r&&r.getChoiceIndex){var i=r.getChoiceIndex;return i.call(e,t,n)}var o=function(t,e){return t=Math.abs(t),2===e?t?t>1?1:0:1:t?Math.min(t,2):0};return e.locale in e.pluralizationRules?e.pluralizationRules[e.locale].apply(e,[t,n]):o(t,n)},this._exist=function(t,n){return!(!t||!n)&&(!d(e._path.getPathValue(t,n))||!!t[n])},"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||Object.keys(i).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,i[t])})),this._initVM({locale:n,fallbackLocale:r,messages:i,dateTimeFormats:o,numberFormats:a})},Ot={vm:{configurable:!0},messages:{configurable:!0},dateTimeFormats:{configurable:!0},numberFormats:{configurable:!0},availableLocales:{configurable:!0},locale:{configurable:!0},fallbackLocale:{configurable:!0},formatFallbackMessages:{configurable:!0},missing:{configurable:!0},formatter:{configurable:!0},silentTranslationWarn:{configurable:!0},silentFallbackWarn:{configurable:!0},preserveDirectiveContent:{configurable:!0},warnHtmlInMessage:{configurable:!0},postTranslation:{configurable:!0},sync:{configurable:!0}};At.prototype._checkLocaleMessage=function(t,e,n){var r=[],i=function(t,e,n,r){if(h(n))Object.keys(n).forEach((function(o){var a=n[o];h(a)?(r.push(o),r.push("."),i(t,e,a,r),r.pop(),r.pop()):(r.push(o),i(t,e,a,r),r.pop())}));else if(s(n))n.forEach((function(n,o){h(n)?(r.push("["+o+"]"),r.push("."),i(t,e,n,r),r.pop(),r.pop()):(r.push("["+o+"]"),i(t,e,n,r),r.pop())}));else if(l(n)){var c=bt.test(n);if(c){var u="Detected HTML in message '"+n+"' of keypath '"+r.join("")+"' at '"+e+"'. Consider component interpolation with '' to avoid XSS. See https://bit.ly/2ZqJzkp";"warn"===t?o(u):"error"===t&&a(u)}}};i(e,t,n,r)},At.prototype._initVM=function(t){var e=D.config.silent;D.config.silent=!0,this._vm=new D({data:t,__VUE18N__INSTANCE__:!0}),D.config.silent=e},At.prototype.destroyVM=function(){this._vm.$destroy()},At.prototype.subscribeDataChanging=function(t){this._dataListeners.add(t)},At.prototype.unsubscribeDataChanging=function(t){g(this._dataListeners,t)},At.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",(function(){var e=_(t._dataListeners),n=e.length;while(n--)D.nextTick((function(){e[n]&&e[n].$forceUpdate()}))}),{deep:!0})},At.prototype.watchLocale=function(t){if(t){if(!this.__VUE_I18N_BRIDGE__)return null;var e=this,n=this._vm;return this.vm.$watch("locale",(function(r){n.$set(n,"locale",r),e.__VUE_I18N_BRIDGE__&&t&&(t.locale.value=r),n.$forceUpdate()}),{immediate:!0})}if(!this._sync||!this._root)return null;var r=this._vm;return this._root.$i18n.vm.$watch("locale",(function(t){r.$set(r,"locale",t),r.$forceUpdate()}),{immediate:!0})},At.prototype.onComponentInstanceCreated=function(t){this._componentInstanceCreatedListener&&this._componentInstanceCreatedListener(t,this)},Ot.vm.get=function(){return this._vm},Ot.messages.get=function(){return y(this._getMessages())},Ot.dateTimeFormats.get=function(){return y(this._getDateTimeFormats())},Ot.numberFormats.get=function(){return y(this._getNumberFormats())},Ot.availableLocales.get=function(){return Object.keys(this.messages).sort()},Ot.locale.get=function(){return this._vm.locale},Ot.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},Ot.fallbackLocale.get=function(){return this._vm.fallbackLocale},Ot.fallbackLocale.set=function(t){this._localeChainCache={},this._vm.$set(this._vm,"fallbackLocale",t)},Ot.formatFallbackMessages.get=function(){return this._formatFallbackMessages},Ot.formatFallbackMessages.set=function(t){this._formatFallbackMessages=t},Ot.missing.get=function(){return this._missing},Ot.missing.set=function(t){this._missing=t},Ot.formatter.get=function(){return this._formatter},Ot.formatter.set=function(t){this._formatter=t},Ot.silentTranslationWarn.get=function(){return this._silentTranslationWarn},Ot.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},Ot.silentFallbackWarn.get=function(){return this._silentFallbackWarn},Ot.silentFallbackWarn.set=function(t){this._silentFallbackWarn=t},Ot.preserveDirectiveContent.get=function(){return this._preserveDirectiveContent},Ot.preserveDirectiveContent.set=function(t){this._preserveDirectiveContent=t},Ot.warnHtmlInMessage.get=function(){return this._warnHtmlInMessage},Ot.warnHtmlInMessage.set=function(t){var e=this,n=this._warnHtmlInMessage;if(this._warnHtmlInMessage=t,n!==t&&("warn"===t||"error"===t)){var r=this._getMessages();Object.keys(r).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,r[t])}))}},Ot.postTranslation.get=function(){return this._postTranslation},Ot.postTranslation.set=function(t){this._postTranslation=t},Ot.sync.get=function(){return this._sync},Ot.sync.set=function(t){this._sync=t},At.prototype._getMessages=function(){return this._vm.messages},At.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},At.prototype._getNumberFormats=function(){return this._vm.numberFormats},At.prototype._warnDefault=function(t,e,n,r,i,o){if(!d(n))return n;if(this._missing){var a=this._missing.apply(null,[t,e,r,i]);if(l(a))return a}else 0;if(this._formatFallbackMessages){var s=m.apply(void 0,i);return this._render(e,o,s.params,e)}return e},At.prototype._isFallbackRoot=function(t){return(this._fallbackRootWithEmptyString?!t:d(t))&&!d(this._root)&&this._fallbackRoot},At.prototype._isSilentFallbackWarn=function(t){return this._silentFallbackWarn instanceof RegExp?this._silentFallbackWarn.test(t):this._silentFallbackWarn},At.prototype._isSilentFallback=function(t,e){return this._isSilentFallbackWarn(e)&&(this._isFallbackRoot()||t!==this.fallbackLocale)},At.prototype._isSilentTranslationWarn=function(t){return this._silentTranslationWarn instanceof RegExp?this._silentTranslationWarn.test(t):this._silentTranslationWarn},At.prototype._interpolate=function(t,e,n,r,i,o,a){if(!e)return null;var c,u=this._path.getPathValue(e,n);if(s(u)||h(u))return u;if(d(u)){if(!h(e))return null;if(c=e[n],!l(c)&&!v(c))return null}else{if(!l(u)&&!v(u))return null;c=u}return l(c)&&(c.indexOf("@:")>=0||c.indexOf("@.")>=0)&&(c=this._link(t,e,c,r,"raw",o,a)),this._render(c,i,o,n)},At.prototype._link=function(t,e,n,r,i,o,a){var c=n,u=c.match(wt);for(var l in u)if(u.hasOwnProperty(l)){var f=u[l],p=f.match(Ct),h=p[0],d=p[1],v=f.replace(h,"").replace(kt,"");if(b(a,v))return c;a.push(v);var m=this._interpolate(t,e,v,r,"raw"===i?"string":i,"raw"===i?void 0:o,a);if(this._isFallbackRoot(m)){if(!this._root)throw Error("unexpected error");var y=this._root.$i18n;m=y._translate(y._getMessages(),y.locale,y.fallbackLocale,v,r,i,o)}m=this._warnDefault(t,v,m,r,s(o)?o:[o],i),this._modifiers.hasOwnProperty(d)?m=this._modifiers[d](m):$t.hasOwnProperty(d)&&(m=$t[d](m)),a.pop(),c=m?c.replace(f,m):c}return c},At.prototype._createMessageContext=function(t,e,n,r){var i=this,o=s(t)?t:[],a=c(t)?t:{},u=function(t){return o[t]},l=function(t){return a[t]},f=this._getMessages(),p=this.locale;return{list:u,named:l,values:t,formatter:e,path:n,messages:f,locale:p,linked:function(t){return i._interpolate(p,f[p]||{},t,null,r,void 0,[t])}}},At.prototype._render=function(t,e,n,r){if(v(t))return t(this._createMessageContext(n,this._formatter||xt,r,e));var i=this._formatter.interpolate(t,n,r);return i||(i=xt.interpolate(t,n,r)),"string"!==e||l(i)?i:i.join("")},At.prototype._appendItemToChain=function(t,e,n){var r=!1;return b(t,e)||(r=!0,e&&(r="!"!==e[e.length-1],e=e.replace(/!/g,""),t.push(e),n&&n[e]&&(r=n[e]))),r},At.prototype._appendLocaleToChain=function(t,e,n){var r,i=e.split("-");do{var o=i.join("-");r=this._appendItemToChain(t,o,n),i.splice(-1,1)}while(i.length&&!0===r);return r},At.prototype._appendBlockToChain=function(t,e,n){for(var r=!0,i=0;i0)o[a]=arguments[a+4];if(!t)return"";var s=m.apply(void 0,o);this._escapeParameterHtml&&(s.params=A(s.params));var c=s.locale||e,u=this._translate(n,c,this.fallbackLocale,t,r,"string",s.params);if(this._isFallbackRoot(u)){if(!this._root)throw Error("unexpected error");return(i=this._root).$t.apply(i,[t].concat(o))}return u=this._warnDefault(c,t,u,r,o,"string"),this._postTranslation&&null!==u&&void 0!==u&&(u=this._postTranslation(u,t)),u},At.prototype.t=function(t){var e,n=[],r=arguments.length-1;while(r-- >0)n[r]=arguments[r+1];return(e=this)._t.apply(e,[t,this.locale,this._getMessages(),null].concat(n))},At.prototype._i=function(t,e,n,r,i){var o=this._translate(n,e,this.fallbackLocale,t,r,"raw",i);if(this._isFallbackRoot(o)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.i(t,e,i)}return this._warnDefault(e,t,o,r,[i],"raw")},At.prototype.i=function(t,e,n){return t?(l(e)||(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},At.prototype._tc=function(t,e,n,r,i){var o,a=[],s=arguments.length-5;while(s-- >0)a[s]=arguments[s+5];if(!t)return"";void 0===i&&(i=1);var c={count:i,n:i},u=m.apply(void 0,a);return u.params=Object.assign(c,u.params),a=null===u.locale?[u.params]:[u.locale,u.params],this.fetchChoice((o=this)._t.apply(o,[t,e,n,r].concat(a)),i)},At.prototype.fetchChoice=function(t,e){if(!t||!l(t))return null;var n=t.split("|");return e=this.getChoiceIndex(e,n.length),n[e]?n[e].trim():t},At.prototype.tc=function(t,e){var n,r=[],i=arguments.length-2;while(i-- >0)r[i]=arguments[i+2];return(n=this)._tc.apply(n,[t,this.locale,this._getMessages(),null,e].concat(r))},At.prototype._te=function(t,e,n){var r=[],i=arguments.length-3;while(i-- >0)r[i]=arguments[i+3];var o=m.apply(void 0,r).locale||e;return this._exist(n[o],t)},At.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},At.prototype.getLocaleMessage=function(t){return y(this._vm.messages[t]||{})},At.prototype.setLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,e)},At.prototype.mergeLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,k("undefined"!==typeof this._vm.messages[t]&&Object.keys(this._vm.messages[t]).length?Object.assign({},this._vm.messages[t]):{},e))},At.prototype.getDateTimeFormat=function(t){return y(this._vm.dateTimeFormats[t]||{})},At.prototype.setDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,e),this._clearDateTimeFormat(t,e)},At.prototype.mergeDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,k(this._vm.dateTimeFormats[t]||{},e)),this._clearDateTimeFormat(t,e)},At.prototype._clearDateTimeFormat=function(t,e){for(var n in e){var r=t+"__"+n;this._dateTimeFormatters.hasOwnProperty(r)&&delete this._dateTimeFormatters[r]}},At.prototype._localizeDateTime=function(t,e,n,r,i,o){for(var a=e,s=r[a],c=this._getLocaleChain(e,n),u=0;u0)e[n]=arguments[n+1];var r=this.locale,o=null,a=null;return 1===e.length?(l(e[0])?o=e[0]:c(e[0])&&(e[0].locale&&(r=e[0].locale),e[0].key&&(o=e[0].key)),a=Object.keys(e[0]).reduce((function(t,n){var r;return b(i,n)?Object.assign({},t,(r={},r[n]=e[0][n],r)):t}),null)):2===e.length&&(l(e[0])&&(o=e[0]),l(e[1])&&(r=e[1])),this._d(t,r,o,a)},At.prototype.getNumberFormat=function(t){return y(this._vm.numberFormats[t]||{})},At.prototype.setNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,e),this._clearNumberFormat(t,e)},At.prototype.mergeNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,k(this._vm.numberFormats[t]||{},e)),this._clearNumberFormat(t,e)},At.prototype._clearNumberFormat=function(t,e){for(var n in e){var r=t+"__"+n;this._numberFormatters.hasOwnProperty(r)&&delete this._numberFormatters[r]}},At.prototype._getNumberFormatter=function(t,e,n,r,i,o){for(var a=e,s=r[a],c=this._getLocaleChain(e,n),u=0;u0)e[n]=arguments[n+1];var i=this.locale,o=null,a=null;return 1===e.length?l(e[0])?o=e[0]:c(e[0])&&(e[0].locale&&(i=e[0].locale),e[0].key&&(o=e[0].key),a=Object.keys(e[0]).reduce((function(t,n){var i;return b(r,n)?Object.assign({},t,(i={},i[n]=e[0][n],i)):t}),null)):2===e.length&&(l(e[0])&&(o=e[0]),l(e[1])&&(i=e[1])),this._n(t,i,o,a)},At.prototype._ntp=function(t,e,n,r){if(!At.availabilities.numberFormat)return[];if(!n){var i=r?new Intl.NumberFormat(e,r):new Intl.NumberFormat(e);return i.formatToParts(t)}var o=this._getNumberFormatter(t,e,this.fallbackLocale,this._getNumberFormats(),n,r),a=o&&o.formatToParts(t);if(this._isFallbackRoot(a)){if(!this._root)throw Error("unexpected error");return this._root.$i18n._ntp(t,e,n,r)}return a||[]},Object.defineProperties(At.prototype,Ot),Object.defineProperty(At,"availabilities",{get:function(){if(!_t){var t="undefined"!==typeof Intl;_t={dateTimeFormat:t&&"undefined"!==typeof Intl.DateTimeFormat,numberFormat:t&&"undefined"!==typeof Intl.NumberFormat}}return _t}}),At.install=q,At.version="8.28.2",e["a"]=At},c8ba:function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(r){"object"===typeof window&&(n=window)}t.exports=n},e7a5:function(t,e,n){(function(e){(function(e,n){t.exports=n(e)})("undefined"!=typeof e?e:this,(function(t){if(t.CSS&&t.CSS.escape)return t.CSS.escape;var e=function(t){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");var e,n=String(t),r=n.length,i=-1,o="",a=n.charCodeAt(0);while(++i=1&&e<=31||127==e||0==i&&e>=48&&e<=57||1==i&&e>=48&&e<=57&&45==a?"\\"+e.toString(16)+" ":(0!=i||1!=r||45!=e)&&(e>=128||45==e||95==e||e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122)?n.charAt(i):"\\"+n.charAt(i):"�";return o};return t.CSS||(t.CSS={}),t.CSS.escape=e,e}))}).call(this,n("c8ba"))}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic.2ed269e3.js b/docs/js/documentation-topic.2ed269e3.js deleted file mode 100644 index b53a2bd..0000000 --- a/docs/js/documentation-topic.2ed269e3.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic"],{"087c":function(e,t,n){},"0b72":function(e,t,n){},"0f49":function(e,t,n){},"0ff0":function(e,t,n){"use strict";n("713d")},"115d":function(e,t,n){"use strict";n("20dd")},1347:function(e,t,n){"use strict";n("367e")},"18f4":function(e,t,n){},"1c02":function(e,t,n){"use strict";n("0f49")},"1f24":function(e,t,n){},2059:function(e,t,n){},"20dd":function(e,t,n){},"218b":function(e,t,n){"use strict";n("9d52")},"21ff":function(e,t,n){"use strict";n("fd6e")},"228b":function(e,t,n){"use strict";n("7cb7")},"22f6":function(e,t,n){},2521:function(e,t,n){},"252c":function(e,t,n){"use strict";(function(e){function i(){var e=window.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);var n=e.indexOf("Trident/");if(n>0){var i=e.indexOf("rv:");return parseInt(e.substring(i+3,e.indexOf(".",i)),10)}var a=e.indexOf("Edge/");return a>0?parseInt(e.substring(a+5,e.indexOf(".",a)),10):-1}n.d(t,"a",(function(){return r}));var a=void 0;function s(){s.init||(s.init=!0,a=-1!==i())}var r={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},staticRenderFns:[],_scopeId:"data-v-b329ee4c",name:"resize-observer",methods:{compareAndNotify:function(){this._w===this.$el.offsetWidth&&this._h===this.$el.offsetHeight||(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.$emit("notify"))},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!a&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),delete this._resizeObject.onload)}},mounted:function(){var e=this;s(),this.$nextTick((function(){e._w=e.$el.offsetWidth,e._h=e.$el.offsetHeight}));var t=document.createElement("object");this._resizeObject=t,t.setAttribute("aria-hidden","true"),t.setAttribute("tabindex",-1),t.onload=this.addResizeHandlers,t.type="text/html",a&&this.$el.appendChild(t),t.data="about:blank",a||this.$el.appendChild(t)},beforeDestroy:function(){this.removeResizeHandlers()}};function o(e){e.component("resize-observer",r),e.component("ResizeObserver",r)}var l={version:"0.4.5",install:o},c=null;"undefined"!==typeof window?c=window.Vue:"undefined"!==typeof e&&(c=e.Vue),c&&c.use(l)}).call(this,n("c8ba"))},"260a":function(e,t,n){"use strict";n("9a8a")},2822:function(e,t,n){"use strict";n("2521")},"2ca2":function(e,t,n){"use strict";n("98e2")},"2dc5":function(e,t,n){"use strict";n("649a")},"2efe":function(e,t,n){"use strict";n("8541")},"2f87":function(e,t,n){"use strict";n("b0a0")},3377:function(e,t,n){},3396:function(e,t,n){"use strict";n("cdce")},"34e5":function(e,t,n){"use strict";n("087c")},"367e":function(e,t,n){},"370f":function(e,t,n){},"374e":function(e,t,n){"use strict";n("0b72")},"37dc":function(e,t,n){},"3a47":function(e,t,n){},"3a72":function(e,t,n){"use strict";n("3a47")},"3fc1":function(e,t,n){},4125:function(e,t,n){},4281:function(e,t,n){"use strict";n("f0dd")},"447f":function(e,t,n){"use strict";n("1f24")},4539:function(e,t,n){"use strict";n("7db8")},"46c5":function(e,t,n){"use strict";n("dff0")},4737:function(e,t,n){},"4b9a":function(e,t,n){"use strict";n("8df2")},"4de6":function(e,t,n){"use strict";n("9dbb")},5079:function(e,t,n){},"533e":function(e,t,n){},5550:function(e,t,n){"use strict";n("73e2")},"56bb":function(e,t,n){},"58d9":function(e,t,n){},"5c33":function(e,t,n){"use strict";n("4737")},"5c57":function(e,t,n){"use strict";n("f0ff")},"649a":function(e,t,n){},"696e":function(e,t,n){},"69ba":function(e,t,n){"use strict";n("2059")},"6c70":function(e,t,n){},"713d":function(e,t,n){},"719b":function(e,t,n){"use strict";n("8b3c")},"73e2":function(e,t,n){},7649:function(e,t,n){"use strict";n("37dc")},"7a2c":function(e,t,n){"use strict";n("c4c1")},"7cb7":function(e,t,n){},"7d0e":function(e,t,n){"use strict";n("696e")},"7d10":function(e,t,n){},"7db8":function(e,t,n){},"83ed":function(e,t,n){"use strict";n("b8c2")},8541:function(e,t,n){},"85fe":function(e,t,n){"use strict";(function(e){function i(e){return i="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:{},r=function(r){for(var l=arguments.length,c=new Array(l>1?l-1:0),d=1;d1){var i=e.find((function(e){return e.isIntersecting}));i&&(t=i)}if(n.callback){var a=t.isIntersecting&&t.intersectionRatio>=n.threshold;if(a===n.oldResult)return;n.oldResult=a,n.callback(a,t)}}),this.options.intersection),t.context.$nextTick((function(){n.observer&&n.observer.observe(n.el)}))}}},{key:"destroyObserver",value:function(){this.observer&&(this.observer.disconnect(),this.observer=null),this.callback&&this.callback._clear&&(this.callback._clear(),this.callback=null)}},{key:"threshold",get:function(){return this.options.intersection&&this.options.intersection.threshold||0}}]),e}();function f(e,t,n){var i=t.value;if(i)if("undefined"===typeof IntersectionObserver)console.warn("[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill");else{var a=new g(e,i,n);e._vue_visibilityState=a}}function m(e,t,n){var i=t.value,a=t.oldValue;if(!p(i,a)){var s=e._vue_visibilityState;i?s?s.createObserver(i,n):f(e,{value:i},n):y(e)}}function y(e){var t=e._vue_visibilityState;t&&(t.destroyObserver(),delete e._vue_visibilityState)}var v={bind:f,update:m,unbind:y};function b(e){e.directive("observe-visibility",v)}var T={version:"0.4.6",install:b},_=null;"undefined"!==typeof window?_=window.Vue:"undefined"!==typeof e&&(_=e.Vue),_&&_.use(T)}).call(this,n("c8ba"))},"87ff":function(e,t,n){"use strict";n("d840")},"89ec":function(e,t,n){},"8b3c":function(e,t,n){},"8b7a":function(e,t,n){"use strict";n("89ec")},"8df2":function(e,t,n){},"96a4":function(e,t,n){"use strict";n("58d9")},"98e2":function(e,t,n){},"9a8a":function(e,t,n){},"9d52":function(e,t,n){},"9dbb":function(e,t,n){},a40c:function(e,t,n){"use strict";n("c33d")},a780:function(e,t,n){"use strict";n("a7c6")},a7c6:function(e,t,n){},a91f:function(e,t,n){"use strict";n("6c70")},ac53:function(e,t,n){"use strict";n("d573")},ad1a:function(e,t,n){},b0a0:function(e,t,n){},b39c:function(e,t,n){"use strict";n("18f4")},b831:function(e,t,n){"use strict";n("533e")},b8c2:function(e,t,n){},bab5:function(e,t,n){"use strict";n("f0aa")},bcfb:function(e,t,n){"use strict";n("e4ea")},c2c8:function(e,t,n){"use strict";n("ad1a")},c33d:function(e,t,n){},c3a6:function(e,t,n){"use strict";n("7d10")},c4c1:function(e,t,n){},ca3d:function(e,t,n){"use strict";n("5079")},cdce:function(e,t,n){},d1b4:function(e,t,n){"use strict";n("4125")},d573:function(e,t,n){},d6cc:function(e,t,n){"use strict";n("3fc1")},d790:function(e,t,n){"use strict";n("56bb")},d840:function(e,t,n){},dff0:function(e,t,n){},e3c9:function(e,t,n){"use strict";n("3377")},e4ea:function(e,t,n){},e508:function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return M})),n.d(t,"b",(function(){return W})),n.d(t,"c",(function(){return U}));var i=n("252c"),a=n("85fe"),s=n("ed83"),r=n.n(s),o=n("2b0e"),l={itemsLimit:1e3};function c(e){return c="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function d(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function h(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,i=new Array(t);n=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a,s=!0,r=!1;return{s:function(){i=e[Symbol.iterator]()},n:function(){var e=i.next();return s=e.done,e},e:function(e){r=!0,a=e},f:function(){try{s||null==i.return||i.return()}finally{if(r)throw a}}}}var m={items:{type:Array,required:!0},keyField:{type:String,default:"id"},direction:{type:String,default:"vertical",validator:function(e){return["vertical","horizontal"].includes(e)}}};function y(){return this.items.length&&"object"!==c(this.items[0])}var v=!1;if("undefined"!==typeof window){v=!1;try{var b=Object.defineProperty({},"passive",{get:function(){v=!0}});window.addEventListener("test",null,b)}catch(Y){}}var T=0,_={name:"RecycleScroller",components:{ResizeObserver:i["a"]},directives:{ObserveVisibility:a["a"]},props:h({},m,{itemSize:{type:Number,default:null},minItemSize:{type:[Number,String],default:null},sizeField:{type:String,default:"size"},typeField:{type:String,default:"type"},buffer:{type:Number,default:200},pageMode:{type:Boolean,default:!1},prerender:{type:Number,default:0},emitUpdate:{type:Boolean,default:!1}}),data:function(){return{pool:[],totalSize:0,ready:!1,hoverKey:null}},computed:{sizes:function(){if(null===this.itemSize){for(var e,t={"-1":{accumulator:0}},n=this.items,i=this.sizeField,a=this.minItemSize,s=1e4,r=0,o=0,l=n.length;o1&&void 0!==arguments[1]&&arguments[1],n=this.$_unusedViews,i=e.nr.type,a=n.get(i);a||(a=[],n.set(i,a)),a.push(e),t||(e.nr.used=!1,e.position=-9999,this.$_views.delete(e.nr.key))},handleResize:function(){this.$emit("resize"),this.ready&&this.updateVisibleItems(!1)},handleScroll:function(e){var t=this;this.$_scrollDirty||(this.$_scrollDirty=!0,requestAnimationFrame((function(){t.$_scrollDirty=!1;var e=t.updateVisibleItems(!1,!0),n=e.continuous;n||(clearTimeout(t.$_refreshTimout),t.$_refreshTimout=setTimeout(t.handleScroll,100))})))},handleVisibilityChange:function(e,t){var n=this;this.ready&&(e||0!==t.boundingClientRect.width||0!==t.boundingClientRect.height?(this.$emit("visible"),requestAnimationFrame((function(){n.updateVisibleItems(!1)}))):this.$emit("hidden"))},updateVisibleItems:function(e){var t,n,i,a,s=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this.itemSize,o=this.$_computedMinItemSize,c=this.typeField,d=this.simpleArray?null:this.keyField,u=this.items,h=u.length,p=this.sizes,g=this.$_views,f=this.$_unusedViews,m=this.pool;if(h)if(this.$_prerender)t=0,n=this.prerender,i=null;else{var y=this.getScroll();if(s){var v=y.start-this.$_lastUpdateScrollPosition;if(v<0&&(v=-v),null===r&&vy.start&&(C=k),k=~~((S+C)/2)}while(k!==_);for(k<0&&(k=0),t=k,i=p[h-1].accumulator,n=k;nh&&(n=h))}else t=~~(y.start/r),n=Math.ceil(y.end/r),t<0&&(t=0),n>h&&(n=h),i=h*r}else t=n=i=0;n-t>l.itemsLimit&&this.itemsLimitError(),this.totalSize=i;var w=t<=this.$_endIndex&&n>=this.$_startIndex;if(this.$_continuous!==w){if(w){g.clear(),f.clear();for(var I=0,O=m.length;I=n)&&this.unuseView(a));for(var P,$,A,L,N=w?null:new Map,j=t;j=A.length)&&(a=this.addView(m,j,P,E,$),this.unuseView(a,!0),A=f.get($)),a=A[L],a.item=P,a.nr.used=!0,a.nr.index=j,a.nr.key=E,a.nr.type=$,N.set($,L+1),L++),g.set(E,a)),a.position=null===r?p[j-1].accumulator:j*r):a&&this.unuseView(a)}return this.$_startIndex=t,this.$_endIndex=n,this.emitUpdate&&this.$emit("update",t,n),clearTimeout(this.$_sortTimer),this.$_sortTimer=setTimeout(this.sortViews,300),{continuous:w}},getListenerTarget:function(){var e=r()(this.$el);return!window.document||e!==window.document.documentElement&&e!==window.document.body||(e=window),e},getScroll:function(){var e,t=this.$el,n=this.direction,i="vertical"===n;if(this.pageMode){var a=t.getBoundingClientRect(),s=i?a.height:a.width,r=-(i?a.top:a.left),o=i?window.innerHeight:window.innerWidth;r<0&&(o+=r,r=0),r+o>s&&(o=s-r),e={start:r,end:r+o}}else e=i?{start:t.scrollTop,end:t.scrollTop+t.clientHeight}:{start:t.scrollLeft,end:t.scrollLeft+t.clientWidth};return e},applyPageMode:function(){this.pageMode?this.addListeners():this.removeListeners()},addListeners:function(){this.listenerTarget=this.getListenerTarget(),this.listenerTarget.addEventListener("scroll",this.handleScroll,!!v&&{passive:!0}),this.listenerTarget.addEventListener("resize",this.handleResize)},removeListeners:function(){this.listenerTarget&&(this.listenerTarget.removeEventListener("scroll",this.handleScroll),this.listenerTarget.removeEventListener("resize",this.handleResize),this.listenerTarget=null)},scrollToItem:function(e){var t;t=null===this.itemSize?e>0?this.sizes[e-1].accumulator:0:e*this.itemSize,this.scrollToPosition(t)},scrollToPosition:function(e){"vertical"===this.direction?this.$el.scrollTop=e:this.$el.scrollLeft=e},itemsLimitError:function(){var e=this;throw setTimeout((function(){console.log("It seems the scroller element isn't scrolling, so it tries to render all the items at once.","Scroller:",e.$el),console.log("Make sure the scroller has a fixed height (or width) and 'overflow-y' (or 'overflow-x') set to 'auto' so it can scroll correctly and only render the items visible in the scroll viewport.")})),new Error("Rendered items limit reached")},sortViews:function(){this.pool.sort((function(e,t){return e.nr.index-t.nr.index}))}}};function S(e,t,n,i,a,s,r,o,l,c){"boolean"!==typeof r&&(l=o,o=r,r=!1);const d="function"===typeof n?n.options:n;let u;if(e&&e.render&&(d.render=e.render,d.staticRenderFns=e.staticRenderFns,d._compiled=!0,a&&(d.functional=!0)),i&&(d._scopeId=i),s?(u=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),t&&t.call(this,l(e)),e&&e._registeredComponents&&e._registeredComponents.add(s)},d._ssrRegister=u):t&&(u=r?function(e){t.call(this,c(e,this.$root.$options.shadowRoot))}:function(e){t.call(this,o(e))}),u)if(d.functional){const e=d.render;d.render=function(t,n){return u.call(n),e(t,n)}}else{const e=d.beforeCreate;d.beforeCreate=e?[].concat(e,u):[u]}return n}const C=_;var k=function(){var e,t,n=this,i=n.$createElement,a=n._self._c||i;return a("div",{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:n.handleVisibilityChange,expression:"handleVisibilityChange"}],staticClass:"vue-recycle-scroller",class:(e={ready:n.ready,"page-mode":n.pageMode},e["direction-"+n.direction]=!0,e),on:{"&scroll":function(e){return n.handleScroll(e)}}},[n.$slots.before?a("div",{staticClass:"vue-recycle-scroller__slot"},[n._t("before")],2):n._e(),n._v(" "),a("div",{ref:"wrapper",staticClass:"vue-recycle-scroller__item-wrapper",style:(t={},t["vertical"===n.direction?"minHeight":"minWidth"]=n.totalSize+"px",t)},n._l(n.pool,(function(e){return a("div",{key:e.nr.id,staticClass:"vue-recycle-scroller__item-view",class:{hover:n.hoverKey===e.nr.key},style:n.ready?{transform:"translate"+("vertical"===n.direction?"Y":"X")+"("+e.position+"px)"}:null,on:{mouseenter:function(t){n.hoverKey=e.nr.key},mouseleave:function(e){n.hoverKey=null}}},[n._t("default",null,{item:e.item,index:e.nr.index,active:e.nr.used})],2)})),0),n._v(" "),n.$slots.after?a("div",{staticClass:"vue-recycle-scroller__slot"},[n._t("after")],2):n._e(),n._v(" "),a("ResizeObserver",{on:{notify:n.handleResize}})],1)},w=[];k._withStripped=!0;const I=void 0,O=void 0,x=void 0,D=!1,P=S({render:k,staticRenderFns:w},I,C,O,D,x,!1,void 0,void 0,void 0);var $={name:"DynamicScroller",components:{RecycleScroller:P},inheritAttrs:!1,provide:function(){return"undefined"!==typeof ResizeObserver&&(this.$_resizeObserver=new ResizeObserver((function(e){var t,n=f(e);try{for(n.s();!(t=n.n()).done;){var i=t.value;if(i.target){var a=new CustomEvent("resize",{detail:{contentRect:i.contentRect}});i.target.dispatchEvent(a)}}}catch(s){n.e(s)}finally{n.f()}}))),{vscrollData:this.vscrollData,vscrollParent:this,vscrollResizeObserver:this.$_resizeObserver}},props:h({},m,{minItemSize:{type:[Number,String],required:!0}}),data:function(){return{vscrollData:{active:!0,sizes:{},validSizes:{},keyField:this.keyField,simpleArray:!1}}},computed:{simpleArray:y,itemsWithSize:function(){for(var e=[],t=this.items,n=this.keyField,i=this.simpleArray,a=this.vscrollData.sizes,s=0;s0&&void 0!==arguments[0])||arguments[0];(e||this.simpleArray)&&(this.vscrollData.validSizes={}),this.$emit("vscroll:update",{force:!0})},scrollToItem:function(e){var t=this.$refs.scroller;t&&t.scrollToItem(e)},getItemSize:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,n=this.simpleArray?null!=t?t:this.items.indexOf(e):e[this.keyField];return this.vscrollData.sizes[n]||0},scrollToBottom:function(){var e=this;if(!this.$_scrollingToBottom){this.$_scrollingToBottom=!0;var t=this.$el;this.$nextTick((function(){t.scrollTop=t.scrollHeight+5e3;var n=function n(){t.scrollTop=t.scrollHeight+5e3,requestAnimationFrame((function(){t.scrollTop=t.scrollHeight+5e3,0===e.$_undefinedSizes?e.$_scrollingToBottom=!1:requestAnimationFrame(n)}))};requestAnimationFrame(n)}))}}}};const A=$;var L=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RecycleScroller",e._g(e._b({ref:"scroller",attrs:{items:e.itemsWithSize,"min-item-size":e.minItemSize,direction:e.direction,"key-field":"id"},on:{resize:e.onScrollerResize,visible:e.onScrollerVisible},scopedSlots:e._u([{key:"default",fn:function(t){var n=t.item,i=t.index,a=t.active;return[e._t("default",null,null,{item:n.item,index:i,active:a,itemWithSize:n})]}}],null,!0)},"RecycleScroller",e.$attrs,!1),e.listeners),[e._v(" "),n("template",{slot:"before"},[e._t("before")],2),e._v(" "),n("template",{slot:"after"},[e._t("after")],2)],2)},N=[];L._withStripped=!0;const j=void 0,E=void 0,B=void 0,R=!1,M=S({render:L,staticRenderFns:N},j,A,E,R,B,!1,void 0,void 0,void 0);var K={name:"DynamicScrollerItem",inject:["vscrollData","vscrollParent","vscrollResizeObserver"],props:{item:{required:!0},watchData:{type:Boolean,default:!1},active:{type:Boolean,required:!0},index:{type:Number,default:void 0},sizeDependencies:{type:[Array,Object],default:null},emitResize:{type:Boolean,default:!1},tag:{type:String,default:"div"}},computed:{id:function(){return this.vscrollData.simpleArray?this.index:this.item[this.vscrollData.keyField]},size:function(){return this.vscrollData.validSizes[this.id]&&this.vscrollData.sizes[this.id]||0},finalActive:function(){return this.active&&this.vscrollData.active}},watch:{watchData:"updateWatchData",id:function(){this.size||this.onDataUpdate()},finalActive:function(e){this.size||(e?this.vscrollParent.$_undefinedMap[this.id]||(this.vscrollParent.$_undefinedSizes++,this.vscrollParent.$_undefinedMap[this.id]=!0):this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=!1)),this.vscrollResizeObserver?e?this.observeSize():this.unobserveSize():e&&this.$_pendingVScrollUpdate===this.id&&this.updateSize()}},created:function(){var e=this;if(!this.$isServer&&(this.$_forceNextVScrollUpdate=null,this.updateWatchData(),!this.vscrollResizeObserver)){var t=function(t){e.$watch((function(){return e.sizeDependencies[t]}),e.onDataUpdate)};for(var n in this.sizeDependencies)t(n);this.vscrollParent.$on("vscroll:update",this.onVscrollUpdate),this.vscrollParent.$on("vscroll:update-size",this.onVscrollUpdateSize)}},mounted:function(){this.vscrollData.active&&(this.updateSize(),this.observeSize())},beforeDestroy:function(){this.vscrollParent.$off("vscroll:update",this.onVscrollUpdate),this.vscrollParent.$off("vscroll:update-size",this.onVscrollUpdateSize),this.unobserveSize()},methods:{updateSize:function(){this.finalActive?this.$_pendingSizeUpdate!==this.id&&(this.$_pendingSizeUpdate=this.id,this.$_forceNextVScrollUpdate=null,this.$_pendingVScrollUpdate=null,this.computeSize(this.id)):this.$_forceNextVScrollUpdate=this.id},updateWatchData:function(){var e=this;this.watchData?this.$_watchData=this.$watch("data",(function(){e.onDataUpdate()}),{deep:!0}):this.$_watchData&&(this.$_watchData(),this.$_watchData=null)},onVscrollUpdate:function(e){var t=e.force;!this.finalActive&&t&&(this.$_pendingVScrollUpdate=this.id),this.$_forceNextVScrollUpdate!==this.id&&!t&&this.size||this.updateSize()},onDataUpdate:function(){this.updateSize()},computeSize:function(e){var t=this;this.$nextTick((function(){if(t.id===e){var n=t.$el.offsetWidth,i=t.$el.offsetHeight;t.applySize(n,i)}t.$_pendingSizeUpdate=null}))},applySize:function(e,t){var n=Math.round("vertical"===this.vscrollParent.direction?t:e);n&&this.size!==n&&(this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=void 0),this.$set(this.vscrollData.sizes,this.id,n),this.$set(this.vscrollData.validSizes,this.id,!0),this.emitResize&&this.$emit("resize",this.id))},observeSize:function(){this.vscrollResizeObserver&&(this.vscrollResizeObserver.observe(this.$el.parentNode),this.$el.parentNode.addEventListener("resize",this.onResize))},unobserveSize:function(){this.vscrollResizeObserver&&(this.vscrollResizeObserver.unobserve(this.$el.parentNode),this.$el.parentNode.removeEventListener("resize",this.onResize))},onResize:function(e){var t=e.detail.contentRect,n=t.width,i=t.height;this.applySize(n,i)}},render:function(e){return e(this.tag,this.$slots.default)}};const z=K,F=void 0,q=void 0,H=void 0,V=void 0,W=S({},F,z,q,V,H,!1,void 0,void 0,void 0);function U(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.idProp,n=void 0===t?function(e){return e.item.id}:t,i={},a=new o["default"]({data:function(){return{store:i}}});return{data:function(){return{idState:null}},created:function(){var e=this;this.$_id=null,this.$_getId="function"===typeof n?function(){return n.call(e,e)}:function(){return e[n]},this.$watch(this.$_getId,{handler:function(e){var t=this;this.$nextTick((function(){t.$_id=e}))},immediate:!0}),this.$_updateIdState()},beforeUpdate:function(){this.$_updateIdState()},methods:{$_idStateInit:function(e){var t=this.$options.idState;if("function"===typeof t){var n=t.call(this,this);return a.$set(i,e,n),this.$_id=e,n}throw new Error("[mixin IdState] Missing `idState` function on component definition.")},$_updateIdState:function(){var e=this.$_getId();null==e&&console.warn("No id found for IdState with idProp: '".concat(n,"'.")),e!==this.$_id&&(i[e]||this.$_idStateInit(e),this.idState=i[e])}}}}function G(e,t){e.component("".concat(t,"recycle-scroller"),P),e.component("".concat(t,"RecycleScroller"),P),e.component("".concat(t,"dynamic-scroller"),M),e.component("".concat(t,"DynamicScroller"),M),e.component("".concat(t,"dynamic-scroller-item"),W),e.component("".concat(t,"DynamicScrollerItem"),W)}var Q={version:"1.0.10",install:function(e,t){var n=Object.assign({},{installComponents:!0,componentsPrefix:""},t);for(var i in n)"undefined"!==typeof n[i]&&(l[i]=n[i]);n.installComponents&&G(e,n.componentsPrefix)}},X=null;"undefined"!==typeof window?X=window.Vue:"undefined"!==typeof e&&(X=e.Vue),X&&X.use(Q)}).call(this,n("c8ba"))},e5a5:function(e,t,n){"use strict";n("f0a3")},e81e:function(e,t,n){"use strict";n("370f")},ed83:function(e,t,n){var i,a,s;(function(n,r){a=[],i=r,s="function"===typeof i?i.apply(t,a):i,void 0===s||(e.exports=s)})(0,(function(){var e=/(auto|scroll)/,t=function(e,n){return null===e.parentNode?n:t(e.parentNode,n.concat([e]))},n=function(e,t){return getComputedStyle(e,null).getPropertyValue(t)},i=function(e){return n(e,"overflow")+n(e,"overflow-y")+n(e,"overflow-x")},a=function(t){return e.test(i(t))},s=function(e){if(e instanceof HTMLElement||e instanceof SVGElement){for(var n=t(e.parentNode,[]),i=0;i({"~0":"~","~1":"/"}[e]||e))}function*o(e){const t=1;if(e.lengtht)throw new Error("invalid array index "+e);return n}function*p(e,t,n={strict:!1}){let i=e;for(const a of o(t)){if(n.strict&&!Object.prototype.hasOwnProperty.call(i,a))throw new u(t);i=i[a],yield{node:i,token:a}}}function g(e,t){let n=e;for(const{node:i}of p(e,t,{strict:!0}))n=i;return n}function f(e,t,n){let i=null,a=e,s=null;for(const{node:o,token:l}of p(e,t))i=a,a=o,s=l;if(!i)throw new u(t);if(Array.isArray(i))try{const e=h(s,i);i.splice(e,0,n)}catch(r){throw new u(t)}else Object.assign(i,{[s]:n});return e}function m(e,t){let n=null,i=e,a=null;for(const{node:r,token:o}of p(e,t))n=i,i=r,a=o;if(!n)throw new u(t);if(Array.isArray(n))try{const e=h(a,n);n.splice(e,1)}catch(s){throw new u(t)}else{if(!i)throw new u(t);delete n[a]}return e}function y(e,t,n){return m(e,t),f(e,t,n),e}function v(e,t,n){const i=g(e,t);return m(e,t),f(e,n,i),e}function b(e,t,n){return f(e,n,g(e,t)),e}function T(e,t,n){function i(e,t){const n=typeof e,a=typeof t;if(n!==a)return!1;switch(n){case d:{const n=Object.keys(e),a=Object.keys(t);return n.length===a.length&&n.every((n,s)=>n===a[s]&&i(e[n],t[n]))}default:return e===t}}const a=g(e,t);if(!i(n,a))throw new Error("test failed");return e}const _={add:(e,{path:t,value:n})=>f(e,t,n),copy:(e,{from:t,path:n})=>b(e,t,n),move:(e,{from:t,path:n})=>v(e,t,n),remove:(e,{path:t})=>m(e,t),replace:(e,{path:t,value:n})=>y(e,t,n),test:(e,{path:t,value:n})=>T(e,t,n)};function S(e,{op:t,...n}){const i=_[t];if(!i)throw new Error("unknown operation");return i(e,n)}function C(e,t){return t.reduce(S,e)}var k=n("66cd"),w=n("25a9"),I=n("2b88"),O=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"doc-topic",class:{"with-on-this-page":e.enableOnThisPageNav&&e.isOnThisPageNavVisible}},[n("main",{staticClass:"main",attrs:{id:"main",role:"main",tabindex:"0"}},[n("DocumentationHero",{attrs:{role:e.role,enhanceBackground:e.enhanceBackground,shortHero:e.shortHero,shouldShowLanguageSwitcher:e.shouldShowLanguageSwitcher,iconOverride:e.references[e.pageIcon]},scopedSlots:e._u([{key:"above-content",fn:function(){return[e._t("above-hero-content")]},proxy:!0}],null,!0)},[e._t("above-title"),e.shouldShowLanguageSwitcher?n("LanguageSwitcher",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath}}):e._e(),e.enableMinimized?e._e():n("Title",{attrs:{eyebrow:e.roleHeading}},[n(e.titleBreakComponent,{tag:"component"},[e._v(e._s(e.title))]),e.isSymbolDeprecated||e.isSymbolBeta?n("small",{class:e.tagName,attrs:{slot:"after","data-tag-name":e.tagName},slot:"after"}):e._e()],1),e.abstract?n("Abstract",{attrs:{content:e.abstract}}):e._e(),e.sampleCodeDownload?n("div",[n("DownloadButton",{staticClass:"sample-download",attrs:{action:e.sampleCodeDownload.action}})],1):e._e(),e.shouldShowAvailability?n("Availability",{attrs:{platforms:e.platforms,technologies:e.technologies}}):e._e()],2),n("div",{staticClass:"doc-content-wrapper"},[n("div",{staticClass:"doc-content",class:{"no-primary-content":!e.hasPrimaryContent}},[e.hasPrimaryContent?n("div",{staticClass:"container"},[n("div",{staticClass:"description",class:{"after-enhanced-hero":e.enhanceBackground}},[e.isRequirement?n("RequirementMetadata",{attrs:{defaultImplementationsCount:e.defaultImplementationsCount}}):e._e(),e.deprecationSummary&&e.deprecationSummary.length?n("Aside",{attrs:{kind:"deprecated"}},[n("ContentNode",{attrs:{content:e.deprecationSummary}})],1):e._e(),e.downloadNotAvailableSummary&&e.downloadNotAvailableSummary.length?n("Aside",{attrs:{kind:"note"}},[n("ContentNode",{attrs:{content:e.downloadNotAvailableSummary}})],1):e._e()],1),e.primaryContentSections&&e.primaryContentSections.length?n("PrimaryContent",{class:{"with-border":!e.enhanceBackground&&!e.enableMinimized},attrs:{conformance:e.conformance,source:e.remoteSource,sections:e.primaryContentSections}}):e._e()],1):e._e(),e.shouldRenderTopicSection?n("Topics",{attrs:{sections:e.topicSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,topicStyle:e.topicSectionsStyle}}):e._e(),e.defaultImplementationsSections&&!e.enableMinimized?n("DefaultImplementations",{attrs:{sections:e.defaultImplementationsSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}}):e._e(),e.relationshipsSections&&!e.enableMinimized?n("Relationships",{attrs:{sections:e.relationshipsSections}}):e._e(),e.seeAlsoSections&&!e.enableMinimized?n("SeeAlso",{attrs:{sections:e.seeAlsoSections}}):e._e()],1),e.enableOnThisPageNav?[n("OnThisPageStickyContainer",{directives:[{name:"show",rawName:"v-show",value:e.isOnThisPageNavVisible,expression:"isOnThisPageNavVisible"}]},[e.topicState.onThisPageSections.length>2?n("OnThisPageNav"):e._e()],1)]:e._e()],2),!e.isTargetIDE&&e.hasBetaContent?n("BetaLegalText"):e._e()],1),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" Current page is "+e._s(e.pageTitle)+" ")])])},x=[],D=n("8649"),P=n("bf08"),$=n("e3ab"),A=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"betainfo"},[n("div",{staticClass:"betainfo-container"},[n("GridRow",[n("GridColumn",{attrs:{span:{large:12}}},[n("p",{staticClass:"betainfo-label"},[e._v("Beta Software")]),n("div",{staticClass:"betainfo-content"},[e._t("content",(function(){return[n("p",[e._v("This documentation refers to beta software and may be changed.")])]}))],2),e._t("after")],2)],1)],1)])},L=[],N=n("0f00"),j=n("620a"),E={name:"BetaLegalText",components:{GridColumn:j["a"],GridRow:N["a"]}},B=E,R=(n("5c33"),n("2877")),M=Object(R["a"])(B,A,L,!1,null,"0f5e5efb",null),K=M.exports,z=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"language",attrs:{role:"complementary","aria-label":"Language"}},[n("Title",[e._v("Language: ")]),n("div",{staticClass:"language-list"},[n("LanguageSwitcherLink",{staticClass:"language-option swift",class:{active:e.swift.active},attrs:{url:e.swift.active?null:e.swift.url},on:{click:function(t){return e.chooseLanguage(e.swift)}}},[e._v(" "+e._s(e.swift.name)+" ")]),n("LanguageSwitcherLink",{staticClass:"language-option objc",class:{active:e.objc.active},attrs:{url:e.objc.active?null:e.objc.url},on:{click:function(t){return e.chooseLanguage(e.objc)}}},[e._v(" "+e._s(e.objc.name)+" ")])],1)],1)},F=[],q=n("d26a"),H=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.url?n("a",{attrs:{href:e.url},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[e._t("default")],2):n("span",[e._t("default")],2)},V=[],W={name:"LanguageSwitcherLink",props:{url:[String,Object]}},U=W,G=Object(R["a"])(U,H,V,!1,null,null,null),Q=G.exports,X=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"summary-section"},[e._t("default")],2)},Y=[],J={name:"Section"},Z=J,ee=(n("1347"),Object(R["a"])(Z,X,Y,!1,null,"3aa6f694",null)),te=ee.exports,ne=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("p",{staticClass:"title"},[e._t("default")],2)},ie=[],ae={name:"Title"},se=ae,re=(n("ede5"),Object(R["a"])(se,ne,ie,!1,null,"6796f6ea",null)),oe=re.exports,le={name:"LanguageSwitcher",components:{LanguageSwitcherLink:Q,Section:te,Title:oe},inject:{isTargetIDE:{default:()=>!1},store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!0},swiftPath:{type:String,required:!0}},computed:{objc:({interfaceLanguage:e,normalizePath:t,objcPath:n,$route:{query:i}})=>({...D["a"].objectiveC,active:D["a"].objectiveC.key.api===e,url:Object(q["b"])(t(n),{...i,language:D["a"].objectiveC.key.url})}),swift:({interfaceLanguage:e,normalizePath:t,swiftPath:n,$route:{query:i}})=>({...D["a"].swift,active:D["a"].swift.key.api===e,url:Object(q["b"])(t(n),{...i,language:void 0})})},methods:{chooseLanguage(e){this.isTargetIDE||this.store.setPreferredLanguage(e.key.url),this.$router.push(e.url)},normalizePath(e){return e.startsWith("/")?e:"/"+e}}},ce=le,de=(n("4539"),Object(R["a"])(ce,z,F,!1,null,"0de98d61",null)),ue=de.exports,he=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["documentation-hero",{"documentation-hero--disabled":!e.enhanceBackground,"theme-dark":e.enhanceBackground}],style:e.styles},[n("div",{staticClass:"icon"},[e.enhanceBackground?n("TopicTypeIcon",{key:"first",staticClass:"background-icon first-icon",attrs:{type:e.type,"image-override":e.iconOverride,"with-colors":""}}):e._e()],1),n("div",{staticClass:"documentation-hero__above-content"},[e._t("above-content")],2),n("div",{staticClass:"documentation-hero__content",class:{"short-hero":e.shortHero,"extra-bottom-padding":e.shouldShowLanguageSwitcher}},[e._t("default")],2)])},pe=[],ge=n("f12c"),fe=n("31d4"),me=n("2cae"),ye={name:"DocumentationHero",components:{TopicTypeIcon:ge["a"]},props:{role:{type:String,required:!0},enhanceBackground:{type:Boolean,required:!0},shortHero:{type:Boolean,required:!0},shouldShowLanguageSwitcher:{type:Boolean,required:!0},iconOverride:{type:Object,required:!1}},computed:{color:({type:e})=>me["b"][fe["a"][e]||e]||me["a"].teal,styles:({color:e})=>({"--accent-color":`var(--color-documentation-intro-accent, var(--color-type-icon-${e}, var(--color-figure-gray-secondary)))`}),type:({role:e})=>{switch(e){case k["a"].collection:return fe["b"].module;case k["a"].collectionGroup:return fe["b"].collection;default:return e}}}},ve=ye,be=(n("e3c9"),Object(R["a"])(ve,he,pe,!1,null,"3ec838d1",null)),Te=be.exports,_e=n("7b1f"),Se=n("12b1"),Ce=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"OnThisPageNav"},[n("ul",{staticClass:"items"},e._l(e.onThisPageSections,(function(t){return n("li",{key:t.anchor,class:e.getItemClasses(t)},[n("router-link",{staticClass:"base-link",attrs:{to:t.url},nativeOn:{click:function(n){return e.handleFocusAndScroll(t.anchor)}}},[n("WordBreak",[e._v(e._s(t.title))])],1)],1)})),0)])},ke=[];function we(e,t){let n,i;return function(...a){const s=this;if(!i)return e.apply(s,a),void(i=Date.now());clearTimeout(n),n=setTimeout(()=>{Date.now()-i>=t&&(e.apply(s,a),i=Date.now())},t-(Date.now()-i))}}var Ie=n("3908"),Oe=n("8a61"),xe={name:"OnThisPageNav",components:{WordBreak:_e["a"]},mixins:[Oe["a"]],inject:{store:{default(){return{state:{onThisPageSections:[],currentPageAnchor:null}}}}},computed:{onThisPageSections:({store:e,$route:t})=>e.state.onThisPageSections.map(e=>({...e,url:Object(q["b"])("#"+e.anchor,t.query)})),currentPageAnchor:({store:e})=>e.state.currentPageAnchor},async mounted(){window.addEventListener("scroll",this.onScroll,!1),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("scroll",this.onScroll)})},watch:{onThisPageSections:{immediate:!0,async handler(){await Object(Ie["b"])(8),this.onScroll()}}},methods:{onScroll:we((function(){const e=this.onThisPageSections.length;if(!e)return;const{scrollY:t,innerHeight:n}=window,{scrollHeight:i}=document.body,a=t+n>=i,s=t<=0,r=.3*n+t;if(s||a){const t=s?0:e-1;return void this.store.setCurrentPageSection(this.onThisPageSections[t].anchor)}let o,l,c=null;for(o=0;ot||Object(it["a"])(e||""),className:()=>at}},rt=st,ot=(n("46c5"),Object(R["a"])(rt,tt,nt,!1,null,"4aae1079",null)),lt=ot.exports,ct=n("2a18"),dt={name:"TopicsTable",inject:{references:{default(){return{}}}},components:{TopicsLinkCardGrid:Ue["a"],WordBreak:_e["a"],ContentTable:et,TopicsLinkBlock:ct["default"],ContentNode:Ne["a"],ContentTableSection:lt,LinkableHeading:Ge["a"]},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:{type:Array,required:!0},title:{type:String,required:!1,default(){return"Topics"}},anchor:{type:String,required:!1,default(){return"topics"}},wrapTitle:{type:Boolean,default:!1},topicStyle:{type:String,default:Se["a"].list}},computed:{shouldRenderList:({topicStyle:e})=>e===Se["a"].list,sectionsWithTopics(){return this.sections.map(e=>({...e,topics:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},ut=dt,ht=(n("4b9a"),Object(R["a"])(ut,Ve,We,!1,null,"6cec8012",null)),pt=ht.exports,gt={name:"DefaultImplementations",components:{TopicsTable:pt},computed:{contentSectionData:()=>qe.defaultImplementations},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pt.props.sections}},ft=gt,mt=Object(R["a"])(ft,Ke,ze,!1,null,null,null),yt=mt.exports,vt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"primary-content"},e._l(e.sections,(function(t,i){return n(e.componentFor(t),e._b({key:i,tag:"component"},"component",e.propsFor(t),!1))})),1)},bt=[],Tt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.contentSectionData.title)+" ")]),n("dl",{staticClass:"datalist"},[e._l(e.values,(function(t){return[n("dt",{key:t.name+":name",staticClass:"param-name"},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.name))])],1),t.content?n("dd",{key:t.name+":content",staticClass:"value-content"},[n("ContentNode",{attrs:{content:t.content}})],1):e._e()]}))],2)],1)},_t=[],St=n("5677"),Ct={name:"PossibleValues",components:{ContentNode:St["default"],LinkableHeading:Ge["a"],WordBreak:_e["a"]},props:{values:{type:Array,required:!0}},computed:{contentSectionData:()=>He[Fe.possibleValues]}},kt=Ct,wt=(n("719b"),Object(R["a"])(kt,Tt,_t,!1,null,null,null)),It=wt.exports,Ot=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("DeclarationSource",{attrs:{tokens:e.tokens}})],1)},xt=[],Dt=function(){var e,t=this,n=t.$createElement,i=t._self._c||n;return i("pre",{ref:"declarationGroup",staticClass:"source",class:(e={},e[t.multipleLinesClass]=t.hasMultipleLines,e)},[i("code",{ref:"code"},t._l(t.formattedTokens,(function(e,n){return i("Token",t._b({key:n},"Token",t.propsFor(e),!1))})),1)])},Pt=[];function $t(e){const t=e.getElementsByClassName("token-identifier");if(t.length<2)return;const n=e.textContent.indexOf(":")+1;for(let i=1;iObject(jt["c"])(["theme","code","indentationWidth"],Rt),formattedTokens:({language:e,formattedSwiftTokens:t,tokens:n})=>e===D["a"].swift.key.api?t:n,formattedSwiftTokens:({indentationWidth:e,tokens:t})=>{const n=" ".repeat(e);let i=!1;const a=[];let s=0,r=1,o=null,l=null,c=null,d=null,u=0;while(sObject(it["a"])(e)}},Ht=qt,Vt=Object(R["a"])(Ht,Ot,xt,!1,null,null,null),Wt=Vt.exports,Ut=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"declaration"},[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.contentSectionData.title)+" ")]),e.hasModifiedChanges?[n("DeclarationDiff",{class:[e.changeClasses,e.multipleLinesClass],attrs:{changes:e.declarationChanges,changeType:e.changeType}})]:e._l(e.declarations,(function(t,i){return n("DeclarationGroup",{key:i,class:e.changeClasses,attrs:{declaration:t,shouldCaption:e.hasPlatformVariants,changeType:e.changeType}})})),e.source?n("DeclarationSourceLink",{attrs:{url:e.source.url,fileName:e.source.fileName}}):e._e(),e.conformance?n("ConditionalConstraints",{attrs:{constraints:e.conformance.constraints,prefix:e.conformance.availabilityPrefix}}):e._e()],2)},Gt=[],Qt=n("64cf"),Xt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{ref:"apiChangesDiff",staticClass:"declaration-group",class:e.classes},[e.shouldCaption?n("p",{staticClass:"platforms"},[n("strong",[e._v(e._s(e.caption))])]):e._e(),n("Source",{attrs:{tokens:e.declaration.tokens,language:e.interfaceLanguage}})],1)},Yt=[],Jt=n("5d59"),Zt={name:"DeclarationGroup",components:{Source:Ft},mixins:[Jt["a"]],inject:{languages:{default:()=>new Set},interfaceLanguage:{default:()=>D["a"].swift.key.api},symbolKind:{default:()=>{}}},props:{declaration:{type:Object,required:!0},shouldCaption:{type:Boolean,default:!1},changeType:{type:String,required:!1}},computed:{classes:({changeType:e,multipleLinesClass:t,hasMultipleLinesAfterAPIChanges:n})=>({["declaration-group--changed declaration-group--"+e]:e,[t]:n}),caption(){return this.declaration.platforms.join(", ")},isSwift:({interfaceLanguage:e})=>e===D["a"].swift.key.api}},en=Zt,tn=(n("a40c"),Object(R["a"])(en,Xt,Yt,!1,null,"c5ecdd3e",null)),nn=tn.exports,an=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"declaration-diff"},[n("div",{staticClass:"declaration-diff-current"},[n("div",{staticClass:"declaration-diff-version"},[e._v("Current")]),e._l(e.currentDeclarations,(function(t,i){return n("DeclarationGroup",{key:i,attrs:{declaration:t,"should-caption":e.currentDeclarations.length>1,changeType:e.changeType}})}))],2),n("div",{staticClass:"declaration-diff-previous"},[n("div",{staticClass:"declaration-diff-version"},[e._v("Previous")]),e._l(e.previousDeclarations,(function(t,i){return n("DeclarationGroup",{key:i,attrs:{declaration:t,"should-caption":e.previousDeclarations.length>1,changeType:e.changeType}})}))],2)])},sn=[],rn={name:"DeclarationDiff",components:{DeclarationGroup:nn},props:{changes:{type:Object,required:!0},changeType:{type:String,required:!0}},computed:{previousDeclarations:({changes:e})=>e.declaration.previous||[],currentDeclarations:({changes:e})=>e.declaration.new||[]}},on=rn,ln=(n("7a2c"),Object(R["a"])(on,an,sn,!1,null,"b3e21c4a",null)),cn=ln.exports,dn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("a",{staticClass:"declaration-source-link",attrs:{href:e.url,title:"Open source file for "+e.fileName,target:"_blank"}},[e.isSwiftFile?n("SwiftFileIcon",{staticClass:"declaration-icon"}):e._e(),n("WordBreak",[e._v(e._s(e.fileName))])],1)},un=[],hn=n("a88f"),pn={name:"DeclarationSourceLink",components:{WordBreak:_e["a"],SwiftFileIcon:hn["a"]},props:{url:{type:String,required:!0},fileName:{type:String,required:!0}},computed:{isSwiftFile:({fileName:e})=>e.endsWith(".swift")}},gn=pn,fn=(n("2dc5"),Object(R["a"])(gn,dn,un,!1,null,"ad6ea67c",null)),mn=fn.exports,yn=n("b5cf"),vn={name:"Declaration",components:{DeclarationDiff:cn,DeclarationGroup:nn,DeclarationSourceLink:mn,ConditionalConstraints:Qt["a"],LinkableHeading:Ge["a"]},constants:{ChangeTypes:yn["c"],multipleLinesClass:Nt["a"]},inject:["identifier","store"],data:({store:{state:e}})=>({state:e,multipleLinesClass:Nt["a"]}),props:{conformance:{type:Object,required:!1},source:{type:Object,required:!1},declarations:{type:Array,required:!0}},computed:{contentSectionData:()=>He[Fe.declarations],hasPlatformVariants(){return this.declarations.length>1},hasModifiedChanges({declarationChanges:e}){if(!e||!e.declaration)return!1;const t=e.declaration;return!(!(t.new||[]).length||!(t.previous||[]).length)},declarationChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t],changeType:({declarationChanges:e,hasModifiedChanges:t})=>{if(!e)return;const n=e.declaration;return n?t?yn["c"].modified:e.change:e.change===yn["c"].added?yn["c"].added:void 0},changeClasses:({changeType:e})=>({["changed changed-"+e]:e})}},bn=vn,Tn=(n("7d0e"),Object(R["a"])(bn,Ut,Gt,!1,null,"586930aa",null)),_n=Tn.exports,Sn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"details"},[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.contentSectionData.title)+" ")]),n("dl",[e.isSymbol?[n("dt",{key:e.details.name+":name",staticClass:"detail-type"},[e._v(" Name ")]),n("dd",{key:e.details.ideTitle+":content",staticClass:"detail-content"},[e._v(" "+e._s(e.details.ideTitle)+" ")])]:e._e(),e.isTitle?[n("dt",{key:e.details.name+":key",staticClass:"detail-type"},[e._v(" Key ")]),n("dd",{key:e.details.ideTitle+":content",staticClass:"detail-content"},[e._v(" "+e._s(e.details.name)+" ")])]:e._e(),n("dt",{key:e.details.name+":type",staticClass:"detail-type"},[e._v(" Type ")]),n("dd",{staticClass:"detail-content"},[n("PropertyListKeyType",{attrs:{types:e.details.value}})],1)],2)],1)},Cn=[],kn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"type"},[e._v(e._s(e.typeOutput))])},wn=[],In={name:"PropertyListKeyType",props:{types:{type:Array,required:!0}},computed:{englishTypes(){return this.types.map(({arrayMode:e,baseType:t="*"})=>e?"array of "+this.pluralizeKeyType(t):t)},typeOutput(){return this.englishTypes.length>2?[this.englishTypes.slice(0,this.englishTypes.length-1).join(", "),this.englishTypes[this.englishTypes.length-1]].join(", or "):this.englishTypes.join(" or ")}},methods:{pluralizeKeyType(e){switch(e){case"dictionary":return"dictionaries";case"array":case"number":case"string":return e+"s";default:return e}}}},On=In,xn=(n("f7c0"),Object(R["a"])(On,kn,wn,!1,null,"791bac44",null)),Dn=xn.exports,Pn={name:"PropertyListKeyDetails",components:{PropertyListKeyType:Dn,LinkableHeading:Ge["a"]},props:{details:{type:Object,required:!0}},computed:{contentSectionData:()=>He[Fe.details],isTitle(){return"title"===this.details.titleStyle&&this.details.ideTitle},isSymbol(){return"symbol"===this.details.titleStyle&&this.details.ideTitle}}},$n=Pn,An=(n("c2c8"),Object(R["a"])($n,Sn,Cn,!1,null,"55ba4aa2",null)),Ln=An.exports,Nn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"parameters"},[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.contentSectionData.title)+" ")]),n("dl",[e._l(e.parameters,(function(t){return[n("dt",{key:t.name+":name",staticClass:"param-name"},[n("code",[e._v(e._s(t.name))])]),n("dd",{key:t.name+":content",staticClass:"param-content"},[n("ContentNode",{attrs:{content:t.content}})],1)]}))],2)],1)},jn=[],En={name:"Parameters",components:{ContentNode:Ne["a"],LinkableHeading:Ge["a"]},props:{parameters:{type:Array,required:!0}},computed:{contentSectionData:()=>He[Fe.parameters]}},Bn=En,Rn=(n("ac53"),Object(R["a"])(Bn,Nn,jn,!1,null,"ac6bef9a",null)),Mn=Rn.exports,Kn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{staticClass:"property-table",attrs:{parameters:e.properties,changes:e.propertyChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes,o=t.deprecated;return[n("div",{staticClass:"property-name",class:{deprecated:o}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),e.shouldShiftType({name:i,content:s})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:r.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.type,s=t.attributes,r=t.content,o=t.required,l=t.changes,c=t.deprecated,d=t.readOnly;return[e.shouldShiftType({name:i,content:r})?n("PossiblyChangedType",{attrs:{type:a,changes:l.type}}):e._e(),c?[n("Badge",{staticClass:"property-deprecated",attrs:{variant:"deprecated"}}),e._v("  ")]:e._e(),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:o}},[e._v("(Required) ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:d}},[e._v("(Read only) ")]),r?n("ContentNode",{attrs:{content:r}}):e._e(),n("ParameterAttributes",{attrs:{attributes:s,changes:l.attributes}})]}}])})],1)},zn=[],Fn={inject:["identifier","store"],data:({store:{state:e}})=>({state:e}),computed:{apiChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t]}},qn=n("a0fd"),Hn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"parameters-table"},e._l(e.parameters,(function(t){return n("Row",{key:t[e.keyBy],staticClass:"param",class:e.changedClasses(t[e.keyBy])},[n("Column",{staticClass:"param-symbol",attrs:{span:{large:3,small:12}}},[e._t("symbol",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2),n("Column",{staticClass:"param-content",attrs:{span:{large:9,small:12}}},[e._t("description",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2)],1)})),1)},Vn=[],Wn={name:"ParametersTable",components:{Row:N["a"],Column:j["a"]},props:{parameters:{type:Array,required:!0},changes:{type:Object,default:()=>({})},keyBy:{type:String,default:"name"}},methods:{getProps(e,t={}){return{...e,changes:t}},changedClasses(e){const{changes:t}=this,{change:n}=t[e]||{};return{["changed changed-"+n]:n}}}},Un=Wn,Gn=(n("e5a5"),Object(R["a"])(Un,Hn,Vn,!1,null,"31e03854",null)),Qn=Gn.exports,Xn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"parameter-attributes"},[e.shouldRender(e.AttributeKind.default)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(i.title||"Default")+": "),n("code",[e._v(e._s(i.value))])]}}],null,!1,4247435012)},"ParameterMetaAttribute",{kind:e.AttributeKind.default,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimum)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(i.title||"Minimum")+": "),n("code",[e._v(e._s(i.value))])]}}],null,!1,455861177)},"ParameterMetaAttribute",{kind:e.AttributeKind.minimum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimumExclusive)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(i.title||"Minimum")+": "),n("code",[e._v("> "+e._s(i.value))])]}}],null,!1,3844501612)},"ParameterMetaAttribute",{kind:e.AttributeKind.minimumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximum)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(i.title||"Maximum")+": "),n("code",[e._v(e._s(i.value))])]}}],null,!1,19641767)},"ParameterMetaAttribute",{kind:e.AttributeKind.maximum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximumExclusive)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(i.title||"Maximum")+": "),n("code",[e._v("< "+e._s(i.value))])]}}],null,!1,4289558576)},"ParameterMetaAttribute",{kind:e.AttributeKind.maximumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.allowedTypes)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.fallbackToValues(i).length>1?"Possible types":"Type")+": "),n("code",[e._l(e.fallbackToValues(i),(function(t,a){return[e._l(t,(function(t,s){return[n("DeclarationToken",e._b({key:a+"-"+s},"DeclarationToken",t,!1)),a+11?"Possible values":"Value")+": "),n("code",[e._v(e._s(e.fallbackToValues(i).join(", ")))])]}}],null,!1,1507632019)},"ParameterMetaAttribute",{kind:e.AttributeKind.allowedValues,attributes:e.attributesObject,changes:e.changes},!1)):e._e()],1)},Yn=[],Jn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{value:e.attributes[e.kind],changes:e.changes[e.kind]},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return n("div",{staticClass:"property-metadata"},[e._t("default",null,{attribute:i})],2)}}],null,!0)})},Zn=[];const ei={added:"change-added",removed:"change-removed"};var ti,ni,ii={name:"RenderChanged",constants:{ChangedClasses:ei},props:{changes:{type:Object,default:()=>({new:null,previous:null})},value:{type:[Object,Array,String,Boolean],default:null},wrapChanges:{type:Boolean,default:!0},renderSingleChange:{type:Boolean,default:!1}},render(e){const{value:t,changes:n={},wrapChanges:i,renderSingleChange:a}=this,{new:s,previous:r}=n,o=(t,n)=>{const a=this.$scopedSlots.default({value:t});return n&&i?e("div",{class:n},[a]):a?a[0]:null};if(s||r){const t=o(s,ei.added),n=o(r,ei.removed);return a?s&&!r?t:n:e("div",{class:"property-changegroup"},[s?t:"",r?n:""])}return o(t)}},ai=ii,si=Object(R["a"])(ai,ti,ni,!1,null,null,null),ri=si.exports,oi={name:"ParameterMetaAttribute",components:{RenderChanged:ri},props:{kind:{type:String,required:!0},attributes:{type:Object,required:!0},changes:{type:Object,default:()=>({})}}},li=oi,ci=(n("2822"),Object(R["a"])(li,Jn,Zn,!1,null,"8590589e",null)),di=ci.exports;const ui={allowedTypes:"allowedTypes",allowedValues:"allowedValues",default:"default",maximum:"maximum",maximumExclusive:"maximumExclusive",minimum:"minimum",minimumExclusive:"minimumExclusive"};var hi={name:"ParameterAttributes",components:{ParameterMetaAttribute:di,DeclarationToken:Et["a"]},constants:{AttributeKind:ui},props:{attributes:{type:Array,default:()=>[]},changes:{type:Object,default:()=>({})}},computed:{AttributeKind:()=>ui,attributesObject:({attributes:e})=>e.reduce((e,t)=>({...e,[t.kind]:t}),{})},methods:{shouldRender(e){return Object.prototype.hasOwnProperty.call(this.attributesObject,e)},fallbackToValues:e=>{const t=e||[];return Array.isArray(t)?t:t.values}}},pi=hi,gi=Object(R["a"])(pi,Xn,Yn,!1,null,null,null),fi=gi.exports,mi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{renderSingleChange:"",value:e.value,changes:e.changes},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return i?n("span",{staticClass:"property-text"},[e._t("default")],2):e._e()}}],null,!0)})},yi=[],vi={name:"PossiblyChangedTextAttribute",components:{RenderChanged:ri},props:{changes:{type:Object,required:!1},value:{type:Boolean,default:!1}}},bi=vi,Ti=(n("5c57"),Object(R["a"])(bi,mi,yi,!1,null,null,null)),_i=Ti.exports,Si=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{value:e.type,wrapChanges:!1,changes:e.changes},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return n("DeclarationTokenGroup",{staticClass:"property-metadata property-type",attrs:{type:e.getValues(i)}})}}])})},Ci=[],ki=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.type&&e.type.length?n("div",[n("code",e._l(e.type,(function(t,i){return n("DeclarationToken",e._b({key:i},"DeclarationToken",t,!1))})),1)]):e._e()},wi=[],Ii={name:"DeclarationTokenGroup",components:{DeclarationToken:Et["a"]},props:{type:{type:Array,default:()=>[],required:!1}}},Oi=Ii,xi=Object(R["a"])(Oi,ki,wi,!1,null,null,null),Di=xi.exports,Pi={name:"PossiblyChangedType",components:{DeclarationTokenGroup:Di,RenderChanged:ri},props:{type:{type:Array,required:!0},changes:{type:Object,required:!1}},methods:{getValues(e){return Array.isArray(e)?e:e.values}}},$i=Pi,Ai=(n("2f87"),Object(R["a"])($i,Si,Ci,!1,null,"0a648a1e",null)),Li=Ai.exports,Ni={name:"PropertyTable",mixins:[Fn],components:{Badge:qn["a"],WordBreak:_e["a"],PossiblyChangedTextAttribute:_i,PossiblyChangedType:Li,ParameterAttributes:fi,ContentNode:Ne["a"],ParametersTable:Qn,LinkableHeading:Ge["a"]},props:{title:{type:String,required:!0},properties:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(it["a"])(e),propertyChanges:({apiChanges:e})=>(e||{}).properties},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},ji=Ni,Ei=(n("21ff"),Object(R["a"])(ji,Kn,zn,!1,null,"25cd22fa",null)),Bi=Ei.exports,Ri=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:[e.bodyParam],changes:e.bodyChanges,keyBy:"key"},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.type,a=t.content,s=t.changes,r=t.name;return[e.shouldShiftType({name:r,content:a})?e._e():n("PossiblyChangedType",{attrs:{type:i,changes:s.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.content,s=t.mimeType,r=t.type,o=t.changes;return[e.shouldShiftType({name:i,content:a})?n("PossiblyChangedType",{attrs:{type:r,changes:o.type}}):e._e(),a?n("ContentNode",{attrs:{content:a}}):e._e(),s?n("PossiblyChangedMimetype",{attrs:{mimetype:s,changes:o.mimetype,change:o.change}}):e._e()]}}])}),e.parts.length?[n("h3",[e._v("Parts")]),n("ParametersTable",{staticClass:"parts",attrs:{parameters:e.parts,changes:e.partsChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes;return[n("div",{staticClass:"part-name"},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),s?n("PossiblyChangedType",{attrs:{type:a,changes:r.type}}):e._e()]}},{key:"description",fn:function(t){var i=t.content,a=t.mimeType,s=t.required,r=t.type,o=t.attributes,l=t.changes,c=t.readOnly;return[n("div",[i?e._e():n("PossiblyChangedType",{attrs:{type:r,changes:l.type}}),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:s}},[e._v("(Required) ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:c}},[e._v("(Read only) ")]),i?n("ContentNode",{attrs:{content:i}}):e._e(),a?n("PossiblyChangedMimetype",{attrs:{mimetype:a,changes:l.mimetype,change:l.change}}):e._e(),n("ParameterAttributes",{attrs:{attributes:o,changes:l.attributes}})],1)]}}],null,!1,1779956822)})]:e._e()],2)},Mi=[],Ki=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{changes:e.changeValues,value:e.mimetype},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return n("div",{staticClass:"response-mimetype"},[e._v("Content-Type: "+e._s(i))])}}])})},zi=[],Fi={name:"PossiblyChangedMimetype",components:{RenderChanged:ri},props:{mimetype:{type:String,required:!0},changes:{type:[Object,String],required:!1},change:{type:String,required:!1}},computed:{changeValues({change:e,changes:t}){return e===yn["c"].modified&&"string"!==typeof t?t:void 0}}},qi=Fi,Hi=(n("a91f"),Object(R["a"])(qi,Ki,zi,!1,null,"2faa6020",null)),Vi=Hi.exports;const Wi="restRequestBody";var Ui={name:"RestBody",mixins:[Fn],components:{PossiblyChangedMimetype:Vi,PossiblyChangedTextAttribute:_i,PossiblyChangedType:Li,WordBreak:_e["a"],ParameterAttributes:fi,ContentNode:Ne["a"],ParametersTable:Qn,LinkableHeading:Ge["a"]},constants:{ChangesKey:Wi},props:{bodyContentType:{type:Array,required:!0},content:{type:Array},mimeType:{type:String,required:!0},parts:{type:Array,default:()=>[]},title:{type:String,required:!0}},computed:{anchor:({title:e})=>Object(it["a"])(e),bodyParam:({bodyContentType:e,content:t,mimeType:n})=>({key:Wi,content:t,mimeType:n,type:e}),bodyChanges:({apiChanges:e})=>e||{},partsChanges:({bodyChanges:e})=>(e[Wi]||{}).parts},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},Gi=Ui,Qi=(n("3a72"),Object(R["a"])(Gi,Ri,Mi,!1,null,"37777476",null)),Xi=Qi.exports,Yi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:e.parameters,changes:e.parameterChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes,o=t.deprecated;return[n("div",{staticClass:"param-name",class:{deprecated:o}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),e.shouldShiftType({content:s,name:i})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:r.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.required,o=t.attributes,l=t.changes,c=t.deprecated,d=t.readOnly;return[n("div",[e.shouldShiftType({content:s,name:i})?n("PossiblyChangedType",{attrs:{type:a,changes:l.type}}):e._e(),c?[n("Badge",{staticClass:"param-deprecated",attrs:{variant:"deprecated"}}),e._v("  ")]:e._e(),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:r}},[e._v("(Required) ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:d}},[e._v("(Read only) ")]),s?n("ContentNode",{attrs:{content:s}}):e._e(),n("ParameterAttributes",{attrs:{attributes:o,changes:l}})],2)]}}])})],1)},Ji=[],Zi={name:"RestParameters",mixins:[Fn],components:{Badge:qn["a"],PossiblyChangedType:Li,PossiblyChangedTextAttribute:_i,ParameterAttributes:fi,WordBreak:_e["a"],ContentNode:Ne["a"],ParametersTable:Qn,LinkableHeading:Ge["a"]},props:{title:{type:String,required:!0},parameters:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(it["a"])(e),parameterChanges:({apiChanges:e})=>(e||{}).restParameters},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},ea=Zi,ta=(n("83ed"),Object(R["a"])(ea,Yi,Ji,!1,null,"05f57530",null)),na=ta.exports,ia=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:e.responses,changes:e.propertyChanges,"key-by":"status"},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.status,a=t.type,s=t.reason,r=t.content,o=t.changes;return[n("div",{staticClass:"response-name"},[n("code",[e._v(" "+e._s(i)+" "),n("span",{staticClass:"reason"},[e._v(e._s(s))])])]),e.shouldShiftType({content:r,reason:s,status:i})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:o.type}})]}},{key:"description",fn:function(t){var i=t.content,a=t.mimetype,s=t.reason,r=t.type,o=t.status,l=t.changes;return[e.shouldShiftType({content:i,reason:s,status:o})?n("PossiblyChangedType",{attrs:{type:r,changes:l.type}}):e._e(),n("div",{staticClass:"response-reason"},[n("code",[e._v(e._s(s))])]),i?n("ContentNode",{attrs:{content:i}}):e._e(),a?n("PossiblyChangedMimetype",{attrs:{mimetype:a,changes:l.mimetype,change:l.change}}):e._e()]}}])})],1)},aa=[],sa={name:"RestResponses",mixins:[Fn],components:{PossiblyChangedMimetype:Vi,PossiblyChangedType:Li,ContentNode:Ne["a"],ParametersTable:Qn,LinkableHeading:Ge["a"]},props:{title:{type:String,required:!0},responses:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(it["a"])(e),propertyChanges:({apiChanges:e})=>(e||{}).restResponses},methods:{shouldShiftType:({content:e=[],reason:t,status:n})=>!(e.length||t)&&n}},ra=sa,oa=(n("7649"),Object(R["a"])(ra,ia,aa,!1,null,"881189f4",null)),la=oa.exports,ca={name:"PrimaryContent",components:{Declaration:_n,ContentNode:Ne["a"],Parameters:Mn,PropertyListKeyDetails:Ln,PropertyTable:Bi,RestBody:Xi,RestEndpoint:Wt,RestParameters:na,RestResponses:la,PossibleValues:It},constants:{SectionKind:Fe},props:{conformance:{type:Object,required:!1},source:{type:Object,required:!1},sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(Fe,e))}},computed:{span(){return{large:9,medium:9,small:12}}},methods:{componentFor(e){return{[Fe.content]:Ne["a"],[Fe.declarations]:_n,[Fe.details]:Ln,[Fe.parameters]:Mn,[Fe.properties]:Bi,[Fe.restBody]:Xi,[Fe.restParameters]:na,[Fe.restHeaders]:na,[Fe.restCookies]:na,[Fe.restEndpoint]:Wt,[Fe.restResponses]:la,[Fe.possibleValues]:It}[e.kind]},propsFor(e){const{conformance:t,source:n}=this,{bodyContentType:i,content:a,declarations:s,details:r,items:o,kind:l,mimeType:c,parameters:d,title:u,tokens:h,values:p}=e;return{[Fe.content]:{content:a},[Fe.declarations]:{conformance:t,source:n,declarations:s},[Fe.details]:{details:r},[Fe.parameters]:{parameters:d},[Fe.possibleValues]:{values:p},[Fe.properties]:{properties:o,title:u},[Fe.restBody]:{bodyContentType:i,content:a,mimeType:c,parts:d,title:u},[Fe.restCookies]:{parameters:o,title:u},[Fe.restEndpoint]:{tokens:h,title:u},[Fe.restHeaders]:{parameters:o,title:u},[Fe.restParameters]:{parameters:o,title:u},[Fe.restResponses]:{responses:o,title:u}}[l]}}},da=ca,ua=(n("96a4"),Object(R["a"])(da,vt,bt,!1,null,"2aa0f0dc",null)),ha=ua.exports,pa=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.contentSectionData.title}},e._l(e.sectionsWithSymbols,(function(e){return n("Section",{key:e.type,attrs:{title:e.title,anchor:e.anchor}},[n("List",{attrs:{symbols:e.symbols,type:e.type}})],1)})),1)},ga=[],fa=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{ref:"apiChangesDiff",staticClass:"relationships-list",class:e.classes},e._l(e.symbols,(function(t){return n("li",{key:t.identifier,staticClass:"relationships-item"},[t.url?n("router-link",{staticClass:"link",attrs:{to:e.buildUrl(t.url,e.$route.query)}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.title))])],1):n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.title))]),t.conformance?n("ConditionalConstraints",{attrs:{constraints:t.conformance.constraints,prefix:t.conformance.conformancePrefix}}):e._e()],1)})),0)},ma=[];const ya=3,va={conformsTo:"conformance",inheritsFrom:"inheritance",inheritedBy:"inheritedBy"};var ba={name:"RelationshipsList",components:{ConditionalConstraints:Qt["a"],WordBreak:_e["a"]},inject:["store","identifier"],mixins:[Jt["b"],Jt["a"]],props:{symbols:{type:Array,required:!0},type:{type:String,required:!0}},data(){return{state:this.store.state}},computed:{classes({changeType:e,multipleLinesClass:t,hasMultipleLinesAfterAPIChanges:n}){return[{inline:this.shouldDisplayInline,column:!this.shouldDisplayInline,["changed changed-"+e]:!!e,[t]:n}]},hasAvailabilityConstraints(){return this.symbols.some(e=>!!(e.conformance||{}).constraints)},changes({identifier:e,state:{apiChanges:t}}){return(t||{})[e]||{}},changeType({changes:e,type:t}){const n=va[t];if(e.change!==yn["c"].modified)return e.change;const i=e[n];if(!i)return;const a=(e,t)=>e.map((e,n)=>[e,t[n]]),s=a(i.previous,i.new).some(([e,t])=>e.content?0===e.content.length&&t.content.length>0:!!t.content);return s?yn["c"].added:yn["c"].modified},shouldDisplayInline(){const{hasAvailabilityConstraints:e,symbols:t}=this;return t.length<=ya&&!e}},methods:{buildUrl:q["b"]}},Ta=ba,_a=(n("4281"),Object(R["a"])(Ta,fa,ma,!1,null,"6497632e",null)),Sa=_a.exports,Ca={name:"Relationships",inject:{references:{default(){return{}}}},components:{ContentTable:et,List:Sa,Section:lt},props:{sections:{type:Array,required:!0}},computed:{contentSectionData:()=>qe.relationships,sectionsWithSymbols(){return this.sections.map(e=>({...e,symbols:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},ka=Ca,wa=Object(R["a"])(ka,pa,ga,!1,null,null,null),Ia=wa.exports,Oa=n("e8ea"),xa=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"availability",attrs:{role:"complementary","aria-label":"Availability"}},[e._l(e.technologies,(function(t){return n("Badge",{key:t,staticClass:"technology"},[n("TechnologyIcon",{staticClass:"tech-icon"}),e._v(" "+e._s(t)+" ")],1)})),e._l(e.platforms,(function(t){return n("Badge",{key:t.name,staticClass:"platform",class:e.changesClassesFor(t.name)},[n("AvailabilityRange",{attrs:{deprecatedAt:t.deprecatedAt,introducedAt:t.introducedAt,platformName:t.name}}),t.deprecatedAt?n("span",{staticClass:"deprecated"},[e._v("Deprecated")]):t.beta?n("span",{staticClass:"beta"},[e._v("Beta")]):e._e()],1)}))],2)},Da=[],Pa=n("3024"),$a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{attrs:{role:"text","aria-label":e.ariaLabel,title:e.description}},[e._v(" "+e._s(e.text)+" ")])},Aa=[],La={name:"AvailabilityRange",props:{deprecatedAt:{type:String,required:!1},introducedAt:{type:String,required:!0},platformName:{type:String,required:!0}},computed:{ariaLabel(){const{deprecatedAt:e,description:t,text:n}=this;return[n].concat(e?"Deprecated":[]).concat(t).join(", ")},description(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?`Introduced in ${n} ${t} and deprecated in ${n} ${e}`:`Available on ${n} ${t} and later`},text(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?`${n} ${t}–${e}`:`${n} ${t}+`}}},Na=La,ja=Object(R["a"])(Na,$a,Aa,!1,null,null,null),Ea=ja.exports,Ba={name:"Availability",mixins:[Jt["b"]],inject:["identifier","store"],components:{Badge:qn["a"],AvailabilityRange:Ea,Section:te,TechnologyIcon:Pa["a"]},props:{platforms:{type:Array,required:!0},technologies:{type:Array,required:!1}},data(){return{state:this.store.state}},methods:{changeFor(e){const{identifier:t,state:{apiChanges:n}}=this,{availability:i={}}=(n||{})[t]||{},a=i[e];if(a)return a.deprecated?yn["c"].deprecated:a.introduced&&!a.introduced.previous?yn["c"].added:yn["c"].modified}}},Ra=Ba,Ma=(n("d6cc"),Object(R["a"])(Ra,xa,Da,!1,null,"3b784eb3",null)),Ka=Ma.exports,za=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.contentSectionData.title,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections}})},Fa=[],qa={name:"SeeAlso",components:{TopicsTable:pt},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pt.props.sections},computed:{contentSectionData:()=>qe.seeAlso}},Ha=qa,Va=Object(R["a"])(Ha,za,Fa,!1,null,null,null),Wa=Va.exports,Ua=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"topictitle"},[e.eyebrow?n("span",{staticClass:"eyebrow"},[e._v(e._s(e.eyebrow))]):e._e(),n("h1",{staticClass:"title"},[e._t("default"),e._t("after")],2)])},Ga=[],Qa={name:"Title",props:{eyebrow:{type:String,required:!1}}},Xa=Qa,Ya=(n("3396"),Object(R["a"])(Xa,Ua,Ga,!1,null,"4492c658",null)),Ja=Ya.exports,Za=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.contentSectionData.title,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections,topicStyle:e.topicStyle}})},es=[],ts={name:"Topics",components:{TopicsTable:pt},computed:{contentSectionData:()=>qe.topics},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pt.props.sections,topicStyle:{type:String,required:!0,validator:e=>Object.hasOwnProperty.call(Se["a"],e)}}},ns=ts,is=Object(R["a"])(ns,Za,es,!1,null,null,null),as=is.exports,ss=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"OnThisPageStickyContainer"},[e._t("default")],2)},rs=[],os={name:"OnThisPageStickyContainer"},ls=os,cs=(n("447f"),Object(R["a"])(ls,ss,rs,!1,null,"08d4053b",null)),ds=cs.exports;const us=1050;var hs={name:"DocumentationTopic",mixins:[P["a"]],constants:{ON_THIS_PAGE_CONTAINER_BREAKPOINT:us},inject:{isTargetIDE:{default(){return!1}},store:{default(){return{reset(){},state:{}}}}},components:{OnThisPageStickyContainer:ds,OnThisPageNav:$e,DocumentationHero:Te,Abstract:Re,Aside:$["a"],BetaLegalText:K,ContentNode:Ne["a"],DefaultImplementations:yt,DownloadButton:Me["a"],LanguageSwitcher:ue,PrimaryContent:ha,Relationships:Ia,RequirementMetadata:Oa["a"],Availability:Ka,SeeAlso:Wa,Title:Ja,Topics:as,WordBreak:_e["a"]},props:{abstract:{type:Array,required:!1},conformance:{type:Object,required:!1},defaultImplementationsSections:{type:Array,required:!1},downloadNotAvailableSummary:{type:Array,required:!1},deprecationSummary:{type:Array,required:!1},diffAvailability:{type:Object,required:!1},modules:{type:Array,required:!1},hierarchy:{type:Object,default:()=>({})},interfaceLanguage:{type:String,required:!0},identifier:{type:String,required:!0},isRequirement:{type:Boolean,default:()=>!1},platforms:{type:Array,required:!1},primaryContentSections:{type:Array,required:!1},references:{type:Object,required:!0},relationshipsSections:{type:Array,required:!1},roleHeading:{type:String,required:!1},title:{type:String,required:!0},topicSections:{type:Array,required:!1},topicSectionsStyle:{type:String,default:Se["a"].list},sampleCodeDownload:{type:Object,required:!1},seeAlsoSections:{type:Array,required:!1},languagePaths:{type:Object,default:()=>({})},tags:{type:Array,required:!0},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isSymbolBeta:{type:Boolean,required:!1},symbolKind:{type:String,default:""},role:{type:String,default:""},remoteSource:{type:Object,required:!1},pageImages:{type:Array,required:!1},enableMinimized:{type:Boolean,default:!1},enableOnThisPageNav:{type:Boolean,default:!1},disableHeroBackground:{type:Boolean,default:!1}},provide(){return{references:this.references,identifier:this.identifier,languages:new Set(Object.keys(this.languagePaths)),interfaceLanguage:this.interfaceLanguage,symbolKind:this.symbolKind}},data(){return{topicState:this.store.state}},computed:{defaultImplementationsCount(){return(this.defaultImplementationsSections||[]).reduce((e,t)=>e+t.identifiers.length,0)},shouldShowAvailability:({platforms:e,technologies:t,enableMinimized:n})=>((e||[]).length||(t||[]).length)&&!n,hasBetaContent:({platforms:e})=>e&&e.length&&e.some(e=>e.beta),pageTitle:({title:e})=>e,pageDescription:({abstract:e,extractFirstParagraphText:t})=>e?t(e):null,shouldShowLanguageSwitcher:({objcPath:e,swiftPath:t,isTargetIDE:n,enableMinimized:i})=>!!(e&&t&&n)&&!i,enhanceBackground:({symbolKind:e,disableHeroBackground:t,topicSectionsStyle:n})=>!t&&n!==Se["a"].compactGrid&&n!==Se["a"].detailedGrid&&(!e||"module"===e),shortHero:({roleHeading:e,abstract:t,sampleCodeDownload:n,hasAvailability:i,shouldShowLanguageSwitcher:a})=>!!e+!!t+!!n+!!i+a<=1,technologies({modules:e=[]}){const t=e.reduce((e,t)=>(e.push(t.name),e.concat(t.relatedModules||[])),[]);return t.length>1?t:[]},titleBreakComponent:({enhanceBackground:e})=>e?"span":_e["a"],hasPrimaryContent:({isRequirement:e,deprecationSummary:t,downloadNotAvailableSummary:n,primaryContentSections:i})=>e||t&&t.length||n&&n.length||i&&i.length,tagName:({isSymbolDeprecated:e})=>e?"Deprecated":"Beta",pageIcon:({pageImages:e=[]})=>{const t=e.find(({type:e})=>"icon"===e);return t?t.identifier:null},shouldRenderTopicSection:({topicSectionsStyle:e,topicSections:t,enableMinimized:n})=>t&&e!==Se["a"].hidden&&!n,isOnThisPageNavVisible:({topicState:e})=>e.contentWidth>us},methods:{normalizePath(e){return e.startsWith("/")?e:"/"+e}},created(){if(this.topicState.preferredLanguage===D["a"].objectiveC.key.url&&this.interfaceLanguage!==D["a"].objectiveC.key.api&&this.objcPath&&this.$route.query.language!==D["a"].objectiveC.key.url){const{query:e}=this.$route;this.$nextTick().then(()=>{this.$router.replace({path:this.normalizePath(this.objcPath),query:{...e,language:D["a"].objectiveC.key.url}})})}this.store.reset()}},ps=hs,gs=(n("1c02"),Object(R["a"])(ps,O,x,!1,null,"666eaa31",null)),fs=gs.exports,ms=n("2b0e");const ys=()=>({[yn["c"].modified]:0,[yn["c"].added]:0,[yn["c"].deprecated]:0});var vs={state:{apiChanges:null,apiChangesCounts:ys(),selectedAPIChangesVersion:null},setAPIChanges(e){this.state.apiChanges=e},setSelectedAPIChangesVersion(e){this.state.selectedAPIChangesVersion=e},resetApiChanges(){this.state.apiChanges=null,this.state.apiChangesCounts=ys()},async updateApiChangesCounts(){await ms["default"].nextTick(),Object.keys(this.state.apiChangesCounts).forEach(e=>{this.state.apiChangesCounts[e]=this.countChangeType(e)})},countChangeType(e){if(document&&document.querySelectorAll){const t=`.changed-${e}:not(.changed-total)`;return document.querySelectorAll(t).length}return 0}},bs={state:{onThisPageSections:[],currentPageAnchor:null},resetPageSections(){this.state.onThisPageSections=[],this.state.currentPageAnchor=null},addOnThisPageSection(e){this.state.onThisPageSections.push(e)},setCurrentPageSection(e){const t=this.state.onThisPageSections.findIndex(({anchor:t})=>t===e);-1!==t&&(this.state.currentPageAnchor=e)}},Ts=n("d369");const{state:_s,...Ss}=vs,{state:Cs,...ks}=bs;var ws={state:{preferredLanguage:Ts["a"].preferredLanguage,contentWidth:0,..._s,...Cs},reset(){this.state.preferredLanguage=Ts["a"].preferredLanguage,this.resetApiChanges()},setPreferredLanguage(e){this.state.preferredLanguage=e,Ts["a"].preferredLanguage=this.state.preferredLanguage},setContentWidth(e){this.state.contentWidth=e},...Ss,...ks},Is=n("8590"),Os=n("66c9"),xs=n("0caf"),Ds=n("146e");const Ps="",$s=32,As="navigator-hide-button";function Ls(e){return e.split("").reduce((e,t)=>(e<<5)-e+t.charCodeAt(0)|0,0)}function Ns(e){const t={},n=e.length;for(let i=0;ie.parent===Ps);const i=t[e];return i?(i.childUIDs||[]).map(e=>t[e]):[]}function Rs(e,t){const n=[],i=[e];let a=null;while(i.length){a=i.pop();const e=t[a];if(!e)return[];n.unshift(e),e.parent&&e.parent!==Ps&&i.push(e.parent)}return n}function Ms(e,t,n){const i=t[e];return i?Bs(i.parent,t,n):[]}var Ks,zs,Fs={name:"NavigatorDataProvider",props:{interfaceLanguage:{type:String,default:D["a"].swift.key.url},technologyUrl:{type:String,required:!0},apiChangesVersion:{type:String,default:""}},data(){return{isFetching:!1,errorFetching:!1,isFetchingAPIChanges:!1,navigationIndex:{[D["a"].swift.key.url]:[]},navigationReferences:{},diffs:null}},computed:{flatChildren:({technologyWithChildren:e={}})=>js(e.children||[],null,0,e.beta),technologyPath:({technologyUrl:e})=>{const t=/(\/documentation\/(?:[^/]+))\/?/.exec(e);return t?t[1]:""},technologyWithChildren({navigationIndex:e,interfaceLanguage:t,technologyPath:n}){let i=e[t]||[];return i.length||(i=e[D["a"].swift.key.url]||[]),i.find(e=>n.toLowerCase()===e.path.toLowerCase())}},created(){this.fetchIndexData()},methods:{async fetchIndexData(){try{this.isFetching=!0;const{interfaceLanguages:e,references:t}=await Object(w["c"])();this.navigationIndex=Object.freeze(e),this.navigationReferences=Object.freeze(t)}catch(e){this.errorFetching=!0}finally{this.isFetching=!1}}},render(){return this.$scopedSlots.default({technology:this.technologyWithChildren,isFetching:this.isFetching,errorFetching:this.errorFetching,isFetchingAPIChanges:this.isFetchingAPIChanges,apiChanges:this.diffs,flatChildren:this.flatChildren,references:this.navigationReferences})}},qs=Fs,Hs=Object(R["a"])(qs,Ks,zs,!1,null,null,null),Vs=Hs.exports,Ws=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("GenericModal",{attrs:{isFullscreen:"",showClose:!1,visible:e.isVisible},on:{"update:visible":function(t){e.isVisible=t}}},[n("div",{staticClass:"quick-navigation",on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNext.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.handleKeyEnter.apply(null,arguments)}],click:function(t){return t.target!==t.currentTarget?null:e.closeQuickNavigationModal.apply(null,arguments)}}},[n("div",{staticClass:"quick-navigation__container"},[n("FilterInput",{staticClass:"quick-navigation__filter",attrs:{placeholder:"Search symbols",focusInputWhenCreated:"",focusInputWhenEmpty:""},on:{input:function(t){e.focusedIndex=0}},scopedSlots:e._u([{key:"icon",fn:function(){return[n("div",{staticClass:"quick-navigation__magnifier-icon-container",class:{blue:e.userInput.length}},[n("MagnifierIcon")],1)]},proxy:!0}]),model:{value:e.userInput,callback:function(t){e.userInput=t},expression:"userInput"}}),n("div",{staticClass:"quick-navigation__match-list",class:{active:e.processedUserInput.length}},[e.noResultsWereFound?n("div",{staticClass:"no-results"},[n("p",[e._v(" No results found. ")])]):e._e(),e._l(e.filteredSymbols,(function(t,i){return n("Reference",{key:t.uid,staticClass:"quick-navigation__reference",attrs:{url:t.path},nativeOn:{click:function(t){return e.closeQuickNavigationModal.apply(null,arguments)},focus:function(t){return e.focusIndex(i)}}},[n("div",{ref:"match",refInFor:!0,staticClass:"quick-navigation__symbol-match",class:{selected:i==e.focusedIndex},attrs:{role:"list"}},[n("div",{staticClass:"symbol-info"},[n("div",{staticClass:"symbol-name"},[n("TopicTypeIcon",{staticClass:"navigator-icon",attrs:{type:t.type}}),n("div",{staticClass:"symbol-title"},[n("span",{domProps:{textContent:e._s(e.formatSymbolTitle(t.title,0,t.start))}}),n("QuickNavigationHighlighter",{attrs:{text:t.substring,matcherText:e.processedUserInput}}),n("span",{domProps:{textContent:e._s(e.formatSymbolTitle(t.title,t.start+t.matchLength))}})],1)],1),n("div",{staticClass:"symbol-path"},e._l(t.parents,(function(i,a){return n("div",{key:i.title},[n("span",{staticClass:"parent-path",domProps:{textContent:e._s(i.title)}}),a!==t.parents.length-1?n("span",{staticClass:"parent-path",domProps:{textContent:e._s("/")}}):e._e()])})),0)])])])}))],2)],1)])])},Us=[],Gs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"filter",class:{focus:e.showSuggestedTags},attrs:{role:"search",tabindex:"0","aria-labelledby":e.searchAriaLabelledBy},on:{"!blur":function(t){return e.handleBlur.apply(null,arguments)},"!focus":function(t){return e.handleFocus.apply(null,arguments)}}},[n("div",{class:["filter__wrapper",{"filter__wrapper--reversed":e.positionReversed}]},[n("div",{staticClass:"filter__top-wrapper"},[n("button",{staticClass:"filter__filter-button",class:{blue:e.inputIsNotEmpty},attrs:{"aria-hidden":"true",tabindex:"-1"},on:{click:e.focusInput,mousedown:function(e){e.preventDefault()}}},[e._t("icon",(function(){return[n("FilterIcon")]}))],2),n("div",{class:["filter__input-box-wrapper",{scrolling:e.isScrolling}],on:{scroll:e.handleScroll}},[e.hasSelectedTags?n("TagList",e._g(e._b({ref:"selectedTags",staticClass:"filter__selected-tags",attrs:{id:e.SelectedTagsId,input:e.input,tags:e.selectedTags,ariaLabel:e.selectedTagsLabel,activeTags:e.activeTags,areTagsRemovable:""},on:{"focus-prev":e.handleFocusPrevOnSelectedTags,"focus-next":e.focusInputFromTags,"reset-filters":e.resetFilters,"prevent-blur":function(t){return e.$emit("update:preventedBlur",!0)}}},"TagList",e.virtualKeyboardBind,!1),e.selectedTagsMultipleSelectionListeners)):e._e(),n("label",{staticClass:"filter__input-label",attrs:{id:"filter-label",for:e.FilterInputId,"data-value":e.modelValue,"aria-label":e.placeholder}},[n("input",e._g(e._b({directives:[{name:"model",rawName:"v-model",value:e.modelValue,expression:"modelValue"}],ref:"input",staticClass:"filter__input",attrs:{id:e.FilterInputId,placeholder:e.hasSelectedTags?"":e.placeholder,"aria-expanded":e.displaySuggestedTags?"true":"false",disabled:e.disabled,type:"text"},domProps:{value:e.modelValue},on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.downHandler.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.upHandler.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button?null:e.leftKeyInputHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button?null:e.rightKeyInputHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:e.deleteHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"a",void 0,t.key,void 0)?null:t.metaKey?(t.preventDefault(),t.stopPropagation(),e.selectInputAndTags.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"a",void 0,t.key,void 0)?null:t.ctrlKey?(t.preventDefault(),e.selectInputAndTags.apply(null,arguments)):null},function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.inputKeydownHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.enterHandler.apply(null,arguments)},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.inputKeydownHandler.apply(null,arguments):null},function(t){return t.shiftKey&&t.metaKey?t.ctrlKey||t.altKey?null:e.inputKeydownHandler.apply(null,arguments):null},function(t){return t.metaKey?t.ctrlKey||t.shiftKey||t.altKey?null:e.assignEventValues.apply(null,arguments):null},function(t){return t.ctrlKey?t.shiftKey||t.altKey||t.metaKey?null:e.assignEventValues.apply(null,arguments):null}],input:function(t){t.target.composing||(e.modelValue=t.target.value)}}},"input",e.AXinputProperties,!1),e.inputMultipleSelectionListeners))])],1),n("div",{staticClass:"filter__delete-button-wrapper"},[e.input.length||e.displaySuggestedTags||e.hasSelectedTags?n("button",{staticClass:"filter__delete-button",attrs:{"aria-label":"Reset Filter"},on:{click:function(t){return e.resetFilters(!0)},keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.stopPropagation(),e.resetFilters(!0))},mousedown:function(e){e.preventDefault()}}},[n("ClearRoundedIcon")],1):e._e()])]),e.displaySuggestedTags?n("TagList",e._b({ref:"suggestedTags",staticClass:"filter__suggested-tags",attrs:{id:e.SuggestedTagsId,ariaLabel:e.suggestedTagsLabel,input:e.input,tags:e.suggestedTags},on:{"click-tags":function(t){return e.selectTag(t.tagName)},"prevent-blur":function(t){return e.$emit("update:preventedBlur",!0)},"focus-next":function(t){e.positionReversed?e.focusInput():e.$emit("focus-next")},"focus-prev":function(t){e.positionReversed?e.$emit("focus-prev"):e.focusInput()}}},"TagList",e.virtualKeyboardBind,!1)):e._e()],1)])},Qs=[],Xs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"clear-rounded-icon",attrs:{viewBox:"0 0 16 16",themeId:"clear-rounded"}},[n("title",[e._v("Clear")]),n("path",{attrs:{d:"M14.55,0l1.45,1.45-6.56,6.55,6.54,6.54-1.45,1.45-6.53-6.53L1.47,15.99,.01,14.53l6.52-6.53L0,1.47,1.45,.02l6.55,6.54L14.55,0Z","fill-rule":"evenodd"}})])},Ys=[],Js=n("be08"),Zs={name:"ClearRoundedIcon",components:{SVGIcon:Js["a"]}},er=Zs,tr=Object(R["a"])(er,Xs,Ys,!1,null,null,null),nr=tr.exports;function ir(){if(window.getSelection)try{const{activeElement:e}=document;return e&&e.value?e.value.substring(e.selectionStart,e.selectionEnd):window.getSelection().toString()}catch(e){return""}else if(document.selection&&"Control"!==document.selection.type)return document.selection.createRange().text;return""}function ar(e){if("number"===typeof e.selectionStart)e.selectionStart=e.selectionEnd=e.value.length;else if("undefined"!==typeof e.createTextRange){e.focus();const t=e.createTextRange();t.collapse(!1),t.select()}}function sr(e){e.selectionStart=e.selectionEnd=0}function rr(e){return/^[\w\W\s]$/.test(e)}function or(e){const t=e.match(/(.*)<\/data>/);try{return t?JSON.parse(t[1]):null}catch(n){return null}}function lr(e){return"string"!==typeof e&&(e=JSON.stringify(e)),`${e}`}function cr(e,t,n,i){let a,s;return function(...r){function o(){clearTimeout(a),a=null}function l(){o(),e.apply(s,r)}if(s=this,!a||!n&&!i){if(!n)return o(),void(a=setTimeout(l,t));a=setTimeout(o,t),e.apply(s,r)}}}const dr=280,ur=100;var hr={data(){return{keyboardIsVirtual:!1,activeTags:[],initTagIndex:null,focusedTagIndex:null,metaKey:!1,shiftKey:!1,tabbing:!1,debouncedHandleDeleteTag:null}},constants:{DebounceDelay:dr,VirtualKeyboardThreshold:ur},computed:{virtualKeyboardBind:({keyboardIsVirtual:e})=>({keyboardIsVirtual:e}),allSelectedTagsAreActive:({selectedTags:e,activeTags:t})=>e.every(e=>t.includes(e))},methods:{selectRangeActiveTags(e=this.focusedTagIndex,t=this.selectedTags.length){this.activeTags=this.selectedTags.slice(e,t)},selectTag(e){this.updateSelectedTags([e]),this.clearFilterOnTagSelect&&this.setFilterInput("")},unselectActiveTags(){this.activeTags.length&&(this.deleteTags(this.activeTags),this.resetActiveTags())},async deleteHandler(e){this.activeTags.length>0&&this.setSelectedTags(this.selectedTags.filter(e=>!this.activeTags.includes(e))),this.inputIsSelected()&&this.allSelectedTagsAreActive?(e.preventDefault(),await this.resetFilters()):0===this.$refs.input.selectionEnd&&this.hasSelectedTags&&(e.preventDefault(),this.keyboardIsVirtual?this.setSelectedTags(this.selectedTags.slice(0,-1)):this.$refs.selectedTags.focusLast()),this.unselectActiveTags()},leftKeyInputHandler(e){if(this.assignEventValues(e),this.hasSelectedTags){if(this.activeTags.length&&!this.shiftKey)return e.preventDefault(),void this.$refs.selectedTags.focusTag(this.activeTags[0]);if(this.shiftKey&&0===this.$refs.input.selectionStart&&"forward"!==this.$refs.input.selectionDirection)return null===this.focusedTagIndex&&(this.focusedTagIndex=this.selectedTags.length),this.focusedTagIndex>0&&(this.focusedTagIndex-=1),this.initTagIndex=this.selectedTags.length,void this.selectTagsPressingShift();(0===this.$refs.input.selectionEnd||this.inputIsSelected())&&this.$refs.selectedTags.focusLast()}},rightKeyInputHandler(e){if(this.assignEventValues(e),this.activeTags.length&&this.shiftKey&&this.focusedTagIndex=ur&&(this.keyboardIsVirtual=!0)}),dr),setFilterInput(e){this.$emit("update:input",e)},setSelectedTags(e){this.$emit("update:selectedTags",e)},updateSelectedTags(e){this.setSelectedTags([...new Set([...this.selectedTags,...e])])},handleCopy(e){e.preventDefault();const t=[],n={tags:[],input:ir()};if(this.activeTags.length){const e=this.activeTags;n.tags=e,t.push(e.join(" "))}return t.push(n.input),n.tags.length||n.input.length?(e.clipboardData.setData("text/html",lr(n)),e.clipboardData.setData("text/plain",t.join(" ")),n):n},handleCut(e){e.preventDefault();const{input:t,tags:n}=this.handleCopy(e);if(!t&&!n.length)return;const i=this.selectedTags.filter(e=>!n.includes(e)),a=this.input.replace(t,"");this.setSelectedTags(i),this.setFilterInput(a)},handlePaste(e){e.preventDefault();const{types:t}=e.clipboardData;let n=[],i=e.clipboardData.getData("text/plain");if(t.includes("text/html")){const t=e.clipboardData.getData("text/html"),a=or(t);a&&({tags:n=[],input:i=""}=a)}const a=ir();i=a.length?this.input.replace(a,i):Object(it["f"])(this.input,i,document.activeElement.selectionStart),this.setFilterInput(i.trim()),this.allSelectedTagsAreActive?this.setSelectedTags(n):this.updateSelectedTags(n),this.resetActiveTags()},async handleDeleteTag({tagName:e,event:t={}}){const{key:n}=t;this.activeTags.length||this.deleteTags([e]),this.unselectActiveTags(),await this.$nextTick(),ar(this.$refs.input),this.hasSelectedTags&&(await this.focusInput(),"Backspace"===n&&sr(this.$refs.input))}},mounted(){window.visualViewport&&(window.visualViewport.addEventListener("resize",this.updateKeyboardType),this.$once("hook:beforeDestroy",()=>{window.visualViewport.removeEventListener("resize",this.updateKeyboardType)}))}};const pr=1e3;var gr={constants:{ScrollingDebounceDelay:pr},data(){return{isScrolling:!1,scrollRemovedAt:0}},created(){this.deleteScroll=cr(this.deleteScroll,pr)},methods:{deleteScroll(){this.isScrolling=!1,this.scrollRemovedAt=Date.now()},handleScroll(e){const{target:t}=e;if(0!==t.scrollTop)return t.scrollTop=0,void e.preventDefault();const n=150,i=t.offsetWidth,a=i+n;if(t.scrollWidth0?this.focusIndex(this.focusedIndex-1):this.startingPointHook())},focusNext({metaKey:e,ctrlKey:t,shiftKey:n}){(e||t)&&n||(this.externalFocusChange=!1,this.focusedIndex0}},kr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"tag",attrs:{role:"presentation"}},[n("button",{ref:"button",class:{focus:e.isActiveTag},attrs:{role:"option","aria-selected":e.ariaSelected,"aria-roledescription":"tag"},on:{focus:function(t){return e.$emit("focus",{event:t,tagName:e.name})},click:function(t){return t.preventDefault(),e.$emit("click",{event:t,tagName:e.name})},dblclick:function(t){t.preventDefault(),!e.keyboardIsVirtual&&e.deleteTag()},keydown:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name})},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.shiftKey&&t.metaKey?t.ctrlKey||t.altKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.metaKey?t.ctrlKey||t.shiftKey||t.altKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.ctrlKey?t.shiftKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:(t.preventDefault(),e.deleteTag.apply(null,arguments))}],mousedown:function(t){return t.preventDefault(),e.focusButton.apply(null,arguments)},copy:e.handleCopy}},[e.isRemovableTag?e._e():n("span",{staticClass:"visuallyhidden"},[e._v(" Add tag - ")]),e._v(" "+e._s(e.name)+" "),e.isRemovableTag?n("span",{staticClass:"visuallyhidden"},[e._v(" – Tag. Select to remove from list. ")]):e._e()])])},wr=[],Ir={name:"Tag",props:{name:{type:String,required:!0},isFocused:{type:Boolean,default:()=>!1},isRemovableTag:{type:Boolean,default:!1},isActiveTag:{type:Boolean,default:!1},activeTags:{type:Array,required:!1},keyboardIsVirtual:{type:Boolean,default:!1}},watch:{isFocused(e){e&&this.focusButton()}},mounted(){document.addEventListener("copy",this.handleCopy),document.addEventListener("cut",this.handleCut),document.addEventListener("paste",this.handlePaste),this.$once("hook:beforeDestroy",()=>{document.removeEventListener("copy",this.handleCopy),document.removeEventListener("cut",this.handleCut),document.removeEventListener("paste",this.handlePaste)})},methods:{isCurrentlyActiveElement(){return document.activeElement===this.$refs.button},handleCopy(e){if(!this.isCurrentlyActiveElement())return;e.preventDefault();let t=[];t=this.activeTags.length>0?this.activeTags:[this.name],e.clipboardData.setData("text/html",lr({tags:t})),e.clipboardData.setData("text/plain",t.join(" "))},handleCut(e){this.isCurrentlyActiveElement()&&this.isRemovableTag&&(this.handleCopy(e),this.deleteTag(e))},handlePaste(e){this.isCurrentlyActiveElement()&&this.isRemovableTag&&(e.preventDefault(),this.deleteTag(e),this.$emit("paste-content",e))},deleteTag(e){this.$emit("delete-tag",{tagName:this.name,event:e}),this.$emit("prevent-blur")},focusButton(e={}){this.keyboardIsVirtual||this.$refs.button.focus(),0===e.buttons&&this.isFocused&&this.deleteTag(e)}},computed:{ariaSelected:({isActiveTag:e,isRemovableTag:t})=>t?e?"true":"false":null}},Or=Ir,xr=(n("bcfb"),Object(R["a"])(Or,kr,wr,!1,null,"3b809bfa",null)),Dr=xr.exports,Pr={name:"Tags",mixins:[gr,Cr],props:{tags:{type:Array,default:()=>[]},activeTags:{type:Array,default:()=>[]},ariaLabel:{type:String,required:!1},id:{type:String,required:!1},input:{type:String,default:null},areTagsRemovable:{type:Boolean,default:!1},keyboardIsVirtual:{type:Boolean,default:!1}},components:{Tag:Dr},methods:{focusTag(e){this.focusIndex(this.tags.indexOf(e))},startingPointHook(){this.$emit("focus-prev")},handleFocus(e,t){this.focusIndex(t),this.isScrolling=!1,this.$emit("focus",e)},endingPointHook(){this.$emit("focus-next")},resetScroll(){this.$refs["scroll-wrapper"].scrollLeft=0},handleKeydown(e){const{key:t}=e,n=this.tags[this.focusedIndex];rr(t)&&n&&this.$emit("delete-tag",{tagName:n.label||n,event:e})}},computed:{totalItemsToNavigate:({tags:e})=>e.length}},$r=Pr,Ar=(n("8b7a"),Object(R["a"])($r,_r,Sr,!1,null,"4b231516",null)),Lr=Ar.exports;const Nr=5,jr="filter-input",Er="selected-tags",Br="suggested-tags",Rr={autocorrect:"off",autocapitalize:"off",spellcheck:"false",role:"combobox","aria-haspopup":"true","aria-autocomplete":"none","aria-owns":"suggestedTags","aria-controls":"suggestedTags"};var Mr,Kr,zr={name:"FilterInput",mixins:[gr,hr],constants:{FilterInputId:jr,SelectedTagsId:Er,SuggestedTagsId:Br,AXinputProperties:Rr,TagLimit:Nr},components:{TagList:Lr,ClearRoundedIcon:nr,FilterIcon:Tr},props:{positionReversed:{type:Boolean,default:()=>!1},tags:{type:Array,default:()=>[]},selectedTags:{type:Array,default:()=>[]},preventedBlur:{type:Boolean,default:()=>!1},placeholder:{type:String,default:()=>"Filter"},disabled:{type:Boolean,default:()=>!1},value:{type:String,default:()=>""},shouldTruncateTags:{type:Boolean,default:!1},focusInputWhenCreated:{type:Boolean,default:!1},focusInputWhenEmpty:{type:Boolean,default:!1},clearFilterOnTagSelect:{type:Boolean,default:!0}},data(){return{resetedTagsViaDeleteButton:!1,FilterInputId:jr,SelectedTagsId:Er,SuggestedTagsId:Br,AXinputProperties:Rr,showSuggestedTags:!1}},computed:{tagsText:({suggestedTags:e})=>Object(it["g"])({en:{one:"tag",other:"tags"}},e.length),selectedTagsLabel:({tagsText:e})=>"Selected "+e,suggestedTagsLabel:({tagsText:e})=>"Suggested "+e,hasSuggestedTags:({suggestedTags:e})=>e.length,hasSelectedTags:({selectedTags:e})=>e.length,inputIsNotEmpty:({input:e,hasSelectedTags:t})=>e.length||t,searchAriaLabelledBy:({hasSelectedTags:e})=>e?jr.concat(" ",Er):jr,modelValue:{get:({value:e})=>e,set(e){this.$emit("input",e)}},input:({value:e})=>e,suggestedTags:({tags:e,selectedTags:t,shouldTruncateTags:n})=>{const i=e.filter(e=>!t.includes(e));return n?i.slice(0,Nr):i},displaySuggestedTags:({showSuggestedTags:e,suggestedTags:t})=>e&&t.length>0,inputMultipleSelectionListeners:({resetActiveTags:e,handleCopy:t,handleCut:n,handlePaste:i})=>({click:e,copy:t,cut:n,paste:i}),selectedTagsMultipleSelectionListeners:({handleSingleTagClick:e,selectInputAndTags:t,handleDeleteTag:n,selectedTagsKeydownHandler:i,focusTagHandler:a,handlePaste:s})=>({"click-tags":e,"select-all":t,"delete-tag":n,keydown:i,focus:a,"paste-tags":s})},watch:{async selectedTags(){this.resetedTagsViaDeleteButton?this.resetedTagsViaDeleteButton=!1:this.$el.contains(document.activeElement)&&await this.focusInput(),this.displaySuggestedTags&&this.hasSuggestedTags&&this.$refs.suggestedTags.resetScroll()},suggestedTags:{immediate:!0,handler(e){this.$emit("suggested-tags",e)}},showSuggestedTags(e){this.$emit("show-suggested-tags",e)}},methods:{async focusInput(){await this.$nextTick(),this.$refs.input.focus(),!this.input&&this.resetActiveTags&&this.resetActiveTags()},async resetFilters(e=!1){if(this.setFilterInput(""),this.setSelectedTags([]),!e)return this.$emit("update:preventedBlur",!0),this.resetActiveTags&&this.resetActiveTags(),void await this.focusInput();this.resetedTagsViaDeleteButton=!0,this.showSuggestedTags=!1,this.$refs.input.blur()},focusFirstTag(e=(()=>{})){this.showSuggestedTags||(this.showSuggestedTags=!0),this.hasSuggestedTags&&this.$refs.suggestedTags?this.$refs.suggestedTags.focusFirst():e()},setFilterInput(e){this.$emit("input",e)},setSelectedTags(e){this.$emit("update:selectedTags",e)},deleteTags(e){this.setSelectedTags(this.selectedTags.filter(t=>!e.includes(t)))},async handleBlur(e){const t=e.relatedTarget;t&&t.matches&&t.matches("button, input, ul")&&this.$el.contains(t)||(await this.$nextTick(),this.resetActiveTags(),this.preventedBlur?this.$emit("update:preventedBlur",!1):this.showSuggestedTags=!1)},downHandler(e){const t=()=>this.$emit("focus-next",e);this.positionReversed?t():this.focusFirstTag(t)},upHandler(e){const t=()=>this.$emit("focus-prev",e);this.positionReversed?this.focusFirstTag(t):t()},handleFocusPrevOnSelectedTags(){this.positionReversed?this.focusFirstTag(()=>this.$emit("focus-prev")):this.$emit("focus-prev")},handleFocus(){this.showSuggestedTags=!0}},created(){this.focusInputWhenCreated&&document.activeElement!==this.$refs.input&&(this.inputIsNotEmpty||this.focusInputWhenEmpty)&&this.focusInput()}},Fr=zr,qr=(n("228b"),Object(R["a"])(Fr,Gs,Qs,!1,null,"449fced2",null)),Hr=qr.exports,Vr=n("c161"),Wr={name:"QuickNavigationHighlighter",props:{text:{type:String,required:!0},matcherText:{type:String,default:""}},render(e){const{matcherText:t,text:n}=this,i=[];let a=0;return t?([...t].forEach(t=>{const s=n.toLowerCase().indexOf(t.toLowerCase(),a);a&&i.push(e("span",n.slice(a,s)));const r=s+1;i.push(e("span",{class:"match"},n.slice(s,r))),a=r}),e("p",{class:"highlight"},i)):e("span",{class:"highlight"},n)}},Ur=Wr,Gr=(n("ca3d"),Object(R["a"])(Ur,Mr,Kr,!1,null,"1c4190f0",null)),Qr=Gr.exports,Xr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"magnifier-icon",attrs:{viewBox:"0 0 14 14",themeId:"magnifier"}},[n("path",{attrs:{d:"M15.0013 14.0319L10.9437 9.97424C11.8165 8.88933 12.2925 7.53885 12.2929 6.14645C12.2929 2.75841 9.53449 0 6.14645 0C2.75841 0 0 2.75841 0 6.14645C0 9.53449 2.75841 12.2929 6.14645 12.2929C7.57562 12.2929 8.89486 11.7932 9.94425 10.9637L14.0019 15.0213L15.0013 14.0319ZM6.13645 11.0736C4.83315 11.071 3.58399 10.5521 2.66241 9.63048C1.74084 8.70891 1.22194 7.45974 1.2193 6.15644C1.2193 3.44801 3.41802 1.23928 6.13645 1.23928C8.85488 1.23928 11.0536 3.44801 11.0536 6.15644C11.0636 8.86488 8.85488 11.0736 6.13645 11.0736Z"}})])},Yr=[],Jr={name:"MagnifierIcon",components:{SVGIcon:Js["a"]}},Zr=Jr,eo=Object(R["a"])(Zr,Xr,Yr,!1,null,null,null),to=eo.exports,no=n("86d8"),io={name:"QuickNavigationModal",components:{FilterInput:Hr,GenericModal:Vr["a"],MagnifierIcon:to,TopicTypeIcon:ge["a"],QuickNavigationHighlighter:Qr,Reference:no["a"]},mixins:[Cr],data(){return{debouncedInput:"",userInput:""}},props:{children:{type:Array,required:!0},showQuickNavigationModal:{type:Boolean,required:!0}},computed:{childrenMap({children:e}){return Ns(e)},filteredSymbols:({constructFuzzyRegex:e,children:t,fuzzyMatch:n,processedUserInput:i,childrenMap:a,orderSymbolsByPriority:s})=>{const r=t.filter(e=>"groupMarker"!==e.type&&null!=e.title);if(!i)return[];const o=n({inputLength:i.length,symbols:r,processedInputRegex:new RegExp(e(i),"i"),childrenMap:a}),l=[...new Map(o.map(e=>[e.path,e])).values()];return s(l).slice(0,20)},isVisible:{get:({showQuickNavigationModal:e})=>e,set(e){this.$emit("update:showQuickNavigationModal",e)}},noResultsWereFound:({processedUserInput:e,totalItemsToNavigate:t})=>e.length&&!t,processedUserInput:({debouncedInput:e})=>e.replace(/\s/g,""),totalItemsToNavigate:({filteredSymbols:e})=>e.length},watch:{userInput:"debounceInput",focusedIndex:"scrollIntoView"},methods:{closeQuickNavigationModal(){this.$emit("update:showQuickNavigationModal",!1)},constructFuzzyRegex(e){return[...e].reduce((t,n,i)=>t.concat(`[${n}]`).concat(i{const a=n.exec(t.title);if(!a)return!1;const s=a[0].length;return!(s>3*e)&&{uid:t.uid,title:t.title,path:t.path,parents:Rs(t.parent,i),type:t.type,inputLengthDifference:t.title.length-e,matchLength:s,matchLengthDifference:s-e,start:a.index,substring:a[0]}}).filter(Boolean)},handleKeyEnter(){!this.noResultsWereFound&&this.userInput.length&&(this.$router.push(this.filteredSymbols[this.focusedIndex].path),this.closeQuickNavigationModal())},orderSymbolsByPriority(e){return e.sort((e,t)=>e.matchLengthDifference>t.matchLengthDifference?1:e.matchLengthDifferencet.start?1:e.startt.inputLengthDifference?1:e.inputLengthDifference{const n=Math.min(t,vo);return Math.floor(Math.min(n*(e/100),n))},So={medium:30,large:20},Co={medium:50,large:50},ko="sidebar-scroll-lock";var wo={name:"AdjustableSidebarWidth",constants:{SCROLL_LOCK_ID:ko},components:{BreakpointEmitter:uo["a"]},inject:["store"],props:{shownOnMobile:{type:Boolean,default:!1},hiddenOnLarge:{type:Boolean,default:!1},fixedWidth:{type:Number,default:null}},data(){const e=window.innerWidth,t=window.innerHeight,n=ho["b"].large,i=_o(So[n]),a=_o(Co[n]),s=e>=vo?bo:Math.round((i+a)/2),r=co["c"].get(yo,s);return{isDragging:!1,width:this.fixedWidth||Math.min(Math.max(r,i),a),isTouch:!1,windowWidth:e,windowHeight:t,breakpoint:n,noTransition:!1,isTransitioning:!1,isOpeningOnLarge:!1,focusTrapInstance:null,mobileTopOffset:0,topOffset:0}},computed:{minWidthPercent:({breakpoint:e})=>So[e]||0,maxWidthPercent:({breakpoint:e})=>Co[e]||100,maxWidth:({maxWidthPercent:e,windowWidth:t,fixedWidth:n})=>Math.max(n,_o(e,t)),minWidth:({minWidthPercent:e,windowWidth:t,fixedWidth:n})=>Math.min(n||t,_o(e,t)),widthInPx:({width:e})=>e+"px",hiddenOnLargeThreshold:({minWidth:e})=>e/2,events:({isTouch:e})=>e?To.touch:To.mouse,asideStyles:({widthInPx:e,mobileTopOffset:t,topOffset:n,windowHeight:i})=>({width:e,"--top-offset":n?n+"px":null,"--top-offset-mobile":t+"px","--app-height":i+"px"}),asideClasses:({isDragging:e,shownOnMobile:t,noTransition:n,isTransitioning:i,hiddenOnLarge:a,mobileTopOffset:s,isOpeningOnLarge:r})=>({dragging:e,"show-on-mobile":t,"hide-on-large":a,"is-opening-on-large":r,"no-transition":n,"sidebar-transitioning":i,"has-mobile-top-offset":s}),scrollLockID:()=>ko,BreakpointScopes:()=>ho["c"]},async mounted(){window.addEventListener("keydown",this.onEscapeKeydown),window.addEventListener("resize",this.storeWindowSize,{passive:!0}),window.addEventListener("orientationchange",this.storeWindowSize,{passive:!0}),this.storeTopOffset(),0===this.topOffset&&0===window.scrollY||window.addEventListener("scroll",this.storeTopOffset,{passive:!0}),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("keydown",this.onEscapeKeydown),window.removeEventListener("resize",this.storeWindowSize),window.removeEventListener("orientationchange",this.storeWindowSize),window.removeEventListener("scroll",this.storeTopOffset),this.shownOnMobile&&this.toggleScrollLock(!1),this.focusTrapInstance&&this.focusTrapInstance.destroy()}),await this.$nextTick(),this.focusTrapInstance=new go["a"](this.$refs.aside)},watch:{$route:"closeMobileSidebar",width:{immediate:!0,handler:we((function(e){this.emitEventChange(e)}),150)},windowWidth:"getWidthInCheck",async breakpoint(e){this.getWidthInCheck(),e===ho["b"].large&&this.closeMobileSidebar(),this.noTransition=!0,await Object(Ie["b"])(5),this.noTransition=!1},shownOnMobile:"handleExternalOpen",isTransitioning(e){e||this.updateContentWidthInStore()},hiddenOnLarge(){this.isTransitioning=!0}},methods:{getWidthInCheck:cr((function(){this.width>this.maxWidth?this.width=this.maxWidth:this.widththis.maxWidth&&(i=this.maxWidth),this.hiddenOnLarge&&i>=this.hiddenOnLargeThreshold&&(this.$emit("update:hiddenOnLarge",!1),this.isOpeningOnLarge=!0),this.width=Math.max(i,this.minWidth),i<=this.hiddenOnLargeThreshold&&this.$emit("update:hiddenOnLarge",!0)},stopDrag(e){e.preventDefault(),this.isDragging&&(this.isDragging=!1,co["c"].set(yo,this.width),document.removeEventListener(this.events.move,this.handleDrag),document.removeEventListener(this.events.end,this.stopDrag),this.emitEventChange(this.width))},emitEventChange(e){this.$emit("width-change",e),this.updateContentWidthInStore()},getTopOffset(){const e=document.getElementById(mo["e"]);if(!e)return 0;const{y:t}=e.getBoundingClientRect();return Math.max(t,0)},handleExternalOpen(e){e&&(this.mobileTopOffset=this.getTopOffset()),this.toggleScrollLock(e)},async updateContentWidthInStore(){await this.$nextTick(),this.store.setContentWidth(this.$refs.content.offsetWidth)},async toggleScrollLock(e){const t=document.getElementById(this.scrollLockID);e?(await this.$nextTick(),po["a"].lockScroll(t),this.focusTrapInstance.start(),fo["a"].hide(this.$refs.aside)):(po["a"].unlockScroll(t),this.focusTrapInstance.stop(),fo["a"].show(this.$refs.aside))},storeTopOffset:we((function(){this.topOffset=this.getTopOffset()}),60),trackTransitionStart({propertyName:e}){"width"!==e&&"transform"!==e||(this.isTransitioning=!0)},trackTransitionEnd({propertyName:e}){"width"!==e&&"transform"!==e||(this.isTransitioning=!1,this.isOpeningOnLarge=!1)}}},Io=wo,Oo=(n("c3a6"),Object(R["a"])(Io,oo,lo,!1,null,"8b4eac40",null)),xo=Oo.exports,Do=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("nav",{staticClass:"navigator",attrs:{"aria-labelledby":e.INDEX_ROOT_KEY}},[e.isFetching?n("LoadingNavigatorCard",e._b({on:{close:function(t){return e.$emit("close")}}},"LoadingNavigatorCard",e.technologyProps,!1)):n("NavigatorCard",e._b({attrs:{type:e.type,children:e.flatChildren,"active-path":e.activePath,scrollLockID:e.scrollLockID,"error-fetching":e.errorFetching,"render-filter-on-top":e.renderFilterOnTop,"api-changes":e.apiChanges,"allow-hiding":e.allowHiding,"navigator-references":e.navigatorReferences},on:{close:function(t){return e.$emit("close")}}},"NavigatorCard",e.technologyProps,!1)),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" Navigator is "+e._s(e.isFetching?"loading":"ready")+" ")])],1)},Po=[],$o=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCard",e._b({class:{"filter-on-top":e.renderFilterOnTop},on:{close:function(t){return e.$emit("close")},"head-click-alt":e.toggleAllNodes},scopedSlots:e._u([{key:"body",fn:function(t){var i=t.className;return[e._t("post-head"),n("div",{class:i,on:{"!keydown":[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:t.altKey?(t.preventDefault(),e.focusFirst.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:t.altKey?(t.preventDefault(),e.focusLast.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNext.apply(null,arguments))}]}},[n("DynamicScroller",{directives:[{name:"show",rawName:"v-show",value:e.hasNodes,expression:"hasNodes"}],ref:"scroller",staticClass:"scroller",attrs:{id:e.scrollLockID,"aria-label":"Documentation Navigator",items:e.nodesToRender,"min-item-size":e.itemSize,"emit-update":"","key-field":"uid"},on:{update:e.handleScrollerUpdate,"!keydown":[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:t.altKey?(t.preventDefault(),e.focusFirst.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:t.altKey?(t.preventDefault(),e.focusLast.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNext.apply(null,arguments))}]},nativeOn:{focusin:function(t){return e.handleFocusIn.apply(null,arguments)},focusout:function(t){return e.handleFocusOut.apply(null,arguments)}},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.item,a=t.active,s=t.index;return[n("DynamicScrollerItem",e._b({},"DynamicScrollerItem",{active:a,item:i,dataIndex:s},!1),[n("NavigatorCardItem",{attrs:{item:i,isRendered:a,"filter-pattern":e.filterPattern,"is-active":i.uid===e.activeUID,"is-bold":e.activePathMap[i.uid],expanded:e.openNodes[i.uid],"api-change":e.apiChangesObject[i.path],isFocused:e.focusedIndex===s,enableFocus:!e.externalFocusChange,"navigator-references":e.navigatorReferences},on:{toggle:e.toggle,"toggle-full":e.toggleFullTree,"toggle-siblings":e.toggleSiblings,navigate:e.handleNavigationChange,"focus-parent":e.focusNodeParent}})],1)]}}],null,!0)}),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" "+e._s(e.politeAriaLive)+" ")]),n("div",{staticClass:"no-items-wrapper",attrs:{"aria-live":"assertive"}},[n("p",{staticClass:"no-items"},[e._v(" "+e._s(e.assertiveAriaLive)+" ")])])],1),e.errorFetching?e._e():n("div",{staticClass:"filter-wrapper"},[n("div",{staticClass:"navigator-filter"},[n("div",{staticClass:"input-wrapper"},[n("FilterInput",{staticClass:"filter-component",attrs:{tags:e.availableTags,"selected-tags":e.selectedTagsModelValue,placeholder:"Filter","should-keep-open-on-blur":!1,"position-reversed":!e.renderFilterOnTop,"clear-filter-on-tag-select":!1},on:{"update:selectedTags":function(t){e.selectedTagsModelValue=t},"update:selected-tags":function(t){e.selectedTagsModelValue=t},clear:e.clearFilters},model:{value:e.filter,callback:function(t){e.filter=t},expression:"filter"}})],1)])])]}}],null,!0)},"BaseNavigatorCard",{technology:e.technology,isTechnologyBeta:e.isTechnologyBeta,technologyPath:e.technologyPath},!1))},Ao=[],Lo=n("e508");function No(e){const t=Object(it["h"])(Object(it["d"])(e));return new RegExp(t,"ig")}var jo,Eo,Bo=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCardItem",{staticClass:"navigator-card-item",class:{expanded:e.expanded,active:e.isActive,"is-group":e.isGroupMarker},style:{"--nesting-index":e.item.depth},attrs:{"data-nesting-index":e.item.depth,id:"container-"+e.item.uid,"aria-hidden":e.isRendered?null:"true",hideNavigatorIcon:e.isGroupMarker},nativeOn:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button?null:(t.preventDefault(),e.handleLeftKeydown.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.handleRightKeydown.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.clickReference.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])?null:t.altKey?"button"in t&&2!==t.button?null:(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null}]},scopedSlots:e._u([{key:"depth-spacer",fn:function(){return[n("span",{attrs:{hidden:"",id:e.usageLabel}},[e._v(" To navigate the symbols, press Up Arrow, Down Arrow, Left Arrow or Right Arrow ")]),e.isParent?n("button",{staticClass:"tree-toggle",attrs:{tabindex:"-1","aria-labelledby":e.item.uid,"aria-expanded":e.expanded?"true":"false","aria-describedby":e.ariaDescribedBy},on:{click:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.toggleTree.apply(null,arguments))},function(t){return t.altKey?(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null},function(t){return t.metaKey?(t.preventDefault(),e.toggleSiblings.apply(null,arguments)):null}]}},[n("InlineChevronRightIcon",{staticClass:"icon-inline chevron",class:{rotate:e.expanded,animating:e.idState.isOpening}})],1):e._e()]},proxy:!0},{key:"navigator-icon",fn:function(t){var i,a=t.className;return[e.apiChange?n("span",{class:[(i={},i["changed changed-"+e.apiChange]=e.apiChange,i),a]}):n("TopicTypeIcon",{key:e.item.uid,class:a,attrs:{type:e.item.type,"image-override":e.item.icon?e.navigatorReferences[e.item.icon]:null,shouldCalculateOptimalWidth:!1}})]}},{key:"title-container",fn:function(){return[e.isParent?n("span",{attrs:{hidden:"",id:e.parentLabel}},[e._v(", containing "+e._s(e.item.childUIDs.length)+" symbols")]):e._e(),n("span",{attrs:{id:e.siblingsLabel,hidden:""}},[e._v(" "+e._s(e.item.index+1)+" of "+e._s(e.item.siblingsCount)+" symbols inside ")]),n(e.refComponent,{ref:"reference",tag:"component",staticClass:"leaf-link",class:{bolded:e.isBold},attrs:{id:e.item.uid,url:e.isGroupMarker?null:e.item.path||"",tabindex:e.isFocused?"0":"-1","aria-describedby":e.ariaDescribedBy+" "+e.usageLabel},nativeOn:{click:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.handleClick.apply(null,arguments)},function(t){return t.altKey?(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null}]}},[n("HighlightMatches",{attrs:{text:e.item.title,matcher:e.filterPattern}})],1),e.isDeprecated?n("Badge",{attrs:{variant:"deprecated"}}):e.isBeta?n("Badge",{attrs:{variant:"beta"}}):e._e()]},proxy:!0}])})},Ro=[],Mo=n("34b0"),Ko=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"navigator-card-item"},[n("div",{staticClass:"head-wrapper"},[n("div",{staticClass:"depth-spacer"},[e._t("depth-spacer")],2),e.hideNavigatorIcon?e._e():n("div",{staticClass:"navigator-icon-wrapper"},[e._t("navigator-icon",null,{className:"navigator-icon"})],2),n("div",{staticClass:"title-container"},[e._t("title-container")],2)])])},zo=[],Fo={name:"BaseNavigatorCardItem",props:{hideNavigatorIcon:{type:Boolean,default:()=>!1}}},qo=Fo,Ho=(n("b39c"),Object(R["a"])(qo,Ko,zo,!1,null,"0b9fe514",null)),Vo=Ho.exports,Wo={name:"HighlightMatch",props:{text:{type:String,required:!0},matcher:{type:RegExp,default:void 0}},render(e){const{matcher:t,text:n}=this;if(!t)return e("p",{class:"highlight"},n);const i=[];let a=0,s=null;const r=new RegExp(t,"gi");while(null!==(s=r.exec(n))){const t=s[0].length,r=s.index+t,o=n.slice(a,s.index);o&&i.push(e("span",o));const l=n.slice(s.index,r);l&&i.push(e("span",{class:"match"},l)),a=r}const o=n.slice(a,n.length);return o&&i.push(e("span",o)),e("p",{class:"highlight"},i)}},Uo=Wo,Go=(n("b831"),Object(R["a"])(Uo,jo,Eo,!1,null,"d75876e2",null)),Qo=Go.exports,Xo={name:"NavigatorCardItem",mixins:[Object(Lo["c"])({idProp:e=>e.item.uid})],components:{BaseNavigatorCardItem:Vo,HighlightMatches:Qo,TopicTypeIcon:ge["a"],InlineChevronRightIcon:Mo["a"],Reference:no["a"],Badge:qn["a"]},props:{isRendered:{type:Boolean,default:!1},item:{type:Object,required:!0},expanded:{type:Boolean,default:!1},filterPattern:{type:RegExp,default:void 0},isActive:{type:Boolean,default:!1},isBold:{type:Boolean,default:!1},apiChange:{type:String,default:null,validator:e=>yn["d"].includes(e)},isFocused:{type:Boolean,default:()=>!1},enableFocus:{type:Boolean,default:!0},navigatorReferences:{type:Object,default:()=>({})}},idState(){return{isOpening:!1}},computed:{isGroupMarker:({item:{type:e}})=>e===fe["b"].groupMarker,isParent:({item:e,isGroupMarker:t})=>!!e.childUIDs.length&&!t,parentLabel:({item:e})=>"label-parent-"+e.uid,siblingsLabel:({item:e})=>"label-"+e.uid,usageLabel:({item:e})=>"usage-"+e.uid,ariaDescribedBy({item:e,siblingsLabel:t,parentLabel:n,isParent:i}){const a=`${t} ${e.parent}`;return i?`${a} ${n}`:""+a},isBeta:({item:{beta:e}})=>!!e,isDeprecated:({item:{deprecated:e}})=>!!e,refComponent:({isGroupMarker:e})=>e?"h3":no["a"]},methods:{toggleTree(){this.idState.isOpening=!0,this.$emit("toggle",this.item)},toggleEntireTree(){this.idState.isOpening=!0,this.$emit("toggle-full",this.item)},toggleSiblings(){this.idState.isOpening=!0,this.$emit("toggle-siblings",this.item)},handleLeftKeydown(){this.expanded?this.toggleTree():this.$emit("focus-parent",this.item)},handleRightKeydown(){!this.expanded&&this.isParent&&this.toggleTree()},clickReference(){(this.$refs.reference.$el||this.$refs.reference).click()},focusReference(){(this.$refs.reference.$el||this.$refs.reference).focus()},handleClick(){this.isGroupMarker||this.$emit("navigate",this.item.uid)}},watch:{async isFocused(e){await Object(Ie["b"])(8),e&&this.isRendered&&this.enableFocus&&this.focusReference()},async expanded(){await Object(Ie["b"])(9),this.idState.isOpening=!1}}},Yo=Xo,Jo=(n("bab5"),Object(R["a"])(Yo,Bo,Ro,!1,null,"08a89c9e",null)),Zo=Jo.exports,el=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"navigator-card"},[n("div",{staticClass:"navigator-card-full-height"},[n("div",{staticClass:"navigator-card-inner"},[n("div",{staticClass:"head-wrapper"},[n("div",{staticClass:"head-inner"},[n("button",{staticClass:"close-card",class:{"hide-on-large":!e.allowHiding},attrs:{id:e.SIDEBAR_HIDE_BUTTON_ID,"aria-label":"Close documentation navigator"},on:{click:e.handleHideClick}},[n("SidenavIcon",{staticClass:"icon-inline close-icon"})],1),n("Reference",{staticClass:"navigator-head",attrs:{id:e.INDEX_ROOT_KEY,url:e.technologyPath},nativeOn:{click:function(t){return t.altKey?(t.preventDefault(),e.$emit("head-click-alt")):null}}},[n("h2",{staticClass:"card-link"},[e._v(" "+e._s(e.technology)+" ")]),e.isTechnologyBeta?n("Badge",{attrs:{variant:"beta"}}):e._e()],1)],1)]),e._t("body",null,{className:"card-body"})],2)])])},tl=[],nl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"sidenav-icon",attrs:{viewBox:"0 0 14 14",height:"14",themeId:"sidenav"}},[n("path",{attrs:{d:"M6.533 1.867h-6.533v10.267h14v-10.267zM0.933 11.2v-8.4h4.667v8.4zM13.067 11.2h-6.533v-8.4h6.533z"}}),n("path",{attrs:{d:"M1.867 5.133h2.8v0.933h-2.8z"}}),n("path",{attrs:{d:"M1.867 7.933h2.8v0.933h-2.8z"}})])},il=[],al={name:"SidenavIcon",components:{SVGIcon:Js["a"]}},sl=al,rl=Object(R["a"])(sl,nl,il,!1,null,null,null),ol=rl.exports,ll={name:"BaseNavigatorCard",components:{SidenavIcon:ol,Reference:no["a"],Badge:qn["a"]},props:{allowHiding:{type:Boolean,default:!0},technologyPath:{type:String,default:""},technology:{type:String,required:!0},isTechnologyBeta:{type:Boolean,default:!1}},data(){return{SIDEBAR_HIDE_BUTTON_ID:As,INDEX_ROOT_KEY:Ps}},methods:{async handleHideClick(){this.$emit("close"),await this.$nextTick();const e=document.getElementById(mo["d"]);e&&e.focus()}}},cl=ll,dl=(n("4de6"),Object(R["a"])(cl,el,tl,!1,null,"4a898368",null)),ul=dl.exports;const hl=e=>e[e.length-1],pl=(e,t)=>JSON.stringify(e)===JSON.stringify(t),gl="navigator.state",fl="No results found.",ml="No data available.",yl="There was an error fetching the data.",vl="items were found. Tab back to navigate through them.",bl={sampleCode:"sampleCode",tutorials:"tutorials",articles:"articles"},Tl={[bl.sampleCode]:"Sample Code",[bl.tutorials]:"Tutorials",[bl.articles]:"Articles"},_l=Object.fromEntries(Object.entries(Tl).map(([e,t])=>[t,e])),Sl={[fe["b"].article]:bl.articles,[fe["b"].learn]:bl.tutorials,[fe["b"].overview]:bl.tutorials,[fe["b"].resources]:bl.tutorials,[fe["b"].sampleCode]:bl.sampleCode,[fe["b"].section]:bl.tutorials,[fe["b"].tutorial]:bl.tutorials,[fe["b"].project]:bl.tutorials},Cl="Hide Deprecated";var kl={name:"NavigatorCard",constants:{STORAGE_KEY:gl,FILTER_TAGS:bl,FILTER_TAGS_TO_LABELS:Tl,FILTER_LABELS_TO_TAGS:_l,TOPIC_TYPE_TO_TAG:Sl,NO_RESULTS:fl,NO_CHILDREN:ml,ERROR_FETCHING:yl,ITEMS_FOUND:vl,HIDE_DEPRECATED_TAG:Cl},components:{FilterInput:Hr,NavigatorCardItem:Zo,DynamicScroller:Lo["a"],DynamicScrollerItem:Lo["b"],BaseNavigatorCard:ul},props:{...ul.props,children:{type:Array,required:!0},activePath:{type:Array,required:!0},type:{type:String,required:!0},scrollLockID:{type:String,default:""},errorFetching:{type:Boolean,default:!1},apiChanges:{type:Object,default:null},isTechnologyBeta:{type:Boolean,default:!1},navigatorReferences:{type:Object,default:()=>{}},renderFilterOnTop:{type:Boolean,default:!1}},mixins:[Cr],data(){return{filter:"",debouncedFilter:"",selectedTags:[],openNodes:Object.freeze({}),nodesToRender:Object.freeze([]),activeUID:null,lastFocusTarget:null,NO_RESULTS:fl,NO_CHILDREN:ml,ERROR_FETCHING:yl,ITEMS_FOUND:vl,allNodesToggled:!1}},computed:{politeAriaLive:({hasNodes:e,nodesToRender:t})=>e?[t.length,vl].join(" "):"",assertiveAriaLive:({hasNodes:e,hasFilter:t,errorFetching:n})=>e?"":t?fl:n?yl:ml,availableTags:({selectedTags:e,renderableChildNodesMap:t,apiChangesObject:n})=>{if(e.length)return[];const i=new Set(Object.values(n)),a=new Set(Object.values(Tl)),s=new Set([Cl]);i.size&&s.delete(Cl);const r={type:[],changes:[],other:[]};for(const o in t){if(!Object.hasOwnProperty.call(t,o))continue;if(!a.size&&!i.size&&!s.size)break;const{type:e,path:l,deprecated:c}=t[o],d=Tl[Sl[e]],u=n[l];a.has(d)&&(r.type.push(d),a.delete(d)),u&&i.has(u)&&(r.changes.push(yn["b"][u]),i.delete(u)),c&&s.has(Cl)&&(r.other.push(Cl),s.delete(Cl))}return r.type.concat(r.changes,r.other)},selectedTagsModelValue:{get:({selectedTags:e})=>e.map(e=>Tl[e]||yn["b"][e]||e),set(e){(this.selectedTags.length||e.length)&&(this.selectedTags=e.map(e=>_l[e]||yn["a"][e]||e))}},filterPattern:({debouncedFilter:e})=>e?new RegExp(No(e),"i"):null,itemSize:()=>$s,childrenMap({children:e}){return Ns(e)},activePathChildren({activeUID:e,childrenMap:t}){return e&&t[e]?Rs(e,t):[]},activePathMap:({activePathChildren:e})=>Object.fromEntries(e.map(({uid:e})=>[e,!0])),activeIndex:({activeUID:e,nodesToRender:t})=>t.findIndex(t=>t.uid===e),filteredChildren({hasFilter:e,children:t,filterPattern:n,selectedTags:i,apiChanges:a}){if(!e)return[];const s=new Set(i);return t.filter(({title:e,path:t,type:i,deprecated:r,deprecatedChildrenCount:o,childUIDs:l})=>{const c=r||o===l.length,d=!n||n.test(e);let u=!0;s.size&&(u=s.has(Sl[i]),a&&!u&&(u=s.has(a[t])),!c&&s.has(Cl)&&(u=!0));const h=!a||!!a[t];return d&&u&&h})},renderableChildNodesMap({hasFilter:e,childrenMap:t,deprecatedHidden:n,filteredChildren:i,removeDeprecated:a}){if(!e)return t;const s=i.length-1,r=new Set([]);for(let o=s;o>=0;o-=1){const e=i[o],s=t[e.groupMarkerUID];if(s&&r.add(s),r.has(e))continue;if(r.has(t[e.parent])&&e.type!==fe["b"].groupMarker){r.add(e);continue}let l=[];e.childUIDs.length&&(l=a(Es(e.uid,t),n)),l.concat(Rs(e.uid,t)).forEach(e=>r.add(e))}return Ns([...r])},nodeChangeDeps:({filteredChildren:e,activePathChildren:t,debouncedFilter:n,selectedTags:i})=>[e,t,n,i],hasFilter({debouncedFilter:e,selectedTags:t,apiChanges:n}){return Boolean(e.length||t.length||n)},deprecatedHidden:({selectedTags:e})=>e[0]===Cl,apiChangesObject(){return this.apiChanges||{}},hasNodes:({nodesToRender:e})=>!!e.length,totalItemsToNavigate:({nodesToRender:e})=>e.length,lastActivePathItem:({activePath:e})=>hl(e)},created(){this.restorePersistedState()},watch:{filter:"debounceInput",nodeChangeDeps:"trackOpenNodes",activePath:"handleActivePathChange",apiChanges(e){e||(this.selectedTags=this.selectedTags.filter(e=>!yn["b"][e]))}},methods:{toggleAllNodes(){const e=this.children.filter(e=>e.parent===Ps&&e.type!==fe["b"].groupMarker&&e.childUIDs.length);this.allNodesToggled=!this.allNodesToggled,this.allNodesToggled&&(this.openNodes={},this.generateNodesToRender()),e.forEach(e=>{this.toggleFullTree(e)})},clearFilters(){this.filter="",this.debouncedFilter="",this.selectedTags=[]},scrollToFocus(){this.$refs.scroller.scrollToItem(this.focusedIndex)},debounceInput:cr((function(e){this.debouncedFilter=e,this.lastFocusTarget=null}),200),trackOpenNodes([e,t,n,i],[,a=[],s="",r=[]]=[]){if(n!==s&&!s&&this.getFromStorage("filter")||!pl(i,r)&&!r.length&&this.getFromStorage("selectedTags",[]).length)return;const o=!pl(a,t),{childrenMap:l}=this;let c=t;if(!(this.deprecatedHidden&&!this.debouncedFilter.length||o&&this.hasFilter)&&this.hasFilter){const t=new Set,n=e.length-1;for(let i=n;i>=0;i-=1){const n=e[i];t.has(l[n.parent])||t.has(n)||Rs(n.uid,l).slice(0,-1).forEach(e=>t.add(e))}c=[...t]}const d=o?{...this.openNodes}:{},u=c.reduce((e,t)=>(e[t.uid]=!0,e),d);this.openNodes=Object.freeze(u),this.generateNodesToRender(),this.updateFocusIndexExternally()},toggle(e){const t=this.openNodes[e.uid];let n=[],i=[];if(t){const t=Object(w["a"])(this.openNodes),n=Es(e.uid,this.childrenMap);n.forEach(({uid:e})=>{delete t[e]}),this.openNodes=Object.freeze(t),i=n.slice(1)}else this.openNodes=Object.freeze({...this.openNodes,[e.uid]:!0}),n=Bs(e.uid,this.childrenMap,this.children).filter(e=>this.renderableChildNodesMap[e.uid]);this.augmentRenderNodes({uid:e.uid,include:n,exclude:i})},toggleFullTree(e){const t=this.openNodes[e.uid],n=Object(w["a"])(this.openNodes),i=Es(e.uid,this.childrenMap);let a=[],s=[];i.forEach(({uid:e})=>{t?delete n[e]:n[e]=!0}),t?a=i.slice(1):s=i.slice(1).filter(e=>this.renderableChildNodesMap[e.uid]),this.openNodes=Object.freeze(n),this.augmentRenderNodes({uid:e.uid,exclude:a,include:s})},toggleSiblings(e){const t=this.openNodes[e.uid],n=Object(w["a"])(this.openNodes),i=Ms(e.uid,this.childrenMap,this.children);i.forEach(({uid:e,childUIDs:i,type:a})=>{if(i.length&&a!==fe["b"].groupMarker)if(t){const t=Es(e,this.childrenMap);t.forEach(e=>{delete n[e.uid]}),delete n[e],this.augmentRenderNodes({uid:e,exclude:t.slice(1),include:[]})}else{n[e]=!0;const t=Bs(e,this.childrenMap,this.children).filter(e=>this.renderableChildNodesMap[e.uid]);this.augmentRenderNodes({uid:e,exclude:[],include:t})}}),this.openNodes=Object.freeze(n),this.persistState()},removeDeprecated(e,t){return t?e.filter(({deprecated:e})=>!e):e},generateNodesToRender(){const{children:e,openNodes:t,renderableChildNodesMap:n}=this;this.nodesToRender=Object.freeze(e.filter(e=>n[e.uid]&&(e.parent===Ps||t[e.parent]))),this.persistState(),this.scrollToElement()},augmentRenderNodes({uid:e,include:t=[],exclude:n=[]}){const i=this.nodesToRender.findIndex(t=>t.uid===e);if(t.length){const e=t.filter(e=>!this.nodesToRender.includes(e)),n=this.nodesToRender.slice(0);n.splice(i+1,0,...e),this.nodesToRender=Object.freeze(n)}else if(n.length){const e=new Set(n);this.nodesToRender=Object.freeze(this.nodesToRender.filter(t=>!e.has(t)))}this.persistState()},getFromStorage(e,t=null){const n=co["b"].get(gl,{}),i=n[this.technologyPath];return i?e?i[e]||t:i:t},persistState(){const e={path:this.lastActivePathItem},{path:t}=this.activeUID&&this.childrenMap[this.activeUID]||e,n={technology:this.technology,path:t,hasApiChanges:!!this.apiChanges,openNodes:Object.keys(this.openNodes).map(Number),nodesToRender:this.nodesToRender.map(({uid:e})=>e),activeUID:this.activeUID,filter:this.filter,selectedTags:this.selectedTags},i={...co["b"].get(gl,{}),[this.technologyPath]:n};co["b"].set(gl,i)},clearPersistedState(){const e={...co["b"].get(gl,{}),[this.technologyPath]:{}};co["b"].set(gl,e)},restorePersistedState(){const e=this.getFromStorage();if(!e||e.path!==this.lastActivePathItem)return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);const{technology:t,nodesToRender:n=[],filter:i="",hasAPIChanges:a=!1,activeUID:s=null,selectedTags:r=[],openNodes:o}=e;if(!n.length&&!i&&!r.length)return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);const{childrenMap:l}=this,c=n.every(e=>l[e]),d=s?(this.childrenMap[s]||{}).path===this.lastActivePathItem:1===this.activePath.length;if(t!==this.technology||!c||a!==Boolean(this.apiChanges)||!d||s&&!i&&!r.length&&!n.includes(s))return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);this.openNodes=Object.freeze(Object.fromEntries(o.map(e=>[e,!0]))),this.nodesToRender=Object.freeze(n.map(e=>l[e])),this.selectedTags=r,this.filter=i,this.debouncedFilter=this.filter,this.activeUID=s,this.scrollToElement()},async scrollToElement(){if(await Object(Ie["b"])(1),!this.$refs.scroller)return;if(this.hasFilter&&!this.deprecatedHidden)return void this.$refs.scroller.scrollToItem(0);const e=document.getElementById(this.activeUID);if(e&&0===this.getChildPositionInScroller(e))return;const t=this.nodesToRender.findIndex(e=>e.uid===this.activeUID);-1!==t&&this.$refs.scroller.scrollToItem(t)},getChildPositionInScroller(e){if(!e)return 0;const{paddingTop:t,paddingBottom:n}=getComputedStyle(this.$refs.scroller.$el),i={top:parseInt(t,10)||0,bottom:parseInt(n,10)||0},{y:a,height:s}=this.$refs.scroller.$el.getBoundingClientRect(),{y:r}=e.getBoundingClientRect(),o=e.offsetParent.offsetHeight,l=r-a-i.top;return l<0?-1:l+o>=s-i.bottom?1:0},isInsideScroller(e){return this.$refs.scroller.$el.contains(e)},handleFocusIn({target:e}){this.lastFocusTarget=e;const t=this.getChildPositionInScroller(e);if(0===t)return;const{offsetHeight:n}=e.offsetParent;this.$refs.scroller.$el.scrollBy({top:n*t,left:0})},handleFocusOut(e){e.relatedTarget&&(this.isInsideScroller(e.relatedTarget)||(this.lastFocusTarget=null))},handleScrollerUpdate:cr((async function(){await Object(Ie["a"])(300),this.lastFocusTarget&&this.isInsideScroller(this.lastFocusTarget)&&document.activeElement!==this.lastFocusTarget&&this.lastFocusTarget.focus({preventScroll:!0})}),50),setActiveUID(e){this.activeUID=e},handleNavigationChange(e){this.childrenMap[e].path.startsWith(this.technologyPath)&&this.setActiveUID(e)},pathsToFlatChildren(e){const t=e.slice(0).reverse(),{childrenMap:n}=this;let i=this.children;const a=[];while(t.length){const e=t.pop(),s=i.find(t=>t.path===e);if(!s)break;a.push(s),t.length&&(i=s.childUIDs.map(e=>n[e]))}return a},handleActivePathChange(e){const t=this.childrenMap[this.activeUID],n=hl(e);if(t){if(n===t.path)return;const e=Ms(this.activeUID,this.childrenMap,this.children),i=Bs(this.activeUID,this.childrenMap,this.children),a=Rs(this.activeUID,this.childrenMap),s=[...i,...e,...a].find(e=>e.path===n);if(s)return void this.setActiveUID(s.uid)}const i=this.pathsToFlatChildren(e);i.length?this.setActiveUID(i[i.length-1].uid):this.activeUID?this.setActiveUID(null):this.trackOpenNodes(this.nodeChangeDeps)},updateFocusIndexExternally(){this.externalFocusChange=!0,this.activeIndex>0?this.focusIndex(this.activeIndex):this.focusIndex(0)},focusNodeParent(e){const t=this.childrenMap[e.parent];if(!t)return;const n=this.nodesToRender.findIndex(e=>e.uid===t.uid);-1!==n&&this.focusIndex(n)}}},wl=kl,Il=(n("87ff"),Object(R["a"])(wl,$o,Ao,!1,null,"a440d59c",null)),Ol=Il.exports,xl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCard",e._b({on:{close:function(t){return e.$emit("close")}},scopedSlots:e._u([{key:"body",fn:function(t){var i=t.className;return[n("transition",{attrs:{name:"delay-visibility"}},[n("div",{staticClass:"loading-navigator",class:i,attrs:{"aria-hidden":"true"}},e._l(e.LOADER_ROWS,(function(e,t){return n("LoadingNavigatorItem",{key:t,attrs:{index:t,width:e.width,hideNavigatorIcon:e.hideNavigatorIcon}})})),1)])]}}])},"BaseNavigatorCard",e.$props,!1))},Dl=[],Pl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCardItem",{staticClass:"loading-navigator-item",style:"--index: "+e.index+";",attrs:{hideNavigatorIcon:e.hideNavigatorIcon},scopedSlots:e._u([{key:"navigator-icon",fn:function(e){var t=e.className;return[n("div",{class:t})]}},{key:"title-container",fn:function(){return[n("div",{staticClass:"loader",style:{width:e.width}})]},proxy:!0}])})},$l=[],Al={name:"LoadingNavigatorItem",components:{BaseNavigatorCardItem:Vo},props:{...Vo.props,index:{type:Number,default:0},width:{type:String,default:"50%"}}},Ll=Al,Nl=(n("d1b4"),Object(R["a"])(Ll,Pl,$l,!1,null,"0de29914",null)),jl=Nl.exports;const El=[{width:"30%",hideNavigatorIcon:!0},{width:"80%"},{width:"50%"}];var Bl={name:"LoadingNavigatorCard",components:{BaseNavigatorCard:ul,LoadingNavigatorItem:jl},props:{...ul.props},data(){return{LOADER_ROWS:El}}},Rl=Bl,Ml=(n("115d"),Object(R["a"])(Rl,xl,Dl,!1,null,"4b6d345f",null)),Kl=Ml.exports,zl={name:"Navigator",components:{NavigatorCard:Ol,LoadingNavigatorCard:Kl},data(){return{INDEX_ROOT_KEY:Ps}},props:{flatChildren:{type:Array,required:!0},parentTopicIdentifiers:{type:Array,required:!0},technology:{type:Object,required:!0},isFetching:{type:Boolean,default:!1},references:{type:Object,default:()=>{}},navigatorReferences:{type:Object,default:()=>{}},scrollLockID:{type:String,default:""},errorFetching:{type:Boolean,default:!1},renderFilterOnTop:{type:Boolean,default:!1},apiChanges:{type:Object,default:null},allowHiding:{type:Boolean,default:!0}},computed:{parentTopicReferences({references:e,parentTopicIdentifiers:t}){return t.reduce((t,n)=>{const i=e[n];return i?t.concat(i):(console.error(`Reference for "${n}" is missing`),t)},[])},activePath({parentTopicReferences:e,$route:{path:t}}){if(t=t.replace(/\/$/,"").toLowerCase(),!e.length)return[t];let n=1;return"technologies"===e[0].kind&&(n=2),e.slice(n).map(e=>e.url).concat(t)},type:()=>fe["b"].module,technologyProps:({technology:e})=>({technology:e.title,technologyPath:e.path||e.url,isTechnologyBeta:e.beta})}},Fl=zl,ql=(n("0ff0"),Object(R["a"])(Fl,Do,Po,!1,null,"048fdefe",null)),Hl=ql.exports,Vl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavBase",{staticClass:"documentation-nav",attrs:{breakpoint:e.BreakpointName.medium,hasOverlay:!1,hasSolidBackground:"",hasNoBorder:e.hasNoBorder,isDark:e.isDark,isWideFormat:"",hasFullWidthBorder:"","aria-label":"API Reference"},scopedSlots:e._u([e.displaySidenav?{key:"pre-title",fn:function(t){var i=t.closeNav,a=t.isOpen,s=t.currentBreakpoint,r=t.className;return[n("div",{class:r},[n("transition",{attrs:{name:"sidenav-toggle"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.sidenavHiddenOnLarge,expression:"sidenavHiddenOnLarge"}],staticClass:"sidenav-toggle-wrapper"},[n("button",{staticClass:"sidenav-toggle",attrs:{"aria-label":"Open documentation navigator",id:e.baseNavOpenSidenavButtonId,tabindex:a?-1:null},on:{click:function(t){return t.preventDefault(),e.handleSidenavToggle(i,s)}}},[n("span",{staticClass:"sidenav-icon-wrapper"},[n("SidenavIcon",{staticClass:"icon-inline sidenav-icon"})],1)]),n("span",{staticClass:"sidenav-toggle__separator"})])])],1)]}}:null,{key:"tray",fn:function(t){var i=t.closeNav;return[n("Hierarchy",{attrs:{currentTopicTitle:e.title,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,parentTopicIdentifiers:e.hierarchyItems,currentTopicTags:e.currentTopicTags,references:e.references}}),n("NavMenuItems",{staticClass:"nav-menu-settings",attrs:{previousSiblingChildren:e.breadcrumbCount}},[e.interfaceLanguage&&(e.swiftPath||e.objcPath)?n("LanguageToggle",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath,closeNav:i}}):e._e(),e._t("menu-items")],2),e._t("tray-after",null,null,{breadcrumbCount:e.breadcrumbCount})]}}],null,!0)},[n("template",{slot:"default"},[e._t("title",(function(){return[e.rootLink?n("router-link",{staticClass:"nav-title-link",attrs:{to:e.rootLink}},[e._v(" Documentation ")]):n("span",{staticClass:"nav-title-link inactive"},[e._v("Documentation")])]}),null,{rootLink:e.rootLink,linkClass:"nav-title-link",inactiveClass:"inactive"})],2),n("template",{slot:"after-content"},[e._t("after-content")],2)],2)},Wl=[],Ul=n("cbcf"),Gl=n("9b30"),Ql=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItems",{staticClass:"hierarchy",class:{"has-badge":e.hasBadge},attrs:{"aria-label":"Breadcrumbs"}},[e.root?n("HierarchyItem",{key:e.root.title,staticClass:"root-hierarchy",attrs:{url:e.addQueryParamsToUrl(e.root.url)}},[e._v(" "+e._s(e.root.title)+" ")]):e._e(),e._l(e.collapsibleItems,(function(t){return n("HierarchyItem",{key:t.title,attrs:{isCollapsed:"",url:e.addQueryParamsToUrl(t.url)}},[e._v(" "+e._s(t.title)+" ")])})),e.collapsibleItems.length?n("HierarchyCollapsedItems",{attrs:{topics:e.collapsibleItems}}):e._e(),e._l(e.nonCollapsibleItems,(function(t){return n("HierarchyItem",{key:t.title,attrs:{url:e.addQueryParamsToUrl(t.url)}},[e._v(" "+e._s(t.title)+" ")])})),n("HierarchyItem",[e._v(" "+e._s(e.currentTopicTitle)+" "),n("template",{slot:"tags"},[e.isSymbolDeprecated?n("Badge",{attrs:{variant:"deprecated"}}):e.isSymbolBeta?n("Badge",{attrs:{variant:"beta"}}):e._e(),e._l(e.currentTopicTags,(function(t){return n("Badge",{key:t.type+"-"+t.text,attrs:{variant:t.type}},[e._v(" "+e._s(t.text)+" ")])}))],2)],2)],2)},Xl=[],Yl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"hierarchy-collapsed-items"},[n("span",{staticClass:"hierarchy-item-icon icon-inline"},[e._v("/")]),n("button",{ref:"btn",staticClass:"toggle",class:{focused:!e.collapsed},on:{click:e.toggleCollapsed}},[n("span",{staticClass:"indicator"},[n("EllipsisIcon",{staticClass:"icon-inline toggle-icon"})],1)]),n("ul",{ref:"dropdown",staticClass:"dropdown",class:{collapsed:e.collapsed}},e._l(e.topicsWithUrls,(function(t){return n("li",{key:t.title,staticClass:"dropdown-item"},[n("router-link",{staticClass:"nav-menu-link",attrs:{to:t.url}},[e._v(e._s(t.title))])],1)})),0)])},Jl=[],Zl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"ellipsis-icon",attrs:{viewBox:"0 0 14 14",themeId:"ellipsis"}},[n("path",{attrs:{d:"m12.439 7.777v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554z"}})])},ec=[],tc={name:"EllipsisIcon",components:{SVGIcon:Js["a"]}},nc=tc,ic=Object(R["a"])(nc,Zl,ec,!1,null,null,null),ac=ic.exports,sc={name:"HierarchyCollapsedItems",components:{EllipsisIcon:ac},data:()=>({collapsed:!0}),props:{topics:{type:Array,required:!0}},watch:{collapsed(e,t){t&&!e?document.addEventListener("click",this.handleDocumentClick,!1):!t&&e&&document.removeEventListener("click",this.handleDocumentClick,!1)}},beforeDestroy(){document.removeEventListener("click",this.handleDocumentClick,!1)},computed:{topicsWithUrls:({$route:e,topics:t})=>t.map(t=>({...t,url:Object(q["b"])(t.url,e.query)}))},methods:{handleDocumentClick(e){const{target:t}=e,{collapsed:n,$refs:{btn:i,dropdown:a}}=this,s=!i.contains(t)&&!a.contains(t);!n&&s&&(this.collapsed=!0)},toggleCollapsed(){this.collapsed=!this.collapsed}}},rc=sc,oc=(n("2ca2"),Object(R["a"])(rc,Yl,Jl,!1,null,"74906830",null)),lc=oc.exports,cc=function(e,t){var n=t._c;return n(t.$options.components.NavMenuItemBase,{tag:"component",staticClass:"hierarchy-item",class:[{collapsed:t.props.isCollapsed},t.data.staticClass]},[n("span",{staticClass:"hierarchy-item-icon icon-inline"},[t._v("/")]),t.props.url?n("router-link",{staticClass:"parent item nav-menu-link",attrs:{to:t.props.url}},[t._t("default")],2):[n("span",{staticClass:"current item"},[t._t("default")],2),t._t("tags")]],2)},dc=[],uc=n("863d"),hc={name:"HierarchyItem",components:{NavMenuItemBase:uc["a"],InlineChevronRightIcon:Mo["a"]},props:{isCollapsed:Boolean,url:{type:String,required:!1}}},pc=hc,gc=(n("260a"),Object(R["a"])(pc,cc,dc,!0,null,"382bf39e",null)),fc=gc.exports;const mc=3;var yc={name:"Hierarchy",components:{Badge:qn["a"],NavMenuItems:Gl["a"],HierarchyCollapsedItems:lc,HierarchyItem:fc},constants:{MaxVisibleLinks:mc},inject:["store"],props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,references:Object,currentTopicTitle:{type:String,required:!0},parentTopicIdentifiers:{type:Array,default:()=>[]},currentTopicTags:{type:Array,default:()=>[]}},computed:{windowWidth:({store:e})=>e.state.contentWidth,parentTopics(){return this.parentTopicIdentifiers.reduce((e,t)=>{const n=this.references[t];if(n){const{title:t,url:i}=n;return e.concat({title:t,url:i})}return console.error(`Reference for "${t}" is missing`),e},[])},root:({parentTopics:e,windowWidth:t})=>t<=1e3?null:e[0],firstItemSlice:({root:e})=>e?1:0,linksAfterCollapse:({windowWidth:e,hasBadge:t})=>{const n=t?1:0;return e>1200?mc-n:e>1e3?mc-1-n:e>=800?mc-2-n:0},collapsibleItems:({parentTopics:e,linksAfterCollapse:t,firstItemSlice:n})=>t?e.slice(n,-t):e.slice(n),nonCollapsibleItems:({parentTopics:e,linksAfterCollapse:t,firstItemSlice:n})=>t?e.slice(n).slice(-t):[],hasBadge:({isSymbolDeprecated:e,isSymbolBeta:t,currentTopicTags:n})=>e||t||n.length},methods:{addQueryParamsToUrl(e){return Object(q["b"])(e,this.$route.query)}}},vc=yc,bc=(n("a780"),Object(R["a"])(vc,Ql,Xl,!1,null,"42bf934a",null)),Tc=bc.exports,_c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItemBase",{staticClass:"nav-menu-setting language-container"},[n("div",{class:{"language-toggle-container":e.hasLanguages}},[n("select",{ref:"language-sizer",staticClass:"language-dropdown language-sizer",attrs:{"aria-hidden":"true",tabindex:"-1"}},[n("option",{key:e.currentLanguage.name,attrs:{selected:""}},[e._v(e._s(e.currentLanguage.name))])]),n("label",{staticClass:"nav-menu-setting-label",attrs:{for:e.hasLanguages?"language-toggle":null}},[e._v("Language:")]),e.hasLanguages?n("select",{directives:[{name:"model",rawName:"v-model",value:e.languageModel,expression:"languageModel"}],staticClass:"language-dropdown nav-menu-link",style:"width: "+e.adjustedWidth+"px",attrs:{id:"language-toggle"},on:{change:[function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t="_value"in e?e._value:e.value;return t}));e.languageModel=t.target.multiple?n:n[0]},function(t){return e.pushRoute(e.currentLanguage.route)}]}},e._l(e.languages,(function(t){return n("option",{key:t.api,domProps:{value:t.api}},[e._v(" "+e._s(t.name)+" ")])})),0):n("span",{staticClass:"nav-menu-toggle-none current-language",attrs:{"aria-current":"page"}},[e._v(e._s(e.currentLanguage.name))]),e.hasLanguages?n("InlineChevronDownIcon",{staticClass:"toggle-icon icon-inline"}):e._e()],1),e.hasLanguages?n("div",{staticClass:"language-list-container"},[n("span",{staticClass:"nav-menu-setting-label"},[e._v("Language:")]),n("ul",{staticClass:"language-list"},e._l(e.languages,(function(t){return n("li",{key:t.api,staticClass:"language-list-item"},[t.api===e.languageModel?n("span",{staticClass:"current-language",attrs:{"data-language":t.api,"aria-current":"page"}},[e._v(" "+e._s(t.name)+" ")]):n("a",{staticClass:"nav-menu-link",attrs:{href:"#"},on:{click:function(n){return n.preventDefault(),e.pushRoute(t.route)}}},[e._v(" "+e._s(t.name)+" ")])])})),0)]):e._e()])},Sc=[],Cc=n("7948"),kc={name:"LanguageToggle",components:{InlineChevronDownIcon:Cc["a"],NavMenuItemBase:uc["a"]},inject:{store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},closeNav:{type:Function,default:()=>{}}},data(){return{languageModel:null,adjustedWidth:0}},mounted(){const e=we(async()=>{await Object(Ie["b"])(3),this.calculateSelectWidth()},150);window.addEventListener("resize",e),window.addEventListener("orientationchange",e),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("resize",e),window.removeEventListener("orientationchange",e)})},watch:{interfaceLanguage:{immediate:!0,handler(e){this.languageModel=e}},currentLanguage:{immediate:!0,handler:"calculateSelectWidth"}},methods:{getRoute(e){const t=e.query===D["a"].swift.key.url?void 0:e.query;return{query:{...this.$route.query,language:t},path:this.isCurrentPath(e.path)?null:this.normalizePath(e.path)}},async pushRoute(e){await this.closeNav(),this.store.setPreferredLanguage(e.query),this.$router.push(this.getRoute(e))},isCurrentPath(e){return this.$route.path.replace(/^\//,"")===e},normalizePath(e){return e.startsWith("/")?e:"/"+e},async calculateSelectWidth(){await this.$nextTick(),this.adjustedWidth=this.$refs["language-sizer"].clientWidth+6}},computed:{languages(){return[{name:D["a"].swift.name,api:D["a"].swift.key.api,route:{path:this.swiftPath,query:D["a"].swift.key.url}},{name:D["a"].objectiveC.name,api:D["a"].objectiveC.key.api,route:{path:this.objcPath,query:D["a"].objectiveC.key.url}}]},currentLanguage:({languages:e,languageModel:t})=>e.find(e=>e.api===t),hasLanguages:({objcPath:e,swiftPath:t})=>t&&e}},wc=kc,Ic=(n("34e5"),Object(R["a"])(wc,_c,Sc,!1,null,"005af823",null)),Oc=Ic.exports,xc={name:"DocumentationNav",components:{SidenavIcon:ol,NavBase:Ul["a"],NavMenuItems:Gl["a"],Hierarchy:Tc,LanguageToggle:Oc},props:{title:{type:String,required:!1},parentTopicIdentifiers:{type:Array,required:!1},isSymbolBeta:{type:Boolean,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isDark:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},currentTopicTags:{type:Array,required:!0},references:{type:Object,default:()=>({})},interfaceLanguage:{type:String,required:!1},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},sidenavHiddenOnLarge:{type:Boolean,default:!1},displaySidenav:{type:Boolean,default:!1}},computed:{baseNavOpenSidenavButtonId:()=>mo["d"],BreakpointName:()=>ho["b"],breadcrumbCount:({hierarchyItems:e})=>e.length+1,rootHierarchyReference:({parentTopicIdentifiers:e,references:t})=>t[e[0]]||{},isRootTechnologyLink:({rootHierarchyReference:{kind:e}})=>"technologies"===e,rootLink:({isRootTechnologyLink:e,rootHierarchyReference:t,$route:n})=>e?{path:t.url,query:n.query}:null,hierarchyItems:({parentTopicIdentifiers:e,isRootTechnologyLink:t})=>t?e.slice(1):e},methods:{async handleSidenavToggle(e,t){await e(),this.$emit("toggle-sidenav",t),await this.$nextTick();const n=document.getElementById(As);n&&n.focus()}}},Dc=xc,Pc=(n("69ba"),Object(R["a"])(Dc,Vl,Wl,!1,null,"136c3ca6",null)),$c=Pc.exports,Ac=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"StaticContentWidth"},[e._t("default")],2)},Lc=[],Nc={name:"StaticContentWidth",inject:["store"],mounted(){const e=we(async()=>{await this.$nextTick(),this.store.setContentWidth(this.$el.offsetWidth)},150);window.addEventListener("resize",e),window.addEventListener("orientationchange",e),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("resize",e),window.removeEventListener("orientationchange",e)}),e()}},jc=Nc,Ec=Object(R["a"])(jc,Ac,Lc,!1,null,null,null),Bc=Ec.exports,Rc=n("3bdd"),Mc=n("4009"),Kc={watch:{topicData:{immediate:!0,handler:"extractOnThisPageSections"}},methods:{shouldRegisterContentSection(e){return e.type===St["BlockType"].heading&&e.level<4},extractOnThisPageSections(e){if(!e)return;this.store.resetPageSections();const{metadata:{title:t},primaryContentSections:n,topicSections:i,defaultImplementationsSections:a,relationshipsSections:s,seeAlsoSections:r}=e;this.store.addOnThisPageSection({title:t,anchor:Mc["a"],level:1}),n&&n.forEach(e=>{switch(e.kind){case Fe.content:Ne["a"].methods.forEach.call(e,e=>{this.shouldRegisterContentSection(e)&&this.store.addOnThisPageSection({title:e.text,anchor:e.anchor||Object(it["a"])(e.text),level:e.level})});break;case Fe.properties:case Fe.restBody:case Fe.restCookies:case Fe.restEndpoint:case Fe.restHeaders:case Fe.restParameters:case Fe.restResponses:this.store.addOnThisPageSection({title:e.title,anchor:Object(it["a"])(e.title),level:2});break;default:this.store.addOnThisPageSection(He[e.kind])}}),i&&this.store.addOnThisPageSection(qe.topics),a&&this.store.addOnThisPageSection(qe.defaultImplementations),s&&this.store.addOnThisPageSection(qe.relationships),r&&this.store.addOnThisPageSection(qe.seeAlso)}}};const zc="0.3.0",Fc="navigator-hidden-large";var qc={name:"DocumentationTopicView",constants:{MIN_RENDER_JSON_VERSION_WITH_INDEX:zc,NAVIGATOR_HIDDEN_ON_LARGE_KEY:Fc},components:{Navigator:Hl,AdjustableSidebarWidth:xo,StaticContentWidth:Bc,NavigatorDataProvider:Vs,Topic:fs,CodeTheme:Is["a"],Nav:$c,QuickNavigationModal:ro,PortalTarget:I["PortalTarget"],MagnifierIcon:to},mixins:[xs["a"],Ds["a"],Kc],props:{enableMinimized:{type:Boolean,default:!1}},data(){return{topicDataDefault:null,topicDataObjc:null,sidenavVisibleOnMobile:!1,sidenavHiddenOnLarge:co["c"].get(Fc,!1),showQuickNavigationModal:!1,store:ws,BreakpointName:ho["b"]}},computed:{objcOverrides:({topicData:e})=>{const{variantOverrides:t=[]}=e||{},n=({interfaceLanguage:e})=>e===D["a"].objectiveC.key.api,i=({traits:e})=>e.some(n),a=t.find(i);return a?a.patch:null},enableQuickNavigation:({isTargetIDE:e})=>!e&&Object(jt["c"])(["features","docs","quickNavigation","enable"],!0),topicData:{get(){return this.topicDataObjc?this.topicDataObjc:this.topicDataDefault},set(e){this.topicDataDefault=e}},topicKey:({$route:e,topicProps:t})=>[e.path,t.interfaceLanguage].join(),topicProps(){const{abstract:e,defaultImplementationsSections:t,deprecationSummary:n,downloadNotAvailableSummary:i,diffAvailability:a,hierarchy:s,identifier:{interfaceLanguage:r,url:o},metadata:{conformance:l,modules:c,platforms:d,required:u=!1,roleHeading:h,title:p="",tags:g=[],role:f,symbolKind:m="",remoteSource:y,images:v=[]}={},primaryContentSections:b,relationshipsSections:T,references:_={},sampleCodeDownload:S,topicSectionsStyle:C,topicSections:k,seeAlsoSections:w,variantOverrides:I}=this.topicData;return{abstract:e,conformance:l,defaultImplementationsSections:t,deprecationSummary:n,downloadNotAvailableSummary:i,diffAvailability:a,hierarchy:s,role:f,identifier:o,interfaceLanguage:r,isRequirement:u,modules:c,platforms:d,primaryContentSections:b,relationshipsSections:T,references:_,roleHeading:h,sampleCodeDownload:S,title:p,topicSections:k,topicSectionsStyle:C,seeAlsoSections:w,variantOverrides:I,symbolKind:m,tags:g.slice(0,1),remoteSource:y,pageImages:v}},parentTopicIdentifiers:({topicProps:{hierarchy:{paths:e=[]},references:t},$route:n})=>e.length?e.find(e=>{const i=e.find(e=>t[e]&&"technologies"!==t[e].kind),a=i&&t[i];return a&&n.path.toLowerCase().startsWith(a.url.toLowerCase())})||e[0]:[],technology:({$route:e,topicProps:{identifier:t,references:n,role:i,title:a},parentTopicIdentifiers:s})=>{const r={title:a,url:e.path},o=n[t];if(!s.length)return o||r;const l=n[s[0]];return l&&"technologies"!==l.kind?l:(i!==k["a"].collection||o)&&(l&&n[s[1]]||o)||r},languagePaths:({topicData:{variants:e=[]}})=>e.reduce((e,t)=>t.traits.reduce((e,n)=>n.interfaceLanguage?{...e,[n.interfaceLanguage]:(e[n.interfaceLanguage]||[]).concat(t.paths)}:e,e),{}),objcPath:({languagePaths:{[D["a"].objectiveC.key.api]:[e]=[]}={}})=>e,swiftPath:({languagePaths:{[D["a"].swift.key.api]:[e]=[]}={}})=>e,isSymbolBeta:({topicProps:{platforms:e}})=>!!(e&&e.length&&e.every(e=>e.beta)),isSymbolDeprecated:({topicProps:{platforms:e,deprecationSummary:t}})=>!!(t&&t.length>0||e&&e.length&&e.every(e=>e.deprecatedAt)),enableNavigator:({isTargetIDE:e,topicDataDefault:t})=>!e&&Object(Rc["b"])(Object(Rc["a"])(t.schemaVersion),zc)>=0,enableOnThisPageNav:({isTargetIDE:e})=>!Object(jt["c"])(["features","docs","onThisPageNavigator","disable"],!1)&&!e,sidebarProps:({sidenavVisibleOnMobile:e,enableNavigator:t,sidenavHiddenOnLarge:n})=>t?{shownOnMobile:e,hiddenOnLarge:n}:{},sidebarListeners(){return this.enableNavigator?{"update:shownOnMobile":this.toggleMobileSidenav,"update:hiddenOnLarge":this.toggleLargeSidenav}:{}}},methods:{applyObjcOverrides(){this.topicDataObjc=C(Object(w["a"])(this.topicData),this.objcOverrides)},handleCodeColorsChange(e){Os["a"].updateCodeColors(e)},handleToggleSidenav(e){e===ho["b"].large?this.toggleLargeSidenav():this.toggleMobileSidenav()},openQuickNavigationModal(){this.sidenavVisibleOnMobile||(this.showQuickNavigationModal=!0)},toggleLargeSidenav(e=!this.sidenavHiddenOnLarge){this.sidenavHiddenOnLarge=e,co["c"].set(Fc,e)},toggleMobileSidenav(e=!this.sidenavVisibleOnMobile){this.sidenavVisibleOnMobile=e},onQuickNavigationKeydown(e){("/"===e.key||"o"===e.key&&e.shiftKey&&e.metaKey)&&this.enableNavigator&&"input"!==e.target.tagName.toLowerCase()&&(this.openQuickNavigationModal(),e.preventDefault())}},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge),this.$bridge.on("codeColors",this.handleCodeColorsChange),this.$bridge.send({type:"requestCodeColors"}),this.enableQuickNavigation&&window.addEventListener("keydown",this.onQuickNavigationKeydown)},provide(){return{store:this.store}},inject:{isTargetIDE:{default(){return!1}}},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge),this.$bridge.off("codeColors",this.handleCodeColorsChange),this.enableQuickNavigation&&window.removeEventListener("keydown",this.onQuickNavigationKeydown)},beforeRouteEnter(e,t,n){e.meta.skipFetchingData?n(e=>e.newContentMounted()):Object(w["b"])(e,t,n).then(t=>n(n=>{n.topicData=t,e.query.language===D["a"].objectiveC.key.url&&n.objcOverrides&&n.applyObjcOverrides()})).catch(n)},beforeRouteUpdate(e,t,n){e.path===t.path&&e.query.language===D["a"].objectiveC.key.url&&this.objcOverrides?(this.applyObjcOverrides(),n()):Object(w["d"])(e,t)?Object(w["b"])(e,t,n).then(t=>{this.topicDataObjc=null,this.topicData=t,e.query.language===D["a"].objectiveC.key.url&&this.objcOverrides&&this.applyObjcOverrides(),n()}).catch(n):n()},created(){this.store.reset()},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},Hc=qc,Vc=(n("5550"),Object(R["a"])(Hc,i,a,!1,null,"3f2e5486",null));t["default"]=Vc.exports},fd6e:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic.57e91f8a.js b/docs/js/documentation-topic.57e91f8a.js new file mode 100644 index 0000000..629d8b6 --- /dev/null +++ b/docs/js/documentation-topic.57e91f8a.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic"],{"00f2":function(e,t,n){"use strict";n("2089")},"0b72":function(e,t,n){},"115d":function(e,t,n){"use strict";n("20dd")},1347:function(e,t,n){"use strict";n("367e")},"14d4":function(e,t,n){},"18f4":function(e,t,n){},"1a39":function(e,t,n){"use strict";n("a7e9")},"1e0b":function(e,t,n){"use strict";n("412b")},"1fde":function(e,t,n){},2089:function(e,t,n){},"20dd":function(e,t,n){},"22f6":function(e,t,n){},2482:function(e,t,n){},2521:function(e,t,n){},"252c":function(e,t,n){"use strict";(function(e){function i(){var e=window.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);var n=e.indexOf("Trident/");if(n>0){var i=e.indexOf("rv:");return parseInt(e.substring(i+3,e.indexOf(".",i)),10)}var a=e.indexOf("Edge/");return a>0?parseInt(e.substring(a+5,e.indexOf(".",a)),10):-1}n.d(t,"a",(function(){return r}));var a=void 0;function s(){s.init||(s.init=!0,a=-1!==i())}var r={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},staticRenderFns:[],_scopeId:"data-v-b329ee4c",name:"resize-observer",methods:{compareAndNotify:function(){this._w===this.$el.offsetWidth&&this._h===this.$el.offsetHeight||(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.$emit("notify"))},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!a&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),delete this._resizeObject.onload)}},mounted:function(){var e=this;s(),this.$nextTick((function(){e._w=e.$el.offsetWidth,e._h=e.$el.offsetHeight}));var t=document.createElement("object");this._resizeObject=t,t.setAttribute("aria-hidden","true"),t.setAttribute("tabindex",-1),t.onload=this.addResizeHandlers,t.type="text/html",a&&this.$el.appendChild(t),t.data="about:blank",a||this.$el.appendChild(t)},beforeDestroy:function(){this.removeResizeHandlers()}};function o(e){e.component("resize-observer",r),e.component("ResizeObserver",r)}var l={version:"0.4.5",install:o},c=null;"undefined"!==typeof window?c=window.Vue:"undefined"!==typeof e&&(c=e.Vue),c&&c.use(l)}).call(this,n("c8ba"))},2591:function(e,t,n){"use strict";n("f6d7")},"260a":function(e,t,n){"use strict";n("9a8a")},"264a":function(e,t,n){},2822:function(e,t,n){"use strict";n("2521")},"2c54":function(e,t,n){},"2ca2":function(e,t,n){"use strict";n("98e2")},"2d12":function(e,t,n){"use strict";n("b324")},"2eeb":function(e,t,n){},"2f87":function(e,t,n){"use strict";n("b0a0")},3396:function(e,t,n){"use strict";n("cdce")},"367e":function(e,t,n){},3702:function(e,t,n){},"370f":function(e,t,n){},"374e":function(e,t,n){"use strict";n("0b72")},"37dc":function(e,t,n){},"39d3":function(e,t,n){"use strict";n("2c54")},"3c37":function(e,t,n){},"3d94":function(e,t,n){},"3e80":function(e,t,n){},4125:function(e,t,n){},"412b":function(e,t,n){},"45b2":function(e,t,n){"use strict";n("264a")},"464f":function(e,t,n){},"46c5":function(e,t,n){"use strict";n("dff0")},5079:function(e,t,n){},"509b":function(e,t,n){},"51f2":function(e,t,n){},5208:function(e,t,n){"use strict";n("3d94")},5228:function(e,t,n){},"533e":function(e,t,n){},5561:function(e,t,n){"use strict";n("a2cc")},"5a73":function(e,t,n){"use strict";n("f9c9")},"5c57":function(e,t,n){"use strict";n("f0ff")},"645a":function(e,t,n){},6513:function(e,t,n){},6742:function(e,t,n){},"6a35":function(e,t,n){"use strict";n("d436")},"6ca9":function(e,t,n){"use strict";n("8429")},"6d05":function(e,t,n){"use strict";n("d7f6")},"719b":function(e,t,n){"use strict";n("8b3c")},"72a9":function(e,t,n){"use strict";n("d551")},7309:function(e,t,n){"use strict";n("c227")},"73a8":function(e,t,n){"use strict";n("3c37")},7649:function(e,t,n){"use strict";n("37dc")},"7a2c":function(e,t,n){"use strict";n("c4c1")},8429:function(e,t,n){},"857c":function(e,t,n){"use strict";n("645a")},"85fe":function(e,t,n){"use strict";(function(e){function i(e){return i="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:{},r=function(r){for(var l=arguments.length,c=new Array(l>1?l-1:0),d=1;d1){var i=e.find((function(e){return e.isIntersecting}));i&&(t=i)}if(n.callback){var a=t.isIntersecting&&t.intersectionRatio>=n.threshold;if(a===n.oldResult)return;n.oldResult=a,n.callback(a,t)}}),this.options.intersection),t.context.$nextTick((function(){n.observer&&n.observer.observe(n.el)}))}}},{key:"destroyObserver",value:function(){this.observer&&(this.observer.disconnect(),this.observer=null),this.callback&&this.callback._clear&&(this.callback._clear(),this.callback=null)}},{key:"threshold",get:function(){return this.options.intersection&&this.options.intersection.threshold||0}}]),e}();function f(e,t,n){var i=t.value;if(i)if("undefined"===typeof IntersectionObserver)console.warn("[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill");else{var a=new g(e,i,n);e._vue_visibilityState=a}}function m(e,t,n){var i=t.value,a=t.oldValue;if(!p(i,a)){var s=e._vue_visibilityState;i?s?s.createObserver(i,n):f(e,{value:i},n):y(e)}}function y(e){var t=e._vue_visibilityState;t&&(t.destroyObserver(),delete e._vue_visibilityState)}var v={bind:f,update:m,unbind:y};function b(e){e.directive("observe-visibility",v)}var T={version:"0.4.6",install:b},S=null;"undefined"!==typeof window?S=window.Vue:"undefined"!==typeof e&&(S=e.Vue),S&&S.use(T)}).call(this,n("c8ba"))},"8b3c":function(e,t,n){},"8e4d":function(e,t,n){"use strict";n("bdc3")},9475:function(e,t,n){"use strict";n("1fde")},"98e2":function(e,t,n){},"9a8a":function(e,t,n){},"9c7e":function(e,t,n){"use strict";n("5228")},"9c92":function(e,t,n){},"9cea":function(e,t,n){"use strict";n("a61f")},"9f0d":function(e,t,n){},"9f11":function(e,t,n){},"9f17":function(e,t,n){"use strict";n("6742")},a2cc:function(e,t,n){},a34a:function(e,t,n){"use strict";n("51f2")},a61f:function(e,t,n){},a7e9:function(e,t,n){},b0a0:function(e,t,n){},b324:function(e,t,n){},b32a:function(e,t,n){"use strict";n("3e80")},b39c:function(e,t,n){"use strict";n("18f4")},b831:function(e,t,n){"use strict";n("533e")},b857:function(e,t,n){"use strict";n("3702")},bdc3:function(e,t,n){},c1f5:function(e,t,n){"use strict";n("f4ae")},c227:function(e,t,n){},c4bc:function(e,t,n){"use strict";n("2eeb")},c4c1:function(e,t,n){},c61f:function(e,t,n){"use strict";n("509b")},c80b:function(e,t,n){"use strict";n("6513")},ca3d:function(e,t,n){"use strict";n("5079")},cb1f:function(e,t,n){"use strict";n("dd53")},cd88:function(e,t,n){},cdce:function(e,t,n){},d1ac:function(e,t,n){"use strict";n("9f11")},d1b4:function(e,t,n){"use strict";n("4125")},d436:function(e,t,n){},d551:function(e,t,n){},d71b:function(e,t,n){"use strict";n("9f0d")},d7f6:function(e,t,n){},dd53:function(e,t,n){},dfa5:function(e,t,n){"use strict";n("2482")},dff0:function(e,t,n){},e47c:function(e,t,n){"use strict";n("cd88")},e508:function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return L})),n.d(t,"b",(function(){return M})),n.d(t,"c",(function(){return z}));var i=n("252c"),a=n("85fe"),s=n("ed83"),r=n.n(s),o=n("2b0e"),l={itemsLimit:1e3};const c={items:{type:Array,required:!0},keyField:{type:String,default:"id"},direction:{type:String,default:"vertical",validator:e=>["vertical","horizontal"].includes(e)},listTag:{type:String,default:"div"},itemTag:{type:String,default:"div"}};function d(){return this.items.length&&"object"!==typeof this.items[0]}let u=!1;if("undefined"!==typeof window){u=!1;try{var h=Object.defineProperty({},"passive",{get(){u=!0}});window.addEventListener("test",null,h)}catch(H){}}let p=0;var g={name:"RecycleScroller",components:{ResizeObserver:i["a"]},directives:{ObserveVisibility:a["a"]},props:{...c,itemSize:{type:Number,default:null},gridItems:{type:Number,default:void 0},itemSecondarySize:{type:Number,default:void 0},minItemSize:{type:[Number,String],default:null},sizeField:{type:String,default:"size"},typeField:{type:String,default:"type"},buffer:{type:Number,default:200},pageMode:{type:Boolean,default:!1},prerender:{type:Number,default:0},emitUpdate:{type:Boolean,default:!1},skipHover:{type:Boolean,default:!1},listTag:{type:String,default:"div"},itemTag:{type:String,default:"div"},listClass:{type:[String,Object,Array],default:""},itemClass:{type:[String,Object,Array],default:""}},data(){return{pool:[],totalSize:0,ready:!1,hoverKey:null}},computed:{sizes(){if(null===this.itemSize){const e={"-1":{accumulator:0}},t=this.items,n=this.sizeField,i=this.minItemSize;let a,s=1e4,r=0;for(let o=0,l=t.length;o{this.$_prerender=!1,this.updateVisibleItems(!0),this.ready=!0})},activated(){const e=this.$_lastUpdateScrollPosition;"number"===typeof e&&this.$nextTick(()=>{this.scrollToPosition(e)})},beforeDestroy(){this.removeListeners()},methods:{addView(e,t,n,i,a){const s={item:n,position:0},r={id:p++,index:t,used:!0,key:i,type:a};return Object.defineProperty(s,"nr",{configurable:!1,value:r}),e.push(s),s},unuseView(e,t=!1){const n=this.$_unusedViews,i=e.nr.type;let a=n.get(i);a||(a=[],n.set(i,a)),a.push(e),t||(e.nr.used=!1,e.position=-9999,this.$_views.delete(e.nr.key))},handleResize(){this.$emit("resize"),this.ready&&this.updateVisibleItems(!1)},handleScroll(e){this.$_scrollDirty||(this.$_scrollDirty=!0,requestAnimationFrame(()=>{this.$_scrollDirty=!1;const{continuous:e}=this.updateVisibleItems(!1,!0);e||(clearTimeout(this.$_refreshTimout),this.$_refreshTimout=setTimeout(this.handleScroll,100))}))},handleVisibilityChange(e,t){this.ready&&(e||0!==t.boundingClientRect.width||0!==t.boundingClientRect.height?(this.$emit("visible"),requestAnimationFrame(()=>{this.updateVisibleItems(!1)})):this.$emit("hidden"))},updateVisibleItems(e,t=!1){const n=this.itemSize,i=this.gridItems||1,a=this.itemSecondarySize||n,s=this.$_computedMinItemSize,r=this.typeField,o=this.simpleArray?null:this.keyField,c=this.items,d=c.length,u=this.sizes,h=this.$_views,p=this.$_unusedViews,g=this.pool;let f,m,y,v,b,T;if(d)if(this.$_prerender)f=v=0,m=b=Math.min(this.prerender,c.length),y=null;else{const e=this.getScroll();if(t){let t=e.start-this.$_lastUpdateScrollPosition;if(t<0&&(t=-t),null===n&&te.start&&(a=s),s=~~((i+a)/2)}while(s!==n);for(s<0&&(s=0),f=s,y=u[d-1].accumulator,m=s;md&&(m=d)),v=f;vd&&(m=d),v<0&&(v=0),b>d&&(b=d),y=Math.ceil(d/i)*n}}else f=m=v=b=y=0;m-f>l.itemsLimit&&this.itemsLimitError(),this.totalSize=y;const S=f<=this.$_endIndex&&m>=this.$_startIndex;if(this.$_continuous!==S){if(S){h.clear(),p.clear();for(let e=0,t=g.length;e=m)&&this.unuseView(T));const _=S?null:new Map;let C,k,w,I;for(let l=f;l=w.length)&&(T=this.addView(g,l,C,e,k),this.unuseView(T,!0),w=p.get(k)),T=w[I],T.item=C,T.nr.used=!0,T.nr.index=l,T.nr.key=e,T.nr.type=k,_.set(k,I+1),I++),h.set(e,T)),null===n?(T.position=u[l-1].accumulator,T.offset=0):(T.position=Math.floor(l/i)*n,T.offset=l%i*a)):T&&this.unuseView(T)}return this.$_startIndex=f,this.$_endIndex=m,this.emitUpdate&&this.$emit("update",f,m,v,b),clearTimeout(this.$_sortTimer),this.$_sortTimer=setTimeout(this.sortViews,300),{continuous:S}},getListenerTarget(){let e=r()(this.$el);return!window.document||e!==window.document.documentElement&&e!==window.document.body||(e=window),e},getScroll(){const{$el:e,direction:t}=this,n="vertical"===t;let i;if(this.pageMode){const t=e.getBoundingClientRect(),a=n?t.height:t.width;let s=-(n?t.top:t.left),r=n?window.innerHeight:window.innerWidth;s<0&&(r+=s,s=0),s+r>a&&(r=a-s),i={start:s,end:s+r}}else i=n?{start:e.scrollTop,end:e.scrollTop+e.clientHeight}:{start:e.scrollLeft,end:e.scrollLeft+e.clientWidth};return i},applyPageMode(){this.pageMode?this.addListeners():this.removeListeners()},addListeners(){this.listenerTarget=this.getListenerTarget(),this.listenerTarget.addEventListener("scroll",this.handleScroll,!!u&&{passive:!0}),this.listenerTarget.addEventListener("resize",this.handleResize)},removeListeners(){this.listenerTarget&&(this.listenerTarget.removeEventListener("scroll",this.handleScroll),this.listenerTarget.removeEventListener("resize",this.handleResize),this.listenerTarget=null)},scrollToItem(e){let t;t=null===this.itemSize?e>0?this.sizes[e-1].accumulator:0:Math.floor(e/this.gridItems)*this.itemSize,this.scrollToPosition(t)},scrollToPosition(e){const t="vertical"===this.direction?{scroll:"scrollTop",start:"top"}:{scroll:"scrollLeft",start:"left"};let n,i,a;if(this.pageMode){const s=r()(this.$el),o="HTML"===s.tagName?0:s[t.scroll],l=s.getBoundingClientRect(),c=this.$el.getBoundingClientRect(),d=c[t.start]-l[t.start];n=s,i=t.scroll,a=e+o+d}else n=this.$el,i=t.scroll,a=e;n[i]=a},itemsLimitError(){throw setTimeout(()=>{console.log("It seems the scroller element isn't scrolling, so it tries to render all the items at once.","Scroller:",this.$el),console.log("Make sure the scroller has a fixed height (or width) and 'overflow-y' (or 'overflow-x') set to 'auto' so it can scroll correctly and only render the items visible in the scroll viewport.")}),new Error("Rendered items limit reached")},sortViews(){this.pool.sort((e,t)=>e.nr.index-t.nr.index)}}};function f(e,t,n,i,a,s,r,o,l,c){"boolean"!==typeof r&&(l=o,o=r,r=!1);const d="function"===typeof n?n.options:n;let u;if(e&&e.render&&(d.render=e.render,d.staticRenderFns=e.staticRenderFns,d._compiled=!0,a&&(d.functional=!0)),i&&(d._scopeId=i),s?(u=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),t&&t.call(this,l(e)),e&&e._registeredComponents&&e._registeredComponents.add(s)},d._ssrRegister=u):t&&(u=r?function(e){t.call(this,c(e,this.$root.$options.shadowRoot))}:function(e){t.call(this,o(e))}),u)if(d.functional){const e=d.render;d.render=function(t,n){return u.call(n),e(t,n)}}else{const e=d.beforeCreate;d.beforeCreate=e?[].concat(e,u):[u]}return n}const m=g;var y=function(){var e,t,n=this,i=n.$createElement,a=n._self._c||i;return a("div",{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:n.handleVisibilityChange,expression:"handleVisibilityChange"}],staticClass:"vue-recycle-scroller",class:(e={ready:n.ready,"page-mode":n.pageMode},e["direction-"+n.direction]=!0,e),on:{"&scroll":function(e){return n.handleScroll.apply(null,arguments)}}},[n.$slots.before?a("div",{ref:"before",staticClass:"vue-recycle-scroller__slot"},[n._t("before")],2):n._e(),n._v(" "),a(n.listTag,{ref:"wrapper",tag:"component",staticClass:"vue-recycle-scroller__item-wrapper",class:n.listClass,style:(t={},t["vertical"===n.direction?"minHeight":"minWidth"]=n.totalSize+"px",t)},[n._l(n.pool,(function(e){return a(n.itemTag,n._g({key:e.nr.id,tag:"component",staticClass:"vue-recycle-scroller__item-view",class:[n.itemClass,{hover:!n.skipHover&&n.hoverKey===e.nr.key}],style:n.ready?{transform:"translate"+("vertical"===n.direction?"Y":"X")+"("+e.position+"px) translate"+("vertical"===n.direction?"X":"Y")+"("+e.offset+"px)",width:n.gridItems?("vertical"===n.direction&&n.itemSecondarySize||n.itemSize)+"px":void 0,height:n.gridItems?("horizontal"===n.direction&&n.itemSecondarySize||n.itemSize)+"px":void 0}:null},n.skipHover?{}:{mouseenter:function(){n.hoverKey=e.nr.key},mouseleave:function(){n.hoverKey=null}}),[n._t("default",null,{item:e.item,index:e.nr.index,active:e.nr.used})],2)})),n._v(" "),n._t("empty")],2),n._v(" "),n.$slots.after?a("div",{ref:"after",staticClass:"vue-recycle-scroller__slot"},[n._t("after")],2):n._e(),n._v(" "),a("ResizeObserver",{on:{notify:n.handleResize}})],1)},v=[];y._withStripped=!0;const b=void 0,T=void 0,S=void 0,_=!1,C=f({render:y,staticRenderFns:v},b,m,T,_,S,!1,void 0,void 0,void 0);var k={name:"DynamicScroller",components:{RecycleScroller:C},provide(){return"undefined"!==typeof ResizeObserver&&(this.$_resizeObserver=new ResizeObserver(e=>{requestAnimationFrame(()=>{if(Array.isArray(e))for(const t of e)if(t.target){const e=new CustomEvent("resize",{detail:{contentRect:t.contentRect}});t.target.dispatchEvent(e)}})})),{vscrollData:this.vscrollData,vscrollParent:this,vscrollResizeObserver:this.$_resizeObserver}},inheritAttrs:!1,props:{...c,minItemSize:{type:[Number,String],required:!0}},data(){return{vscrollData:{active:!0,sizes:{},validSizes:{},keyField:this.keyField,simpleArray:!1}}},computed:{simpleArray:d,itemsWithSize(){const e=[],{items:t,keyField:n,simpleArray:i}=this,a=this.vscrollData.sizes,s=t.length;for(let r=0;r=n)break;i+=t[o].size||this.minItemSize,a+=e[o].size||this.minItemSize}const r=a-i;0!==r&&(this.$el.scrollTop+=r)}},beforeCreate(){this.$_updates=[],this.$_undefinedSizes=0,this.$_undefinedMap={}},activated(){this.vscrollData.active=!0},deactivated(){this.vscrollData.active=!1},methods:{onScrollerResize(){const e=this.$refs.scroller;e&&this.forceUpdate(),this.$emit("resize")},onScrollerVisible(){this.$emit("vscroll:update",{force:!1}),this.$emit("visible")},forceUpdate(e=!0){(e||this.simpleArray)&&(this.vscrollData.validSizes={}),this.$emit("vscroll:update",{force:!0})},scrollToItem(e){const t=this.$refs.scroller;t&&t.scrollToItem(e)},getItemSize(e,t){const n=this.simpleArray?null!=t?t:this.items.indexOf(e):e[this.keyField];return this.vscrollData.sizes[n]||0},scrollToBottom(){if(this.$_scrollingToBottom)return;this.$_scrollingToBottom=!0;const e=this.$el;this.$nextTick(()=>{e.scrollTop=e.scrollHeight+5e3;const t=()=>{e.scrollTop=e.scrollHeight+5e3,requestAnimationFrame(()=>{e.scrollTop=e.scrollHeight+5e3,0===this.$_undefinedSizes?this.$_scrollingToBottom=!1:requestAnimationFrame(t)})};requestAnimationFrame(t)})}}};const w=k;var I=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RecycleScroller",e._g(e._b({ref:"scroller",attrs:{items:e.itemsWithSize,"min-item-size":e.minItemSize,direction:e.direction,"key-field":"id","list-tag":e.listTag,"item-tag":e.itemTag},on:{resize:e.onScrollerResize,visible:e.onScrollerVisible},scopedSlots:e._u([{key:"default",fn:function(t){var n=t.item,i=t.index,a=t.active;return[e._t("default",null,null,{item:n.item,index:i,active:a,itemWithSize:n})]}}],null,!0)},"RecycleScroller",e.$attrs,!1),e.listeners),[e._v(" "),n("template",{slot:"before"},[e._t("before")],2),e._v(" "),n("template",{slot:"after"},[e._t("after")],2),e._v(" "),n("template",{slot:"empty"},[e._t("empty")],2)],2)},x=[];I._withStripped=!0;const $=void 0,O=void 0,D=void 0,P=!1,L=f({render:I,staticRenderFns:x},$,w,O,P,D,!1,void 0,void 0,void 0);var A={name:"DynamicScrollerItem",inject:["vscrollData","vscrollParent","vscrollResizeObserver"],props:{item:{required:!0},watchData:{type:Boolean,default:!1},active:{type:Boolean,required:!0},index:{type:Number,default:void 0},sizeDependencies:{type:[Array,Object],default:null},emitResize:{type:Boolean,default:!1},tag:{type:String,default:"div"}},computed:{id(){if(this.vscrollData.simpleArray)return this.index;if(this.item.hasOwnProperty(this.vscrollData.keyField))return this.item[this.vscrollData.keyField];throw new Error(`keyField '${this.vscrollData.keyField}' not found in your item. You should set a valid keyField prop on your Scroller`)},size(){return this.vscrollData.validSizes[this.id]&&this.vscrollData.sizes[this.id]||0},finalActive(){return this.active&&this.vscrollData.active}},watch:{watchData:"updateWatchData",id(){this.size||this.onDataUpdate()},finalActive(e){this.size||(e?this.vscrollParent.$_undefinedMap[this.id]||(this.vscrollParent.$_undefinedSizes++,this.vscrollParent.$_undefinedMap[this.id]=!0):this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=!1)),this.vscrollResizeObserver?e?this.observeSize():this.unobserveSize():e&&this.$_pendingVScrollUpdate===this.id&&this.updateSize()}},created(){if(!this.$isServer&&(this.$_forceNextVScrollUpdate=null,this.updateWatchData(),!this.vscrollResizeObserver)){for(const e in this.sizeDependencies)this.$watch(()=>this.sizeDependencies[e],this.onDataUpdate);this.vscrollParent.$on("vscroll:update",this.onVscrollUpdate),this.vscrollParent.$on("vscroll:update-size",this.onVscrollUpdateSize)}},mounted(){this.vscrollData.active&&(this.updateSize(),this.observeSize())},beforeDestroy(){this.vscrollParent.$off("vscroll:update",this.onVscrollUpdate),this.vscrollParent.$off("vscroll:update-size",this.onVscrollUpdateSize),this.unobserveSize()},methods:{updateSize(){this.finalActive?this.$_pendingSizeUpdate!==this.id&&(this.$_pendingSizeUpdate=this.id,this.$_forceNextVScrollUpdate=null,this.$_pendingVScrollUpdate=null,this.computeSize(this.id)):this.$_forceNextVScrollUpdate=this.id},updateWatchData(){this.watchData&&!this.vscrollResizeObserver?this.$_watchData=this.$watch("item",()=>{this.onDataUpdate()},{deep:!0}):this.$_watchData&&(this.$_watchData(),this.$_watchData=null)},onVscrollUpdate({force:e}){!this.finalActive&&e&&(this.$_pendingVScrollUpdate=this.id),this.$_forceNextVScrollUpdate!==this.id&&!e&&this.size||this.updateSize()},onDataUpdate(){this.updateSize()},computeSize(e){this.$nextTick(()=>{if(this.id===e){const e=this.$el.offsetWidth,t=this.$el.offsetHeight;this.applySize(e,t)}this.$_pendingSizeUpdate=null})},applySize(e,t){const n=~~("vertical"===this.vscrollParent.direction?t:e);n&&this.size!==n&&(this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=void 0),this.$set(this.vscrollData.sizes,this.id,n),this.$set(this.vscrollData.validSizes,this.id,!0),this.emitResize&&this.$emit("resize",this.id))},observeSize(){this.vscrollResizeObserver&&this.$el.parentNode&&(this.vscrollResizeObserver.observe(this.$el.parentNode),this.$el.parentNode.addEventListener("resize",this.onResize))},unobserveSize(){this.vscrollResizeObserver&&(this.vscrollResizeObserver.unobserve(this.$el.parentNode),this.$el.parentNode.removeEventListener("resize",this.onResize))},onResize(e){const{width:t,height:n}=e.detail.contentRect;this.applySize(t,n)}},render(e){return e(this.tag,this.$slots.default)}};const N=A,E=void 0,j=void 0,B=void 0,R=void 0,M=f({},E,N,j,R,B,!1,void 0,void 0,void 0);function z({idProp:e=(e=>e.item.id)}={}){const t={},n=new o["default"]({data(){return{store:t}}});return{data(){return{idState:null}},created(){this.$_id=null,this.$_getId="function"===typeof e?()=>e.call(this,this):()=>this[e],this.$watch(this.$_getId,{handler(e){this.$nextTick(()=>{this.$_id=e})},immediate:!0}),this.$_updateIdState()},beforeUpdate(){this.$_updateIdState()},methods:{$_idStateInit(e){const i=this.$options.idState;if("function"===typeof i){const a=i.call(this,this);return n.$set(t,e,a),this.$_id=e,a}throw new Error("[mixin IdState] Missing `idState` function on component definition.")},$_updateIdState(){const n=this.$_getId();null==n&&console.warn(`No id found for IdState with idProp: '${e}'.`),n!==this.$_id&&(t[n]||this.$_idStateInit(n),this.idState=t[n])}}}}function K(e,t){e.component(t+"recycle-scroller",C),e.component(t+"RecycleScroller",C),e.component(t+"dynamic-scroller",L),e.component(t+"DynamicScroller",L),e.component(t+"dynamic-scroller-item",M),e.component(t+"DynamicScrollerItem",M)}const q={version:"1.1.2",install(e,t){const n=Object.assign({},{installComponents:!0,componentsPrefix:""},t);for(const i in n)"undefined"!==typeof n[i]&&(l[i]=n[i]);n.installComponents&&K(e,n.componentsPrefix)}};let F=null;"undefined"!==typeof window?F=window.Vue:"undefined"!==typeof e&&(F=e.Vue),F&&F.use(q)}).call(this,n("c8ba"))},e615:function(e,t,n){"use strict";n("14d4")},e81e:function(e,t,n){"use strict";n("370f")},eb6d:function(e,t,n){"use strict";n("9c92")},ed83:function(e,t,n){var i,a,s;(function(n,r){a=[],i=r,s="function"===typeof i?i.apply(t,a):i,void 0===s||(e.exports=s)})(0,(function(){var e=/(auto|scroll)/,t=function(e,n){return null===e.parentNode?n:t(e.parentNode,n.concat([e]))},n=function(e,t){return getComputedStyle(e,null).getPropertyValue(t)},i=function(e){return n(e,"overflow")+n(e,"overflow-y")+n(e,"overflow-x")},a=function(t){return e.test(i(t))},s=function(e){if(e instanceof HTMLElement||e instanceof SVGElement){for(var n=t(e.parentNode,[]),i=0;i({"~0":"~","~1":"/"}[e]||e))}function*o(e){const t=1;if(e.lengtht)throw new Error("invalid array index "+e);return n}function*p(e,t,n={strict:!1}){let i=e;for(const a of o(t)){if(n.strict&&!Object.prototype.hasOwnProperty.call(i,a))throw new u(t);i=i[a],yield{node:i,token:a}}}function g(e,t){let n=e;for(const{node:i}of p(e,t,{strict:!0}))n=i;return n}function f(e,t,n){let i=null,a=e,s=null;for(const{node:o,token:l}of p(e,t))i=a,a=o,s=l;if(!i)throw new u(t);if(Array.isArray(i))try{const e=h(s,i);i.splice(e,0,n)}catch(r){throw new u(t)}else Object.assign(i,{[s]:n});return e}function m(e,t){let n=null,i=e,a=null;for(const{node:r,token:o}of p(e,t))n=i,i=r,a=o;if(!n)throw new u(t);if(Array.isArray(n))try{const e=h(a,n);n.splice(e,1)}catch(s){throw new u(t)}else{if(!i)throw new u(t);delete n[a]}return e}function y(e,t,n){return m(e,t),f(e,t,n),e}function v(e,t,n){const i=g(e,t);return m(e,t),f(e,n,i),e}function b(e,t,n){return f(e,n,g(e,t)),e}function T(e,t,n){function i(e,t){const n=typeof e,a=typeof t;if(n!==a)return!1;switch(n){case d:{const n=Object.keys(e),a=Object.keys(t);return n.length===a.length&&n.every((n,s)=>n===a[s]&&i(e[n],t[n]))}default:return e===t}}const a=g(e,t);if(!i(n,a))throw new Error("test failed");return e}const S={add:(e,{path:t,value:n})=>f(e,t,n),copy:(e,{from:t,path:n})=>b(e,t,n),move:(e,{from:t,path:n})=>v(e,t,n),remove:(e,{path:t})=>m(e,t),replace:(e,{path:t,value:n})=>y(e,t,n),test:(e,{path:t,value:n})=>T(e,t,n)};function _(e,{op:t,...n}){const i=S[t];if(!i)throw new Error("unknown operation");return i(e,n)}function C(e,t){return t.reduce(_,e)}var k=n("66cd"),w=n("25a9"),I=n("2b88"),x=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"doc-topic",class:{"with-on-this-page":e.enableOnThisPageNav&&e.isOnThisPageNavVisible}},[n(e.isTargetIDE?"div":"main",{tag:"component",staticClass:"main",attrs:{id:"main"}},[n("DocumentationHero",{attrs:{role:e.role,enhanceBackground:e.enhanceBackground,enableMinimized:e.enableMinimized,shortHero:e.shortHero,shouldShowLanguageSwitcher:e.shouldShowLanguageSwitcher,iconOverride:e.references[e.pageIcon],standardColorIdentifier:e.standardColorIdentifier},scopedSlots:e._u([{key:"above-content",fn:function(){return[e._t("above-hero-content")]},proxy:!0}],null,!0)},[e._t("above-title"),e.shouldShowLanguageSwitcher?n("LanguageSwitcher",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath}}):e._e(),n("Title",{class:{"minimized-title":e.enableMinimized},attrs:{eyebrow:e.enableMinimized?null:e.roleHeading}},[n(e.titleBreakComponent,{tag:"component"},[e._v(e._s(e.title))]),e.isSymbolDeprecated||e.isSymbolBeta?n("small",{class:e.tagName,attrs:{slot:"after","data-tag-name":e.tagName},slot:"after"}):e._e()],1),e.abstract?n("Abstract",{class:{"minimized-abstract":e.enableMinimized},attrs:{content:e.abstract}}):e._e(),e.sampleCodeDownload?n("div",[n("DownloadButton",{staticClass:"sample-download",attrs:{action:e.sampleCodeDownload.action}})],1):e._e(),e.shouldShowAvailability?n("Availability",{attrs:{platforms:e.platforms,technologies:e.technologies}}):e._e(),e.declarations.length?n("div",{staticClass:"declarations-container",class:{"minimized-container":e.enableMinimized}},e._l(e.declarations,(function(t,i){return n("Declaration",{key:i,attrs:{conformance:e.conformance,declarations:t.declarations,source:e.remoteSource}})})),1):e._e()],2),n("div",{staticClass:"doc-content-wrapper"},[n("div",{staticClass:"doc-content",class:{"no-primary-content":!e.hasPrimaryContent&&e.enhanceBackground}},[e.hasPrimaryContent?n("div",{class:["container",{"minimized-container":e.enableMinimized}]},[n("div",{staticClass:"description",class:{"after-enhanced-hero":e.enhanceBackground}},[e.isRequirement?n("RequirementMetadata",{attrs:{defaultImplementationsCount:e.defaultImplementationsCount}}):e._e(),e.deprecationSummary&&e.deprecationSummary.length?n("Aside",{attrs:{kind:"deprecated"}},[n("ContentNode",{attrs:{content:e.deprecationSummary}})],1):e._e(),e.downloadNotAvailableSummary&&e.downloadNotAvailableSummary.length?n("Aside",{attrs:{kind:"note"}},[n("ContentNode",{attrs:{content:e.downloadNotAvailableSummary}})],1):e._e()],1),e.primaryContentSectionsSanitized&&e.primaryContentSectionsSanitized.length?n("PrimaryContent",{class:{"with-border":!e.enhanceBackground},attrs:{conformance:e.conformance,source:e.remoteSource,sections:e.primaryContentSectionsSanitized}}):e._e(),e.shouldShowViewMoreLink?n("ViewMore",{attrs:{url:e.viewMoreLink}}):e._e()],1):e._e(),e.shouldRenderTopicSection?n("Topics",{attrs:{sections:e.topicSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,topicStyle:e.topicSectionsStyle}}):e._e(),e.defaultImplementationsSections&&!e.enableMinimized?n("DefaultImplementations",{attrs:{sections:e.defaultImplementationsSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}}):e._e(),e.relationshipsSections&&!e.enableMinimized?n("Relationships",{attrs:{sections:e.relationshipsSections}}):e._e(),e.seeAlsoSections&&!e.enableMinimized?n("SeeAlso",{attrs:{sections:e.seeAlsoSections}}):e._e()],1),e.enableOnThisPageNav?[n("OnThisPageStickyContainer",{directives:[{name:"show",rawName:"v-show",value:e.isOnThisPageNavVisible,expression:"isOnThisPageNavVisible"}]},[e.topicState.onThisPageSections.length>2?n("OnThisPageNav"):e._e()],1)]:e._e()],2),!e.isTargetIDE&&e.hasBetaContent?n("BetaLegalText"):e._e()],1),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" "+e._s(e.$t("documentation.current-page",{title:e.pageTitle}))+" ")])],1)},$=[],O=n("8649"),D=n("bf08"),P=n("d26a"),L=n("748c"),A=n("e425"),N=n("e3ab"),E=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"betainfo"},[n("div",{staticClass:"betainfo-container"},[n("GridRow",[n("GridColumn",{attrs:{span:{large:12}}},[n("p",{staticClass:"betainfo-label"},[e._v(e._s(e.$t("metadata.beta.software")))]),n("div",{staticClass:"betainfo-content"},[e._t("content",(function(){return[n("p",[e._v(e._s(e.$t("metadata.beta.legal")))])]}))],2),e._t("after")],2)],1)],1)])},j=[],B=n("0f00"),R=n("620a"),M={name:"BetaLegalText",components:{GridColumn:R["a"],GridRow:B["a"]}},z=M,K=(n("9cea"),n("2877")),q=Object(K["a"])(z,E,j,!1,null,"e8fd2a92",null),F=q.exports,H=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"language",attrs:{role:"complementary","aria-label":e.$t("language")}},[n("Title",[e._v(e._s(e.$t("formats.colon",{content:e.$t("language")})))]),n("div",{staticClass:"language-list"},[n("LanguageSwitcherLink",{staticClass:"language-option swift",class:{active:e.swift.active},attrs:{url:e.swift.active?null:e.swift.url},on:{click:function(t){return e.chooseLanguage(e.swift)}}},[e._v(" "+e._s(e.swift.name)+" ")]),n("LanguageSwitcherLink",{staticClass:"language-option objc",class:{active:e.objc.active},attrs:{url:e.objc.active?null:e.objc.url},on:{click:function(t){return e.chooseLanguage(e.objc)}}},[e._v(" "+e._s(e.objc.name)+" ")])],1)],1)},V=[],W=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.url?n("a",{attrs:{href:e.url},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[e._t("default")],2):n("span",[e._t("default")],2)},U=[],G={name:"LanguageSwitcherLink",props:{url:[String,Object]}},Q=G,X=Object(K["a"])(Q,W,U,!1,null,null,null),Y=X.exports,J=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"summary-section"},[e._t("default")],2)},Z=[],ee={name:"Section"},te=ee,ne=(n("1347"),Object(K["a"])(te,J,Z,!1,null,"3aa6f694",null)),ie=ne.exports,ae=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("p",{staticClass:"title"},[e._t("default")],2)},se=[],re={name:"Title"},oe=re,le=(n("ede5"),Object(K["a"])(oe,ae,se,!1,null,"6796f6ea",null)),ce=le.exports,de={name:"LanguageSwitcher",components:{LanguageSwitcherLink:Y,Section:ie,Title:ce},inject:{isTargetIDE:{default:()=>!1},store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!0},swiftPath:{type:String,required:!0}},computed:{objc:({interfaceLanguage:e,objcPath:t,$route:{query:n}})=>({...O["a"].objectiveC,active:O["a"].objectiveC.key.api===e,url:Object(P["b"])(Object(L["d"])(t),{...n,language:O["a"].objectiveC.key.url})}),swift:({interfaceLanguage:e,swiftPath:t,$route:{query:n}})=>({...O["a"].swift,active:O["a"].swift.key.api===e,url:Object(P["b"])(Object(L["d"])(t),{...n,language:void 0})})},methods:{chooseLanguage(e){this.isTargetIDE||this.store.setPreferredLanguage(e.key.url),this.$router.push(e.url)}}},ue=de,he=(n("a34a"),Object(K["a"])(ue,H,V,!1,null,"1a36493d",null)),pe=he.exports,ge=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"view-more-link"},[n("router-link",{staticClass:"base-link",attrs:{to:e.url}},[e._t("default",(function(){return[e._v("View more")]}))],2)],1)},fe=[],me={name:"ViewMore",props:{url:{type:String,required:!0}}},ye=me,ve=(n("2591"),Object(K["a"])(ye,ge,fe,!1,null,"0d14b62a",null)),be=ve.exports,Te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["documentation-hero",{"documentation-hero--disabled":!e.enhanceBackground,"theme-dark":e.enhanceBackground}],style:e.styles},[n("div",{staticClass:"icon"},[e.enhanceBackground?n("TopicTypeIcon",{key:"first",staticClass:"background-icon first-icon",attrs:{type:e.type,"image-override":e.iconOverride,"with-colors":""}}):e._e()],1),n("div",{staticClass:"documentation-hero__above-content"},[e._t("above-content")],2),n("div",{staticClass:"documentation-hero__content",class:{"short-hero":e.shortHero,"extra-bottom-padding":e.shouldShowLanguageSwitcher,"minimized-hero":e.enableMinimized}},[e._t("default")],2)])},Se=[],_e=n("f12c"),Ce=n("31d4"),ke=n("2cae");const we={red:"red",orange:"orange",yellow:"yellow",blue:"blue",green:"green",purple:"purple",gray:"gray"};var Ie={name:"DocumentationHero",components:{TopicTypeIcon:_e["a"]},props:{role:{type:String,required:!0},enhanceBackground:{type:Boolean,required:!0},enableMinimized:{type:Boolean,default:!1},shortHero:{type:Boolean,required:!0},shouldShowLanguageSwitcher:{type:Boolean,required:!0},iconOverride:{type:Object,required:!1},standardColorIdentifier:{type:String,required:!1,validator:e=>Object.prototype.hasOwnProperty.call(we,e)}},computed:{color:({type:e})=>ke["b"][Ce["a"][e]||e]||ke["a"].teal,styles:({color:e,standardColorIdentifier:t})=>({"--accent-color":`var(--color-documentation-intro-accent, var(--color-type-icon-${e}))`,"--standard-accent-color":t&&`var(--color-standard-${t}-documentation-intro-fill, var(--color-standard-${t}))`}),type:({role:e})=>{switch(e){case k["a"].collection:return Ce["b"].module;case k["a"].collectionGroup:return Ce["b"].collection;default:return e}}}},xe=Ie,$e=(n("c80b"),Object(K["a"])(xe,Te,Se,!1,null,"6540c364",null)),Oe=$e.exports,De=n("7b1f"),Pe=n("12b1"),Le=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"OnThisPageNav"},[n("ul",{staticClass:"items"},e._l(e.onThisPageSections,(function(t){return n("li",{key:t.anchor,class:e.getItemClasses(t)},[n("router-link",{staticClass:"base-link",attrs:{to:t.url},nativeOn:{click:function(n){return e.handleFocusAndScroll(t.anchor)}}},[n(e.getWrapperComponent(t),{tag:"component"},[e._v(" "+e._s(e.getTextContent(t))+" ")])],1)],1)})),0)])},Ae=[];function Ne(e,t){let n,i;return function(...a){const s=this;if(!i)return e.apply(s,a),void(i=Date.now());clearTimeout(n),n=setTimeout(()=>{Date.now()-i>=t&&(e.apply(s,a),i=Date.now())},t-(Date.now()-i))}}var Ee=n("3908"),je=n("8a61"),Be={name:"OnThisPageNav",components:{WordBreak:De["a"]},mixins:[je["a"]],inject:{store:{default(){return{state:{onThisPageSections:[],currentPageAnchor:null}}}}},computed:{onThisPageSections:({store:e,$route:t})=>e.state.onThisPageSections.map(e=>({...e,url:Object(P["b"])("#"+e.anchor,t.query)})),currentPageAnchor:({store:e})=>e.state.currentPageAnchor},async mounted(){window.addEventListener("scroll",this.onScroll,!1),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("scroll",this.onScroll)})},watch:{onThisPageSections:{immediate:!0,async handler(){await Object(Ee["b"])(8),this.onScroll()}}},methods:{onScroll:Ne((function(){const e=this.onThisPageSections.length;if(!e)return;const{scrollY:t,innerHeight:n}=window,{scrollHeight:i}=document.body,a=t+n>=i,s=t<=0,r=.3*n+t;if(s||a){const t=s?0:e-1;return void this.store.setCurrentPageSection(this.onThisPageSections[t].anchor)}let o,l,c=null;for(o=0;oObject(Ze["c"])(["theme","code","indentationWidth"],it),formattedTokens:({language:e,formattedSwiftTokens:t,tokens:n})=>e===O["a"].swift.key.api?t:n,formattedSwiftTokens:({indentationWidth:e,tokens:t})=>{const n=" ".repeat(e);let i=!1;const a=[];let s=0,r=null,o=null,l=null,c=null,d=0,u=null;while(se===nt.attribute||e===nt.externalParam;e.text&&e.text.endsWith(", ")&&g&&f(g)&&(h.text=`${e.text.trimEnd()}\n${n}`,i=!0),a.push(h),s+=1}if(i&&null!==r){const e=a[r].text;a[r].text=`${e}\n${n}`}if(i&&null!==l){const e=a[l].text,t=e.slice(0,c),n=e.slice(c),i=`${t}\n${n}`;a[l].text=i}return a},hasMultipleLines({formattedTokens:e}){return e.reduce((t,n,i)=>{let a=/\n/g;return i===e.length-1&&(a=/\n(?!$)/g),n.text?t+(n.text.match(a)||[]).length:t},1)>=2}},methods:{propsFor(e){return{kind:e.kind,identifier:e.identifier,text:e.text,tokens:e.tokens}},handleWindowResize(){this.displaysMultipleLines=Object(Ye["a"])(this.$refs.declarationGroup)}},async mounted(){window.addEventListener("resize",this.handleWindowResize),this.language===O["a"].objectiveC.key.api&&(await this.$nextTick(),Xe(this.$refs.code.$el,this.language)),this.handleWindowResize()},beforeDestroy(){window.removeEventListener("resize",this.handleWindowResize)}},st=at,rt=(n("72a9"),Object(K["a"])(st,Ue,Ge,!1,null,"d22a3f50",null)),ot=rt.exports,lt=n("5d59"),ct={name:"DeclarationGroup",components:{Source:ot},mixins:[lt["a"]],inject:{languages:{default:()=>new Set},interfaceLanguage:{default:()=>O["a"].swift.key.api},symbolKind:{default:()=>{}}},props:{declaration:{type:Object,required:!0},shouldCaption:{type:Boolean,default:!1},changeType:{type:String,required:!1}},computed:{classes:({changeType:e,multipleLinesClass:t,displaysMultipleLinesAfterAPIChanges:n})=>({["declaration-group--changed declaration-group--"+e]:e,[t]:n}),caption(){return this.declaration.platforms.join(", ")},isSwift:({interfaceLanguage:e})=>e===O["a"].swift.key.api}},dt=ct,ut=(n("c4bc"),Object(K["a"])(dt,Ve,We,!1,null,"4f51d8d2",null)),ht=ut.exports,pt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"declaration-diff"},[n("div",{staticClass:"declaration-diff-current"},[n("div",{staticClass:"declaration-diff-version"},[e._v("Current")]),e._l(e.currentDeclarations,(function(t,i){return n("DeclarationGroup",{key:i,attrs:{declaration:t,"should-caption":e.currentDeclarations.length>1,changeType:e.changeType}})}))],2),n("div",{staticClass:"declaration-diff-previous"},[n("div",{staticClass:"declaration-diff-version"},[e._v("Previous")]),e._l(e.previousDeclarations,(function(t,i){return n("DeclarationGroup",{key:i,attrs:{declaration:t,"should-caption":e.previousDeclarations.length>1,changeType:e.changeType}})}))],2)])},gt=[],ft={name:"DeclarationDiff",components:{DeclarationGroup:ht},props:{changes:{type:Object,required:!0},changeType:{type:String,required:!0}},computed:{previousDeclarations:({changes:e})=>e.declaration.previous||[],currentDeclarations:({changes:e})=>e.declaration.new||[]}},mt=ft,yt=(n("7a2c"),Object(K["a"])(mt,pt,gt,!1,null,"b3e21c4a",null)),vt=yt.exports,bt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("a",{staticClass:"declaration-source-link",attrs:{href:e.url,title:"Open source file for "+e.fileName,target:"_blank"}},[e.isSwiftFile?n("SwiftFileIcon",{staticClass:"declaration-icon"}):e._e(),n("WordBreak",[e._v(e._s(e.fileName))])],1)},Tt=[],St=n("a88f"),_t={name:"DeclarationSourceLink",components:{WordBreak:De["a"],SwiftFileIcon:St["a"]},props:{url:{type:String,required:!0},fileName:{type:String,required:!0}},computed:{isSwiftFile:({fileName:e})=>e.endsWith(".swift")}},Ct=_t,kt=(n("e615"),Object(K["a"])(Ct,bt,Tt,!1,null,"5863919c",null)),wt=kt.exports,It=n("b5cf"),xt={name:"Declaration",components:{DeclarationDiff:vt,DeclarationGroup:ht,DeclarationSourceLink:wt,ConditionalConstraints:He["a"]},constants:{ChangeTypes:It["c"],multipleLinesClass:Je["a"]},inject:["identifier","store"],data:({store:{state:e}})=>({state:e,multipleLinesClass:Je["a"]}),props:{conformance:{type:Object,required:!1},source:{type:Object,required:!1},declarations:{type:Array,required:!0}},computed:{hasPlatformVariants(){return this.declarations.length>1},hasModifiedChanges({declarationChanges:e}){if(!e||!e.declaration)return!1;const t=e.declaration;return!(!(t.new||[]).length||!(t.previous||[]).length)},declarationChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t],changeType:({declarationChanges:e,hasModifiedChanges:t})=>{if(!e)return;const n=e.declaration;return n?t?It["c"].modified:e.change:e.change===It["c"].added?It["c"].added:void 0},changeClasses:({changeType:e})=>({["changed changed-"+e]:e})}},$t=xt,Ot=(n("39d3"),Object(K["a"])($t,qe,Fe,!1,null,"2ab6251b",null)),Dt=Ot.exports,Pt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentNode",e._b({staticClass:"abstract"},"ContentNode",e.$props,!1))},Lt=[],At=n("6359"),Nt={name:"Abstract",components:{ContentNode:At["a"]},props:At["a"].props},Et=Nt,jt=(n("374e"),Object(K["a"])(Et,Pt,Lt,!1,null,"702ec04e",null)),Bt=jt.exports,Rt=n("c081"),Mt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.$t(e.contentSectionData.title),isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections,wrapTitle:!0}})},zt=[];const Kt={topics:{title:"sections.topics",anchor:"topics",level:2},defaultImplementations:{title:"sections.default-implementations",anchor:"default-implementations",level:2},relationships:{title:"sections.relationships",anchor:"relationships",level:2},seeAlso:{title:"sections.see-also",anchor:"see-also",level:2}},qt={[Ke.details]:{title:"sections.details",anchor:"details",level:2},[Ke.parameters]:{title:"sections.parameters",anchor:"parameters",level:2},[Ke.possibleValues]:{title:"sections.possible-values",anchor:"possibleValues",level:2}};var Ft=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentTable",{attrs:{anchor:e.anchor,title:e.title}},e._l(e.sectionsWithTopics,(function(t,i){return n("ContentTableSection",{key:t.title+"_"+i,class:{"no-title":!t.title},attrs:{title:t.title,anchor:t.anchor},scopedSlots:e._u([t.title&&e.wrapTitle?{key:"title",fn:function(i){var a=i.className;return[n("LinkableHeading",{class:a,attrs:{level:3,anchor:t.anchor}},[n("WordBreak",[e._v(e._s(t.title))])],1)]}}:null],null,!0)},[t.abstract?n("template",{slot:"abstract"},[n("ContentNode",{attrs:{content:t.abstract}})],1):e._e(),t.discussion?n("template",{slot:"discussion"},[n("ContentNode",{attrs:{content:t.discussion.content}})],1):e._e(),e.shouldRenderList?e._l(t.topics,(function(t){return n("TopicsLinkBlock",{key:t.identifier,staticClass:"topic",attrs:{topic:t,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}})})):n("TopicsLinkCardGrid",{staticClass:"topic",attrs:{items:t.topics,topicStyle:e.topicStyle}})],2)})),1)},Ht=[],Vt=n("70fb"),Wt=n("5dcc"),Ut=n("2f34"),Gt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"contenttable alt-light"},[n("div",{staticClass:"container"},[n("LinkableHeading",{staticClass:"title",attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),e._t("default")],2)])},Qt=[],Xt={name:"ContentTable",components:{LinkableHeading:Wt["a"]},props:{anchor:{type:String,required:!0},title:{type:String,required:!0}}},Yt=Xt,Jt=(n("e81e"),Object(K["a"])(Yt,Gt,Qt,!1,null,"6e075935",null)),Zt=Jt.exports,en=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"contenttable-section"},[n("div",{staticClass:"section-title"},[e._t("title",(function(){return[e.title?n("LinkableHeading",{class:e.className,attrs:{level:3,anchor:e.anchorComputed}},[e._v(e._s(e.title))]):e._e()]}),{className:e.className})],2),n("div",{staticClass:"section-content"},[e._t("abstract"),e._t("discussion"),e._t("default")],2)])},tn=[],nn=n("002d");const an="contenttable-title";var sn={name:"ContentTableSection",components:{LinkableHeading:Wt["a"]},props:{title:{type:String,required:!1},anchor:{type:String,default:null}},computed:{anchorComputed:({title:e,anchor:t})=>t||Object(nn["a"])(e||""),className:()=>an}},rn=sn,on=(n("46c5"),Object(K["a"])(rn,en,tn,!1,null,"4aae1079",null)),ln=on.exports,cn=n("2a18"),dn={name:"TopicsTable",mixins:[Ut["a"]],components:{TopicsLinkCardGrid:Vt["a"],WordBreak:De["a"],ContentTable:Zt,TopicsLinkBlock:cn["default"],ContentNode:At["a"],ContentTableSection:ln,LinkableHeading:Wt["a"]},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:{type:Array,required:!0},title:{type:String,required:!1,default(){return"Topics"}},anchor:{type:String,required:!1,default(){return"topics"}},wrapTitle:{type:Boolean,default:!1},topicStyle:{type:String,default:Pe["a"].list}},computed:{shouldRenderList:({topicStyle:e})=>e===Pe["a"].list,sectionsWithTopics(){return this.sections.map(e=>({...e,topics:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},un=dn,hn=(n("00f2"),Object(K["a"])(un,Ft,Ht,!1,null,"3ccf02e9",null)),pn=hn.exports,gn={name:"DefaultImplementations",components:{TopicsTable:pn},computed:{contentSectionData:()=>Kt.defaultImplementations},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pn.props.sections}},fn=gn,mn=Object(K["a"])(fn,Mt,zt,!1,null,null,null),yn=mn.exports,vn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"primary-content"},e._l(e.sections,(function(t,i){return n(e.componentFor(t),e._b({key:i,tag:"component"},"component",e.propsFor(t),!1))})),1)},bn=[],Tn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.$t(e.contentSectionData.title))+" ")]),n("dl",{staticClass:"datalist"},[e._l(e.values,(function(t){return[n("dt",{key:t.name+":name",staticClass:"param-name"},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.name))])],1),t.content?n("dd",{key:t.name+":content",staticClass:"value-content"},[n("ContentNode",{attrs:{content:t.content}})],1):e._e()]}))],2)],1)},Sn=[],_n=n("5677"),Cn={name:"PossibleValues",components:{ContentNode:_n["default"],LinkableHeading:Wt["a"],WordBreak:De["a"]},props:{values:{type:Array,required:!0}},computed:{contentSectionData:()=>qt[Ke.possibleValues]}},kn=Cn,wn=(n("719b"),Object(K["a"])(kn,Tn,Sn,!1,null,null,null)),In=wn.exports,xn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("DeclarationSource",{attrs:{tokens:e.tokens}})],1)},$n=[],On={name:"RestEndpoint",components:{DeclarationSource:ot,LinkableHeading:Wt["a"]},props:{title:{type:String,required:!0},tokens:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e)}},Dn=On,Pn=Object(K["a"])(Dn,xn,$n,!1,null,null,null),Ln=Pn.exports,An=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"details"},[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.$t(e.contentSectionData.title))+" ")]),n("dl",[e.isSymbol?[n("dt",{key:e.details.name+":name",staticClass:"detail-type"},[e._v(" "+e._s(e.$t("metadata.details.name"))+" ")]),n("dd",{key:e.details.ideTitle+":content",staticClass:"detail-content"},[e._v(" "+e._s(e.details.ideTitle)+" ")])]:e._e(),e.isTitle?[n("dt",{key:e.details.name+":key",staticClass:"detail-type"},[e._v(" "+e._s(e.$t("metadata.details.key"))+" ")]),n("dd",{key:e.details.ideTitle+":content",staticClass:"detail-content"},[e._v(" "+e._s(e.details.name)+" ")])]:e._e(),n("dt",{key:e.details.name+":type",staticClass:"detail-type"},[e._v(" "+e._s(e.$t("metadata.details.type"))+" ")]),n("dd",{staticClass:"detail-content"},[n("PropertyListKeyType",{attrs:{types:e.details.value}})],1)],2)],1)},Nn=[],En=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"type"},[e._v(e._s(e.typeOutput))])},jn=[],Bn={name:"PropertyListKeyType",props:{types:{type:Array,required:!0}},computed:{englishTypes(){return this.types.map(({arrayMode:e,baseType:t="*"})=>e?"array of "+this.pluralizeKeyType(t):t)},typeOutput(){return this.englishTypes.length>2?[this.englishTypes.slice(0,this.englishTypes.length-1).join(", "),this.englishTypes[this.englishTypes.length-1]].join(", or "):this.englishTypes.join(" or ")}},methods:{pluralizeKeyType(e){switch(e){case"dictionary":return"dictionaries";case"array":case"number":case"string":return e+"s";default:return e}}}},Rn=Bn,Mn=(n("f7c0"),Object(K["a"])(Rn,En,jn,!1,null,"791bac44",null)),zn=Mn.exports,Kn={name:"PropertyListKeyDetails",components:{PropertyListKeyType:zn,LinkableHeading:Wt["a"]},props:{details:{type:Object,required:!0}},computed:{contentSectionData:()=>qt[Ke.details],isTitle(){return"title"===this.details.titleStyle&&this.details.ideTitle},isSymbol(){return"symbol"===this.details.titleStyle&&this.details.ideTitle}}},qn=Kn,Fn=(n("45b2"),Object(K["a"])(qn,An,Nn,!1,null,"d66cd00c",null)),Hn=Fn.exports,Vn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",{staticClass:"parameters"},[n("LinkableHeading",{attrs:{anchor:e.contentSectionData.anchor}},[e._v(" "+e._s(e.$t(e.contentSectionData.title))+" ")]),n("dl",[e._l(e.parameters,(function(t){return[n("dt",{key:t.name+":name",staticClass:"param-name"},[n("code",[e._v(e._s(t.name))])]),n("dd",{key:t.name+":content",staticClass:"param-content"},[n("ContentNode",{attrs:{content:t.content}})],1)]}))],2)],1)},Wn=[],Un={name:"Parameters",components:{ContentNode:At["a"],LinkableHeading:Wt["a"]},props:{parameters:{type:Array,required:!0}},computed:{contentSectionData:()=>qt[Ke.parameters]}},Gn=Un,Qn=(n("1a39"),Object(K["a"])(Gn,Vn,Wn,!1,null,"53cac581",null)),Xn=Qn.exports,Yn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{staticClass:"property-table",attrs:{parameters:e.properties,changes:e.propertyChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes,o=t.deprecated;return[n("div",{staticClass:"property-name",class:{deprecated:o}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),e.shouldShiftType({name:i,content:s})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:r.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.type,s=t.attributes,r=t.content,o=t.required,l=t.changes,c=t.deprecated,d=t.readOnly;return[e.shouldShiftType({name:i,content:r})?n("PossiblyChangedType",{attrs:{type:a,changes:l.type}}):e._e(),c?[n("Badge",{staticClass:"property-deprecated",attrs:{variant:"deprecated"}}),e._v("  ")]:e._e(),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:o}},[e._v(" "+e._s(e.$t("formats.parenthesis",{content:e.$t("required")}))+" ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:d}},[e._v(" "+e._s(e.$t("formats.parenthesis",{content:e.$t("read-only")}))+" ")]),r?n("ContentNode",{attrs:{content:r}}):e._e(),n("ParameterAttributes",{attrs:{attributes:s,changes:l.attributes}})]}}])})],1)},Jn=[],Zn={inject:["identifier","store"],data:({store:{state:e}})=>({state:e}),computed:{apiChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t]}},ei=n("a0fd"),ti=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"parameters-table"},e._l(e.parameters,(function(t){return n("Row",{key:t[e.keyBy],staticClass:"param",class:e.changedClasses(t[e.keyBy])},[n("Column",{staticClass:"param-symbol",attrs:{span:{large:3,small:12}}},[e._t("symbol",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2),n("Column",{staticClass:"param-content",attrs:{span:{large:9,small:12}}},[e._t("description",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2)],1)})),1)},ni=[],ii={name:"ParametersTable",components:{Row:B["a"],Column:R["a"]},props:{parameters:{type:Array,required:!0},changes:{type:Object,default:()=>({})},keyBy:{type:String,default:"name"}},methods:{getProps(e,t={}){return{...e,changes:t}},changedClasses(e){const{changes:t}=this,{change:n}=t[e]||{};return{["changed changed-"+n]:n}}}},ai=ii,si=(n("5561"),Object(K["a"])(ai,ti,ni,!1,null,"3f89f723",null)),ri=si.exports,oi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"parameter-attributes"},[e.shouldRender(e.AttributeKind.default)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.default")}))),n("code",[e._v(e._s(i.value))])]}}],null,!1,2998238055)},"ParameterMetaAttribute",{kind:e.AttributeKind.default,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimum)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.minimum")}))),n("code",[e._v(e._s(i.value))])]}}],null,!1,859757818)},"ParameterMetaAttribute",{kind:e.AttributeKind.minimum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimumExclusive)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.minimum")}))),n("code",[e._v("> "+e._s(i.value))])]}}],null,!1,770347247)},"ParameterMetaAttribute",{kind:e.AttributeKind.minimumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximum)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.maximum")}))),n("code",[e._v(e._s(i.value))])]}}],null,!1,1190666532)},"ParameterMetaAttribute",{kind:e.AttributeKind.maximum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximumExclusive)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:i.title||e.$t("parameters.maximum")}))),n("code",[e._v("< "+e._s(i.value))])]}}],null,!1,1156490099)},"ParameterMetaAttribute",{kind:e.AttributeKind.maximumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.allowedTypes)?n("ParameterMetaAttribute",e._b({scopedSlots:e._u([{key:"default",fn:function(t){var i=t.attribute;return[e._v(" "+e._s(e.$t("formats.colon",{content:e.$tc("parameters.possible-types",e.fallbackToValues(i).length)}))),n("code",[e._l(e.fallbackToValues(i),(function(t,a){return[e._l(t,(function(t,s){return[n("DeclarationToken",e._b({key:a+"-"+s},"DeclarationToken",t,!1)),a+1({new:null,previous:null})},value:{type:[Object,Array,String,Boolean],default:null},wrapChanges:{type:Boolean,default:!0},renderSingleChange:{type:Boolean,default:!1}},render(e){const{value:t,changes:n={},wrapChanges:i,renderSingleChange:a}=this,{new:s,previous:r}=n,o=(t,n)=>{const a=this.$scopedSlots.default({value:t});return n&&i?e("div",{class:n},[a]):a?a[0]:null};if(s||r){const t=o(s,ui.added),n=o(r,ui.removed);return a?s&&!r?t:n:e("div",{class:"property-changegroup"},[s?t:"",r?n:""])}return o(t)}},fi=gi,mi=Object(K["a"])(fi,hi,pi,!1,null,null,null),yi=mi.exports,vi={name:"ParameterMetaAttribute",components:{RenderChanged:yi},props:{kind:{type:String,required:!0},attributes:{type:Object,required:!0},changes:{type:Object,default:()=>({})}}},bi=vi,Ti=(n("2822"),Object(K["a"])(bi,ci,di,!1,null,"8590589e",null)),Si=Ti.exports;const _i={allowedTypes:"allowedTypes",allowedValues:"allowedValues",default:"default",maximum:"maximum",maximumExclusive:"maximumExclusive",minimum:"minimum",minimumExclusive:"minimumExclusive"};var Ci={name:"ParameterAttributes",components:{ParameterMetaAttribute:Si,DeclarationToken:tt["a"]},constants:{AttributeKind:_i},props:{attributes:{type:Array,default:()=>[]},changes:{type:Object,default:()=>({})}},computed:{AttributeKind:()=>_i,attributesObject:({attributes:e})=>e.reduce((e,t)=>({...e,[t.kind]:t}),{})},methods:{shouldRender(e){return Object.prototype.hasOwnProperty.call(this.attributesObject,e)},fallbackToValues:e=>{const t=e||[];return Array.isArray(t)?t:t.values}}},ki=Ci,wi=Object(K["a"])(ki,oi,li,!1,null,null,null),Ii=wi.exports,xi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{renderSingleChange:"",value:e.value,changes:e.changes},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return i?n("span",{staticClass:"property-text"},[e._t("default")],2):e._e()}}],null,!0)})},$i=[],Oi={name:"PossiblyChangedTextAttribute",components:{RenderChanged:yi},props:{changes:{type:Object,required:!1},value:{type:Boolean,default:!1}}},Di=Oi,Pi=(n("5c57"),Object(K["a"])(Di,xi,$i,!1,null,null,null)),Li=Pi.exports,Ai=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{value:e.type,wrapChanges:!1,changes:e.changes},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return n("DeclarationTokenGroup",{staticClass:"property-metadata property-type",attrs:{type:e.getValues(i)}})}}])})},Ni=[],Ei=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.type&&e.type.length?n("div",[n("code",e._l(e.type,(function(t,i){return n("DeclarationToken",e._b({key:i},"DeclarationToken",t,!1))})),1)]):e._e()},ji=[],Bi={name:"DeclarationTokenGroup",components:{DeclarationToken:tt["a"]},props:{type:{type:Array,default:()=>[],required:!1}}},Ri=Bi,Mi=Object(K["a"])(Ri,Ei,ji,!1,null,null,null),zi=Mi.exports,Ki={name:"PossiblyChangedType",components:{DeclarationTokenGroup:zi,RenderChanged:yi},props:{type:{type:Array,required:!0},changes:{type:Object,required:!1}},methods:{getValues(e){return Array.isArray(e)?e:e.values}}},qi=Ki,Fi=(n("2f87"),Object(K["a"])(qi,Ai,Ni,!1,null,"0a648a1e",null)),Hi=Fi.exports,Vi={name:"PropertyTable",mixins:[Zn],components:{Badge:ei["a"],WordBreak:De["a"],PossiblyChangedTextAttribute:Li,PossiblyChangedType:Hi,ParameterAttributes:Ii,ContentNode:At["a"],ParametersTable:ri,LinkableHeading:Wt["a"]},props:{title:{type:String,required:!0},properties:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e),propertyChanges:({apiChanges:e})=>(e||{}).properties},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},Wi=Vi,Ui=(n("d71b"),Object(K["a"])(Wi,Yn,Jn,!1,null,"310f0b2c",null)),Gi=Ui.exports,Qi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:[e.bodyParam],changes:e.bodyChanges,keyBy:"key"},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.type,a=t.content,s=t.changes,r=t.name;return[e.shouldShiftType({name:r,content:a})?e._e():n("PossiblyChangedType",{attrs:{type:i,changes:s.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.content,s=t.mimeType,r=t.type,o=t.changes;return[e.shouldShiftType({name:i,content:a})?n("PossiblyChangedType",{attrs:{type:r,changes:o.type}}):e._e(),a?n("ContentNode",{attrs:{content:a}}):e._e(),s?n("PossiblyChangedMimetype",{attrs:{mimetype:s,changes:o.mimetype,change:o.change}}):e._e()]}}])}),e.parts.length?[n("h3",[e._v(e._s(e.$t("sections.parts")))]),n("ParametersTable",{staticClass:"parts",attrs:{parameters:e.parts,changes:e.partsChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes;return[n("div",{staticClass:"part-name"},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),s?n("PossiblyChangedType",{attrs:{type:a,changes:r.type}}):e._e()]}},{key:"description",fn:function(t){var i=t.content,a=t.mimeType,s=t.required,r=t.type,o=t.attributes,l=t.changes,c=t.readOnly;return[n("div",[i?e._e():n("PossiblyChangedType",{attrs:{type:r,changes:l.type}}),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:s}},[e._v("(Required) ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:c}},[e._v("(Read only) ")]),i?n("ContentNode",{attrs:{content:i}}):e._e(),a?n("PossiblyChangedMimetype",{attrs:{mimetype:a,changes:l.mimetype,change:l.change}}):e._e(),n("ParameterAttributes",{attrs:{attributes:o,changes:l.attributes}})],1)]}}],null,!1,1779956822)})]:e._e()],2)},Xi=[],Yi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("RenderChanged",{attrs:{changes:e.changeValues,value:e.mimetype},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.value;return n("div",{staticClass:"response-mimetype"},[e._v(" "+e._s(e.$t("content-type",{value:i}))+" ")])}}])})},Ji=[],Zi={name:"PossiblyChangedMimetype",components:{RenderChanged:yi},props:{mimetype:{type:String,required:!0},changes:{type:[Object,String],required:!1},change:{type:String,required:!1}},computed:{changeValues({change:e,changes:t}){return e===It["c"].modified&&"string"!==typeof t?t:void 0}}},ea=Zi,ta=(n("d1ac"),Object(K["a"])(ea,Yi,Ji,!1,null,"20293786",null)),na=ta.exports;const ia="restRequestBody";var aa={name:"RestBody",mixins:[Zn],components:{PossiblyChangedMimetype:na,PossiblyChangedTextAttribute:Li,PossiblyChangedType:Hi,WordBreak:De["a"],ParameterAttributes:Ii,ContentNode:At["a"],ParametersTable:ri,LinkableHeading:Wt["a"]},constants:{ChangesKey:ia},props:{bodyContentType:{type:Array,required:!0},content:{type:Array},mimeType:{type:String,required:!0},parts:{type:Array,default:()=>[]},title:{type:String,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e),bodyParam:({bodyContentType:e,content:t,mimeType:n})=>({key:ia,content:t,mimeType:n,type:e}),bodyChanges:({apiChanges:e})=>e||{},partsChanges:({bodyChanges:e})=>(e[ia]||{}).parts},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},sa=aa,ra=(n("6a35"),Object(K["a"])(sa,Qi,Xi,!1,null,"021cd63d",null)),oa=ra.exports,la=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:e.parameters,changes:e.parameterChanges},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.changes,o=t.deprecated;return[n("div",{staticClass:"param-name",class:{deprecated:o}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(i))])],1),e.shouldShiftType({content:s,name:i})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:r.type}})]}},{key:"description",fn:function(t){var i=t.name,a=t.type,s=t.content,r=t.required,o=t.attributes,l=t.changes,c=t.deprecated,d=t.readOnly;return[n("div",[e.shouldShiftType({content:s,name:i})?n("PossiblyChangedType",{attrs:{type:a,changes:l.type}}):e._e(),c?[n("Badge",{staticClass:"param-deprecated",attrs:{variant:"deprecated"}}),e._v("  ")]:e._e(),n("PossiblyChangedTextAttribute",{attrs:{changes:l.required,value:r}},[e._v(" "+e._s(e.$t("formats.parenthesis",{content:e.$t("required")}))+" ")]),n("PossiblyChangedTextAttribute",{attrs:{changes:l.readOnly,value:d}},[e._v(" "+e._s(e.$t("formats.parenthesis",{content:e.$t("read-only")}))+" ")]),s?n("ContentNode",{attrs:{content:s}}):e._e(),n("ParameterAttributes",{attrs:{attributes:o,changes:l}})],2)]}}])})],1)},ca=[],da={name:"RestParameters",mixins:[Zn],components:{Badge:ei["a"],PossiblyChangedType:Hi,PossiblyChangedTextAttribute:Li,ParameterAttributes:Ii,WordBreak:De["a"],ContentNode:At["a"],ParametersTable:ri,LinkableHeading:Wt["a"]},props:{title:{type:String,required:!0},parameters:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e),parameterChanges:({apiChanges:e})=>(e||{}).restParameters},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},ua=da,ha=(n("eb6d"),Object(K["a"])(ua,la,ca,!1,null,"03478142",null)),pa=ha.exports,ga=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("section",[n("LinkableHeading",{attrs:{anchor:e.anchor}},[e._v(e._s(e.title))]),n("ParametersTable",{attrs:{parameters:e.responses,changes:e.propertyChanges,"key-by":"status"},scopedSlots:e._u([{key:"symbol",fn:function(t){var i=t.status,a=t.type,s=t.reason,r=t.content,o=t.changes;return[n("div",{staticClass:"response-name"},[n("code",[e._v(" "+e._s(i)+" "),n("span",{staticClass:"reason"},[e._v(e._s(s))])])]),e.shouldShiftType({content:r,reason:s,status:i})?e._e():n("PossiblyChangedType",{attrs:{type:a,changes:o.type}})]}},{key:"description",fn:function(t){var i=t.content,a=t.mimetype,s=t.reason,r=t.type,o=t.status,l=t.changes;return[e.shouldShiftType({content:i,reason:s,status:o})?n("PossiblyChangedType",{attrs:{type:r,changes:l.type}}):e._e(),n("div",{staticClass:"response-reason"},[n("code",[e._v(e._s(s))])]),i?n("ContentNode",{attrs:{content:i}}):e._e(),a?n("PossiblyChangedMimetype",{attrs:{mimetype:a,changes:l.mimetype,change:l.change}}):e._e()]}}])})],1)},fa=[],ma={name:"RestResponses",mixins:[Zn],components:{PossiblyChangedMimetype:na,PossiblyChangedType:Hi,ContentNode:At["a"],ParametersTable:ri,LinkableHeading:Wt["a"]},props:{title:{type:String,required:!0},responses:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(nn["a"])(e),propertyChanges:({apiChanges:e})=>(e||{}).restResponses},methods:{shouldShiftType:({content:e=[],reason:t,status:n})=>!(e.length||t)&&n}},ya=ma,va=(n("7649"),Object(K["a"])(ya,ga,fa,!1,null,"881189f4",null)),ba=va.exports,Ta={name:"PrimaryContent",components:{ContentNode:At["a"],Parameters:Xn,PropertyListKeyDetails:Hn,PropertyTable:Gi,RestBody:oa,RestEndpoint:Ln,RestParameters:pa,RestResponses:ba,PossibleValues:In},constants:{SectionKind:Ke},props:{sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(Ke,e))}},computed:{span(){return{large:9,medium:9,small:12}}},methods:{componentFor(e){return{[Ke.content]:At["a"],[Ke.details]:Hn,[Ke.parameters]:Xn,[Ke.properties]:Gi,[Ke.restBody]:oa,[Ke.restParameters]:pa,[Ke.restHeaders]:pa,[Ke.restCookies]:pa,[Ke.restEndpoint]:Ln,[Ke.restResponses]:ba,[Ke.possibleValues]:In}[e.kind]},propsFor(e){const{bodyContentType:t,content:n,details:i,items:a,kind:s,mimeType:r,parameters:o,title:l,tokens:c,values:d}=e;return{[Ke.content]:{content:n},[Ke.details]:{details:i},[Ke.parameters]:{parameters:o},[Ke.possibleValues]:{values:d},[Ke.properties]:{properties:a,title:l},[Ke.restBody]:{bodyContentType:t,content:n,mimeType:r,parts:o,title:l},[Ke.restCookies]:{parameters:a,title:l},[Ke.restEndpoint]:{tokens:c,title:l},[Ke.restHeaders]:{parameters:a,title:l},[Ke.restParameters]:{parameters:a,title:l},[Ke.restResponses]:{responses:a,title:l}}[s]}}},Sa=Ta,_a=(n("73a8"),Object(K["a"])(Sa,vn,bn,!1,null,"2baae7e0",null)),Ca=_a.exports,ka=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ContentTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.$t(e.contentSectionData.title)}},e._l(e.sectionsWithSymbols,(function(e){return n("Section",{key:e.type,attrs:{title:e.title,anchor:e.anchor}},[n("List",{attrs:{symbols:e.symbols,type:e.type}})],1)})),1)},wa=[],Ia=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{ref:"apiChangesDiff",staticClass:"relationships-list",class:e.classes},e._l(e.symbols,(function(t){return n("li",{key:t.identifier,staticClass:"relationships-item"},[t.url?n("router-link",{staticClass:"link",attrs:{to:e.buildUrl(t.url,e.$route.query)}},[n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.title))])],1):n("WordBreak",{attrs:{tag:"code"}},[e._v(e._s(t.title))]),t.conformance?n("ConditionalConstraints",{attrs:{constraints:t.conformance.constraints,prefix:t.conformance.conformancePrefix}}):e._e()],1)})),0)},xa=[];const $a=3,Oa={conformsTo:"conformance",inheritsFrom:"inheritance",inheritedBy:"inheritedBy"};var Da={name:"RelationshipsList",components:{ConditionalConstraints:He["a"],WordBreak:De["a"]},inject:["store","identifier"],mixins:[lt["b"],lt["a"]],props:{symbols:{type:Array,required:!0},type:{type:String,required:!0}},data(){return{state:this.store.state}},computed:{classes({changeType:e,multipleLinesClass:t,displaysMultipleLinesAfterAPIChanges:n}){return[{inline:this.shouldDisplayInline,column:!this.shouldDisplayInline,["changed changed-"+e]:!!e,[t]:n}]},hasAvailabilityConstraints(){return this.symbols.some(e=>!!(e.conformance||{}).constraints)},changes({identifier:e,state:{apiChanges:t}}){return(t||{})[e]||{}},changeType({changes:e,type:t}){const n=Oa[t];if(e.change!==It["c"].modified)return e.change;const i=e[n];if(!i)return;const a=(e,t)=>e.map((e,n)=>[e,t[n]]),s=a(i.previous,i.new).some(([e,t])=>e.content?0===e.content.length&&t.content.length>0:!!t.content);return s?It["c"].added:It["c"].modified},shouldDisplayInline(){const{hasAvailabilityConstraints:e,symbols:t}=this;return t.length<=$a&&!e}},methods:{buildUrl:P["b"]}},Pa=Da,La=(n("9475"),Object(K["a"])(Pa,Ia,xa,!1,null,"4c67b8c7",null)),Aa=La.exports,Na={name:"Relationships",mixins:[Ut["a"]],components:{ContentTable:Zt,List:Aa,Section:ln},props:{sections:{type:Array,required:!0}},computed:{contentSectionData:()=>Kt.relationships,sectionsWithSymbols(){return this.sections.map(e=>({...e,symbols:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},Ea=Na,ja=Object(K["a"])(Ea,ka,wa,!1,null,null,null),Ba=ja.exports,Ra=n("e8ea"),Ma=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Section",{staticClass:"availability",attrs:{role:"complementary","aria-label":e.$t("sections.availability")}},[e._l(e.technologies,(function(t){return n("Badge",{key:t,staticClass:"technology"},[n("TechnologyIcon",{staticClass:"tech-icon"}),e._v(" "+e._s(t)+" ")],1)})),e._l(e.platforms,(function(t){return n("Badge",{key:t.name,staticClass:"platform",class:e.changesClassesFor(t.name)},[n("AvailabilityRange",{attrs:{deprecatedAt:t.deprecatedAt,introducedAt:t.introducedAt,platformName:t.name}}),t.deprecatedAt?n("span",{staticClass:"deprecated"},[e._v(" "+e._s(e.$t("aside-kind.deprecated"))+" ")]):t.beta?n("span",{staticClass:"beta"},[e._v(e._s(e.$t("aside-kind.beta")))]):e._e()],1)}))],2)},za=[],Ka=n("3024"),qa=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{attrs:{role:"text","aria-label":e.ariaLabel,title:e.description}},[e._v(" "+e._s(e.text)+" ")])},Fa=[],Ha={name:"AvailabilityRange",props:{deprecatedAt:{type:String,required:!1},introducedAt:{type:String,required:!0},platformName:{type:String,required:!0}},computed:{ariaLabel(){const{deprecatedAt:e,description:t,text:n}=this;return[n].concat(e?this.$t("change-type.deprecated"):[]).concat(t).join(", ")},description(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?this.$t("availability.introduced-and-deprecated",{name:n,introducedAt:t,deprecatedAt:e}):this.$t("availability.available-on",{name:n,introducedAt:t})},text(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?`${n} ${t}–${e}`:`${n} ${t}+`}}},Va=Ha,Wa=Object(K["a"])(Va,qa,Fa,!1,null,null,null),Ua=Wa.exports,Ga={name:"Availability",mixins:[lt["b"]],inject:["identifier","store"],components:{Badge:ei["a"],AvailabilityRange:Ua,Section:ie,TechnologyIcon:Ka["a"]},props:{platforms:{type:Array,required:!0},technologies:{type:Array,required:!1}},data(){return{state:this.store.state}},methods:{changeFor(e){const{identifier:t,state:{apiChanges:n}}=this,{availability:i={}}=(n||{})[t]||{},a=i[e];if(a)return a.deprecated?It["c"].deprecated:a.introduced&&!a.introduced.previous?It["c"].added:It["c"].modified}}},Qa=Ga,Xa=(n("2d12"),Object(K["a"])(Qa,Ma,za,!1,null,"602d8130",null)),Ya=Xa.exports,Ja=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.$t(e.contentSectionData.title),isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections}})},Za=[],es={name:"SeeAlso",components:{TopicsTable:pn},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pn.props.sections},computed:{contentSectionData:()=>Kt.seeAlso}},ts=es,ns=Object(K["a"])(ts,Ja,Za,!1,null,null,null),is=ns.exports,as=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"topictitle"},[e.eyebrow?n("span",{staticClass:"eyebrow"},[e._v(e._s(e.eyebrow))]):e._e(),n("h1",{staticClass:"title"},[e._t("default"),e._t("after")],2)])},ss=[],rs={name:"Title",props:{eyebrow:{type:String,required:!1}}},os=rs,ls=(n("3396"),Object(K["a"])(os,as,ss,!1,null,"4492c658",null)),cs=ls.exports,ds=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TopicsTable",{attrs:{anchor:e.contentSectionData.anchor,title:e.$t(e.contentSectionData.title),isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections,topicStyle:e.topicStyle}})},us=[],hs={name:"Topics",components:{TopicsTable:pn},computed:{contentSectionData:()=>Kt.topics},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:pn.props.sections,topicStyle:{type:String,required:!0,validator:e=>Object.hasOwnProperty.call(Pe["a"],e)}}},ps=hs,gs=Object(K["a"])(ps,ds,us,!1,null,null,null),fs=gs.exports,ms=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"OnThisPageStickyContainer"},[e._t("default")],2)},ys=[],vs={name:"OnThisPageStickyContainer"},bs=vs,Ts=(n("1e0b"),Object(K["a"])(bs,ms,ys,!1,null,"1b6d0048",null)),Ss=Ts.exports;const _s=1050;var Cs={name:"DocumentationTopic",mixins:[D["a"]],constants:{ON_THIS_PAGE_CONTAINER_BREAKPOINT:_s},inject:{isTargetIDE:{default(){return!1}},store:{default(){return{reset(){},state:{}}}}},components:{Declaration:Dt,OnThisPageStickyContainer:Ss,OnThisPageNav:ze,DocumentationHero:Oe,Abstract:Bt,Aside:N["a"],BetaLegalText:F,ContentNode:At["a"],DefaultImplementations:yn,DownloadButton:Rt["a"],LanguageSwitcher:pe,PrimaryContent:Ca,Relationships:Ba,RequirementMetadata:Ra["a"],Availability:Ya,SeeAlso:is,Title:cs,Topics:fs,ViewMore:be,WordBreak:De["a"]},props:{abstract:{type:Array,required:!1},conformance:{type:Object,required:!1},defaultImplementationsSections:{type:Array,required:!1},downloadNotAvailableSummary:{type:Array,required:!1},deprecationSummary:{type:Array,required:!1},diffAvailability:{type:Object,required:!1},modules:{type:Array,required:!1},hasNoExpandedDocumentation:{type:Boolean,required:!1},hierarchy:{type:Object,default:()=>({})},interfaceLanguage:{type:String,required:!0},identifier:{type:String,required:!0},isRequirement:{type:Boolean,default:()=>!1},platforms:{type:Array,required:!1},primaryContentSections:{type:Array,required:!1},references:{type:Object,required:!0},relationshipsSections:{type:Array,required:!1},roleHeading:{type:String,required:!1},title:{type:String,required:!0},topicSections:{type:Array,required:!1},topicSectionsStyle:{type:String,default:Pe["a"].list},sampleCodeDownload:{type:Object,required:!1},seeAlsoSections:{type:Array,required:!1},languagePaths:{type:Object,default:()=>({})},tags:{type:Array,required:!0},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isSymbolBeta:{type:Boolean,required:!1},symbolKind:{type:String,default:""},role:{type:String,default:""},remoteSource:{type:Object,required:!1},pageImages:{type:Array,required:!1},enableMinimized:{type:Boolean,default:!1},enableOnThisPageNav:{type:Boolean,default:!1},disableHeroBackground:{type:Boolean,default:!1},standardColorIdentifier:{type:String,required:!1,validator:e=>Object.prototype.hasOwnProperty.call(we,e)},availableLocales:{type:Array,required:!1}},provide(){return{identifier:this.identifier,languages:new Set(Object.keys(this.languagePaths)),interfaceLanguage:this.interfaceLanguage,symbolKind:this.symbolKind,enableMinimized:this.enableMinimized}},data(){return{topicState:this.store.state}},computed:{normalizedSwiftPath:({swiftPath:e})=>Object(L["d"])(e),normalizedObjcPath:({objcPath:e,swiftPath:t})=>Object(L["d"])(e&&t?Object(P["b"])(e,{language:O["a"].objectiveC.key.url}):e),defaultImplementationsCount(){return(this.defaultImplementationsSections||[]).reduce((e,t)=>e+t.identifiers.length,0)},shouldShowAvailability:({platforms:e,technologies:t,enableMinimized:n})=>((e||[]).length||(t||[]).length)&&!n,hasBetaContent:({platforms:e})=>e&&e.length&&e.some(e=>e.beta),pageTitle:({title:e})=>e,pageDescription:({abstract:e,extractFirstParagraphText:t})=>e?t(e):null,shouldShowLanguageSwitcher:({objcPath:e,swiftPath:t,isTargetIDE:n,enableMinimized:i})=>!!(e&&t&&n)&&!i,enhanceBackground:({symbolKind:e,disableHeroBackground:t,enableMinimized:n})=>!t&&!n&&(!e||"module"===e),shortHero:({roleHeading:e,abstract:t,sampleCodeDownload:n,hasAvailability:i,shouldShowLanguageSwitcher:a,declarations:s})=>!!e+!!t+!!n+!!s.length+!!i+a<=1,technologies({modules:e=[]}){const t=e.reduce((e,t)=>(e.push(t.name),e.concat(t.relatedModules||[])),[]);return t.length>1?t:[]},titleBreakComponent:({enhanceBackground:e})=>e?"span":De["a"],hasPrimaryContent:({isRequirement:e,deprecationSummary:t,downloadNotAvailableSummary:n,primaryContentSectionsSanitized:i,shouldShowViewMoreLink:a})=>e||t&&t.length||n&&n.length||i.length||a,viewMoreLink:({interfaceLanguage:e,normalizedObjcPath:t,normalizedSwiftPath:n})=>e===O["a"].objectiveC.key.api?t:n,shouldShowViewMoreLink:({enableMinimized:e,hasNoExpandedDocumentation:t,viewMoreLink:n})=>e&&!t&&n,tagName(){return this.isSymbolDeprecated?this.$t("aside-kind.deprecated"):this.$t("aside-kind.beta")},pageIcon:({pageImages:e=[]})=>{const t=e.find(({type:e})=>"icon"===e);return t?t.identifier:null},shouldRenderTopicSection:({topicSectionsStyle:e,topicSections:t,enableMinimized:n})=>t&&e!==Pe["a"].hidden&&!n,isOnThisPageNavVisible:({topicState:e})=>e.contentWidth>_s,disableMetadata:({enableMinimized:e})=>e,primaryContentSectionsSanitized({primaryContentSections:e=[]}){return e.filter(({kind:e})=>e!==Ke.declarations)},declarations({primaryContentSections:e=[]}){return e.filter(({kind:e})=>e===Ke.declarations)}},methods:{extractProps(e){const{abstract:t,defaultImplementationsSections:n,deprecationSummary:i,downloadNotAvailableSummary:a,diffAvailability:s,hierarchy:r,identifier:{interfaceLanguage:o,url:l},metadata:{conformance:c,hasNoExpandedDocumentation:d,modules:u,availableLocales:h,platforms:p,required:g=!1,roleHeading:f,title:m="",tags:y=[],role:v,symbolKind:b="",remoteSource:T,images:S=[],color:{standardColorIdentifier:_}={}}={},primaryContentSections:C,relationshipsSections:k,references:w={},sampleCodeDownload:I,topicSectionsStyle:x,topicSections:$,seeAlsoSections:D,variantOverrides:P,variants:L=[]}=e,A=L.reduce((e,t)=>t.traits.reduce((e,n)=>n.interfaceLanguage?{...e,[n.interfaceLanguage]:(e[n.interfaceLanguage]||[]).concat(t.paths)}:e,e),{}),{[O["a"].objectiveC.key.api]:[N]=[],[O["a"].swift.key.api]:[E]=[]}=A;return{abstract:t,conformance:c,defaultImplementationsSections:n,deprecationSummary:i,downloadNotAvailableSummary:a,diffAvailability:s,hasNoExpandedDocumentation:d,availableLocales:h,hierarchy:r,role:v,identifier:l,interfaceLanguage:o,isRequirement:g,modules:u,platforms:p,primaryContentSections:C,relationshipsSections:k,references:w,roleHeading:f,sampleCodeDownload:I,title:m,topicSections:$,topicSectionsStyle:x,seeAlsoSections:D,variantOverrides:P,symbolKind:b,tags:y.slice(0,1),remoteSource:T,pageImages:S,objcPath:N,swiftPath:E,standardColorIdentifier:_}}},created(){if(this.topicState.preferredLanguage===O["a"].objectiveC.key.url&&this.interfaceLanguage!==O["a"].objectiveC.key.api&&this.objcPath&&this.$route.query.language!==O["a"].objectiveC.key.url){const{query:e}=this.$route;this.$nextTick().then(()=>{this.$router.replace({path:Object(L["d"])(this.objcPath),query:{...e,language:O["a"].objectiveC.key.url}})})}A["a"].setAvailableLocales(this.availableLocales||[]),this.store.reset(),this.store.setReferences(this.references)},watch:{references(e){this.store.setReferences(e)},availableLocales(e){A["a"].setAvailableLocales(e)}}},ks=Cs,ws=(n("6d05"),Object(K["a"])(ks,x,$,!1,null,"43c74ad0",null)),Is=ws.exports,xs=n("2b0e");const $s=()=>({[It["c"].modified]:0,[It["c"].added]:0,[It["c"].deprecated]:0});var Os={state:{apiChanges:null,apiChangesCounts:$s(),selectedAPIChangesVersion:null},setAPIChanges(e){this.state.apiChanges=e},setSelectedAPIChangesVersion(e){this.state.selectedAPIChangesVersion=e},resetApiChanges(){this.state.apiChanges=null,this.state.apiChangesCounts=$s()},async updateApiChangesCounts(){await xs["default"].nextTick(),Object.keys(this.state.apiChangesCounts).forEach(e=>{this.state.apiChangesCounts[e]=this.countChangeType(e)})},countChangeType(e){if(document&&document.querySelectorAll){const t=`.changed-${e}:not(.changed-total)`;return document.querySelectorAll(t).length}return 0}},Ds={state:{onThisPageSections:[],currentPageAnchor:null},resetPageSections(){this.state.onThisPageSections=[],this.state.currentPageAnchor=null},addOnThisPageSection(e,{i18n:t=!0}={}){this.state.onThisPageSections.push({...e,i18n:t})},setCurrentPageSection(e){const t=this.state.onThisPageSections.findIndex(({anchor:t})=>t===e);-1!==t&&(this.state.currentPageAnchor=e)}},Ps=n("d369");const{state:Ls,...As}=Os,{state:Ns,...Es}=Ds;var js={state:{preferredLanguage:Ps["a"].preferredLanguage,contentWidth:0,...Ls,...Ns,references:{}},reset(){this.state.preferredLanguage=Ps["a"].preferredLanguage,this.state.references={},this.resetApiChanges()},setPreferredLanguage(e){this.state.preferredLanguage=e,Ps["a"].preferredLanguage=this.state.preferredLanguage},setContentWidth(e){this.state.contentWidth=e},setReferences(e){this.state.references=e},...As,...Es},Bs=n("8590"),Rs=n("66c9"),Ms=n("0caf"),zs=n("146e");const Ks="",qs=32,Fs="navigator-hide-button";function Hs(e){return e.split("").reduce((e,t)=>(e<<5)-e+t.charCodeAt(0)|0,0)}function Vs(e){const t={},n=e.length;for(let i=0;ie.parent===Ks);const i=t[e];return i?(i.childUIDs||[]).map(e=>t[e]):[]}function Qs(e,t){const n=[],i=[e];let a=null;while(i.length){a=i.pop();const e=t[a];if(!e)return[];n.unshift(e),e.parent&&e.parent!==Ks&&i.push(e.parent)}return n}function Xs(e,t,n){const i=t[e];return i?Gs(i.parent,t,n):[]}var Ys,Js,Zs={name:"NavigatorDataProvider",props:{interfaceLanguage:{type:String,default:O["a"].swift.key.url},technologyUrl:{type:String,required:!0},apiChangesVersion:{type:String,default:""}},data(){return{isFetching:!1,errorFetching:!1,isFetchingAPIChanges:!1,navigationIndex:{[O["a"].swift.key.url]:[]},navigationReferences:{},diffs:null}},computed:{flatChildren:({technologyWithChildren:e={}})=>Ws(e.children||[],null,0,e.beta),technologyPath:({technologyUrl:e})=>{const t=/(\/documentation\/(?:[^/]+))\/?/.exec(e);return t?t[1]:""},technologyWithChildren({navigationIndex:e,interfaceLanguage:t,technologyPath:n}){let i=e[t]||[];return i.length||(i=e[O["a"].swift.key.url]||[]),i.find(e=>n.toLowerCase()===e.path.toLowerCase())}},methods:{async fetchIndexData(){try{this.isFetching=!0;const{interfaceLanguages:e,references:t}=await Object(w["d"])({slug:this.$route.params.locale||""});this.navigationIndex=Object.freeze(e),this.navigationReferences=Object.freeze(t)}catch(e){this.errorFetching=!0}finally{this.isFetching=!1}}},watch:{"$route.params.locale":{handler:"fetchIndexData",immediate:!0}},render(){return this.$scopedSlots.default({technology:this.technologyWithChildren,isFetching:this.isFetching,errorFetching:this.errorFetching,isFetchingAPIChanges:this.isFetchingAPIChanges,apiChanges:this.diffs,flatChildren:this.flatChildren,references:this.navigationReferences})}},er=Zs,tr=Object(K["a"])(er,Ys,Js,!1,null,null,null),nr=tr.exports,ir=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("button",{staticClass:"quick-navigation-open",attrs:{"aria-label":e.$t("quicknav.button.label"),title:e.$t("quicknav.button.title")}},[e._v(" / ")])},ar=[],sr={name:"QuickNavigationButton"},rr=sr,or=(n("5a73"),Object(K["a"])(rr,ir,ar,!1,null,"53faf852",null)),lr=or.exports,cr=function(){var e,t,n=this,i=n.$createElement,a=n._self._c||i;return a("GenericModal",{attrs:{isFullscreen:"",showClose:!1,visible:n.isVisible,backdropBackgroundColorOverride:"rgba(0, 0, 0, 0.7)"},on:{"update:visible":function(e){n.isVisible=e}}},[a("div",{staticClass:"quick-navigation",on:{keydown:[function(e){return!e.type.indexOf("key")&&n._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:(e.preventDefault(),n.focusNext.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&n._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:(e.preventDefault(),n.focusPrev.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&n._k(e.keyCode,"enter",13,e.key,"Enter")||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:n.handleKeyEnter.apply(null,arguments)}],click:function(e){return e.target!==e.currentTarget?null:n.closeQuickNavigationModal.apply(null,arguments)}}},[a("div",{staticClass:"quick-navigation__container",class:{focus:n.focusedInput}},[a("FilterInput",{staticClass:"quick-navigation__filter",attrs:{placeholder:n.$t("filter.search-symbols",{technology:n.technology}),focusInputWhenCreated:"",focusInputWhenEmpty:"",preventBorderStyle:"",selectInputOnFocus:""},on:{input:function(e){n.focusedIndex=0},focus:function(e){n.focusedInput=!0},blur:function(e){n.focusedInput=!1}},scopedSlots:n._u([{key:"icon",fn:function(){return[a("div",{staticClass:"quick-navigation__magnifier-icon-container",class:{blue:n.userInput.length}},[a("MagnifierIcon")],1)]},proxy:!0}]),model:{value:n.userInput,callback:function(e){n.userInput=e},expression:"userInput"}}),a("div",{staticClass:"quick-navigation__match-list",class:{active:n.processedUserInput.length}},[n.noResultsWereFound?a("div",{staticClass:"no-results"},[a("p",[n._v(" No results found. ")])]):[a("div",n._b({staticClass:"quick-navigation__refs"},"div",(e={},e[n.SCROLL_LOCK_DISABLE_ATTR]=!0,e),!1),n._l(n.filteredSymbols,(function(e,t){return a("Reference",{key:e.uid,staticClass:"quick-navigation__reference",attrs:{url:e.path},nativeOn:{click:function(e){return n.closeQuickNavigationModal.apply(null,arguments)},focus:function(e){return n.focusIndex(t)}}},[a("div",{ref:"match",refInFor:!0,staticClass:"quick-navigation__symbol-match",class:{selected:t==n.focusedIndex},attrs:{role:"list"}},[a("div",{staticClass:"symbol-info"},[a("div",{staticClass:"symbol-name"},[a("TopicTypeIcon",{staticClass:"navigator-icon",attrs:{type:e.type}}),a("div",{staticClass:"symbol-title"},[a("span",{domProps:{textContent:n._s(n.formatSymbolTitle(e.title,0,e.start))}}),a("QuickNavigationHighlighter",{attrs:{text:e.substring,matcherText:n.processedUserInput}}),a("span",{domProps:{textContent:n._s(n.formatSymbolTitle(e.title,e.start+e.matchLength))}})],1)],1),a("div",{staticClass:"symbol-path"},n._l(e.parents,(function(t,i){return a("div",{key:t.title},[a("span",{staticClass:"parent-path",domProps:{textContent:n._s(t.title)}}),i!==e.parents.length-1?a("span",{staticClass:"parent-path",domProps:{textContent:n._s("/")}}):n._e()])})),0)])])])})),1),n.previewState?a("Preview",n._b({staticClass:"quick-navigation__preview",attrs:{json:n.previewJSON,state:n.previewState}},"Preview",(t={},t[n.SCROLL_LOCK_DISABLE_ATTR]=!0,t),!1)):n._e()]],2)],1)])])},dr=[],ur=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"filter",class:{focus:e.showSuggestedTags&&!e.preventBorderStyle},attrs:{role:"search",tabindex:"0","aria-labelledby":e.searchAriaLabelledBy},on:{"!blur":function(t){return e.handleBlur.apply(null,arguments)},"!focus":function(t){return e.handleFocus.apply(null,arguments)}}},[n("div",{class:["filter__wrapper",{"filter__wrapper--reversed":e.positionReversed,"filter__wrapper--no-border-style":e.preventBorderStyle}]},[n("div",{staticClass:"filter__top-wrapper"},[n("button",{staticClass:"filter__filter-button",class:{blue:e.inputIsNotEmpty},attrs:{"aria-hidden":"true",tabindex:"-1"},on:{click:e.focusInput,mousedown:function(e){e.preventDefault()}}},[e._t("icon",(function(){return[n("FilterIcon")]}))],2),n("div",{class:["filter__input-box-wrapper",{scrolling:e.isScrolling}],on:{scroll:e.handleScroll}},[e.hasSelectedTags?n("TagList",e._g(e._b({ref:"selectedTags",staticClass:"filter__selected-tags",attrs:{id:e.SelectedTagsId,input:e.input,tags:e.selectedTags,ariaLabel:e.$tc("filter.selected-tags",e.suggestedTags.length),activeTags:e.activeTags,translatableTags:e.translatableTags,areTagsRemovable:""},on:{"focus-prev":e.handleFocusPrevOnSelectedTags,"focus-next":e.focusInputFromTags,"reset-filters":e.resetFilters,"prevent-blur":function(t){return e.$emit("update:preventedBlur",!0)}}},"TagList",e.virtualKeyboardBind,!1),e.selectedTagsMultipleSelectionListeners)):e._e(),n("label",{staticClass:"filter__input-label",attrs:{id:"filter-label",for:e.FilterInputId,"data-value":e.modelValue,"aria-label":e.placeholder}},[n("input",e._g(e._b({directives:[{name:"model",rawName:"v-model",value:e.modelValue,expression:"modelValue"}],ref:"input",staticClass:"filter__input",attrs:{id:e.FilterInputId,placeholder:e.hasSelectedTags?"":e.placeholder,"aria-expanded":e.displaySuggestedTags?"true":"false",disabled:e.disabled,type:"text"},domProps:{value:e.modelValue},on:{focus:function(t){e.selectInputOnFocus&&e.selectInputAndTags()},keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.downHandler.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.upHandler.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button?null:e.leftKeyInputHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button?null:e.rightKeyInputHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:e.deleteHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"a",void 0,t.key,void 0)?null:t.metaKey?(t.preventDefault(),t.stopPropagation(),e.selectInputAndTags.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"a",void 0,t.key,void 0)?null:t.ctrlKey?(t.preventDefault(),e.selectInputAndTags.apply(null,arguments)):null},function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.inputKeydownHandler.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.enterHandler.apply(null,arguments)},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.inputKeydownHandler.apply(null,arguments):null},function(t){return t.shiftKey&&t.metaKey?t.ctrlKey||t.altKey?null:e.inputKeydownHandler.apply(null,arguments):null},function(t){return t.metaKey?t.ctrlKey||t.shiftKey||t.altKey?null:e.assignEventValues.apply(null,arguments):null},function(t){return t.ctrlKey?t.shiftKey||t.altKey||t.metaKey?null:e.assignEventValues.apply(null,arguments):null}],input:function(t){t.target.composing||(e.modelValue=t.target.value)}}},"input",e.AXinputProperties,!1),e.inputMultipleSelectionListeners))])],1),n("div",{staticClass:"filter__delete-button-wrapper"},[e.input.length||e.displaySuggestedTags||e.hasSelectedTags?n("button",{staticClass:"filter__delete-button",attrs:{"aria-label":e.$t("filter.reset-filter")},on:{click:function(t){return e.resetFilters(!0)},keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.stopPropagation(),e.resetFilters(!0))},mousedown:function(e){e.preventDefault()}}},[n("ClearRoundedIcon")],1):e._e()])]),e.displaySuggestedTags?n("TagList",e._b({ref:"suggestedTags",staticClass:"filter__suggested-tags",attrs:{id:e.SuggestedTagsId,ariaLabel:e.$tc("filter.suggested-tags",e.suggestedTags.length),input:e.input,tags:e.suggestedTags,translatableTags:e.translatableTags},on:{"click-tags":function(t){return e.selectTag(t.tagName)},"prevent-blur":function(t){return e.$emit("update:preventedBlur",!0)},"focus-next":function(t){e.positionReversed?e.focusInput():e.$emit("focus-next")},"focus-prev":function(t){e.positionReversed?e.$emit("focus-prev"):e.focusInput()}}},"TagList",e.virtualKeyboardBind,!1)):e._e()],1)])},hr=[],pr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"clear-rounded-icon",attrs:{viewBox:"0 0 16 16",themeId:"clear-rounded"}},[n("title",[e._v(e._s(e.$t("icons.clear")))]),n("path",{attrs:{d:"M14.55,0l1.45,1.45-6.56,6.55,6.54,6.54-1.45,1.45-6.53-6.53L1.47,15.99,.01,14.53l6.52-6.53L0,1.47,1.45,.02l6.55,6.54L14.55,0Z","fill-rule":"evenodd"}})])},gr=[],fr=n("be08"),mr={name:"ClearRoundedIcon",components:{SVGIcon:fr["a"]}},yr=mr,vr=Object(K["a"])(yr,pr,gr,!1,null,null,null),br=vr.exports;function Tr(){if(window.getSelection)try{const{activeElement:e}=document;return e&&e.value?e.value.substring(e.selectionStart,e.selectionEnd):window.getSelection().toString()}catch(e){return""}else if(document.selection&&"Control"!==document.selection.type)return document.selection.createRange().text;return""}function Sr(e){if("number"===typeof e.selectionStart)e.selectionStart=e.selectionEnd=e.value.length;else if("undefined"!==typeof e.createTextRange){e.focus();const t=e.createTextRange();t.collapse(!1),t.select()}}function _r(e){e.selectionStart=e.selectionEnd=0}function Cr(e){return/^[\w\W\s]$/.test(e)}function kr(e){const t=e.match(/(.*)<\/data>/);try{return t?JSON.parse(t[1]):null}catch(n){return null}}function wr(e){return"string"!==typeof e&&(e=JSON.stringify(e)),`${e}`}function Ir(e,t,n,i){let a,s;return function(...r){function o(){clearTimeout(a),a=null}function l(){o(),e.apply(s,r)}if(s=this,!a||!n&&!i){if(!n)return o(),void(a=setTimeout(l,t));a=setTimeout(o,t),e.apply(s,r)}}}const xr=280,$r=100;var Or={data(){return{keyboardIsVirtual:!1,activeTags:[],initTagIndex:null,focusedTagIndex:null,metaKey:!1,shiftKey:!1,tabbing:!1,debouncedHandleDeleteTag:null}},constants:{DebounceDelay:xr,VirtualKeyboardThreshold:$r},computed:{virtualKeyboardBind:({keyboardIsVirtual:e})=>({keyboardIsVirtual:e}),allSelectedTagsAreActive:({selectedTags:e,activeTags:t})=>e.every(e=>t.includes(e))},methods:{selectRangeActiveTags(e=this.focusedTagIndex,t=this.selectedTags.length){this.activeTags=this.selectedTags.slice(e,t)},selectTag(e){this.updateSelectedTags([e]),this.clearFilterOnTagSelect&&this.setFilterInput("")},unselectActiveTags(){this.activeTags.length&&(this.deleteTags(this.activeTags),this.resetActiveTags())},async deleteHandler(e){this.activeTags.length>0&&this.setSelectedTags(this.selectedTags.filter(e=>!this.activeTags.includes(e))),this.inputIsSelected()&&this.allSelectedTagsAreActive?(e.preventDefault(),await this.resetFilters()):0===this.$refs.input.selectionEnd&&this.hasSelectedTags&&(e.preventDefault(),this.keyboardIsVirtual?this.setSelectedTags(this.selectedTags.slice(0,-1)):this.$refs.selectedTags.focusLast()),this.unselectActiveTags()},leftKeyInputHandler(e){if(this.assignEventValues(e),this.hasSelectedTags){if(this.activeTags.length&&!this.shiftKey)return e.preventDefault(),void this.$refs.selectedTags.focusTag(this.activeTags[0]);if(this.shiftKey&&0===this.$refs.input.selectionStart&&"forward"!==this.$refs.input.selectionDirection)return null===this.focusedTagIndex&&(this.focusedTagIndex=this.selectedTags.length),this.focusedTagIndex>0&&(this.focusedTagIndex-=1),this.initTagIndex=this.selectedTags.length,void this.selectTagsPressingShift();(0===this.$refs.input.selectionEnd||this.inputIsSelected())&&this.$refs.selectedTags.focusLast()}},rightKeyInputHandler(e){if(this.assignEventValues(e),this.activeTags.length&&this.shiftKey&&this.focusedTagIndex=$r&&(this.keyboardIsVirtual=!0)}),xr),setFilterInput(e){this.$emit("update:input",e)},setSelectedTags(e){this.$emit("update:selectedTags",e)},updateSelectedTags(e){this.setSelectedTags([...new Set([...this.selectedTags,...e])])},handleCopy(e){e.preventDefault();const t=[],n={tags:[],input:Tr()};if(this.activeTags.length){const e=this.activeTags;n.tags=e,t.push(e.join(" "))}return t.push(n.input),n.tags.length||n.input.length?(e.clipboardData.setData("text/html",wr(n)),e.clipboardData.setData("text/plain",t.join(" ")),n):n},handleCut(e){e.preventDefault();const{input:t,tags:n}=this.handleCopy(e);if(!t&&!n.length)return;const i=this.selectedTags.filter(e=>!n.includes(e)),a=this.input.replace(t,"");this.setSelectedTags(i),this.setFilterInput(a)},handlePaste(e){e.preventDefault();const{types:t}=e.clipboardData;let n=[],i=e.clipboardData.getData("text/plain");if(t.includes("text/html")){const t=e.clipboardData.getData("text/html"),a=kr(t);a&&({tags:n=[],input:i=""}=a)}const a=Tr();i=a.length?this.input.replace(a,i):Object(nn["f"])(this.input,i,document.activeElement.selectionStart),this.setFilterInput(i.trim()),this.allSelectedTagsAreActive?this.setSelectedTags(n):this.updateSelectedTags(n),this.resetActiveTags()},async handleDeleteTag({tagName:e,event:t={}}){const{key:n}=t;this.activeTags.length||this.deleteTags([e]),this.unselectActiveTags(),await this.$nextTick(),Sr(this.$refs.input),this.hasSelectedTags&&(await this.focusInput(),"Backspace"===n&&_r(this.$refs.input))}},mounted(){window.visualViewport&&(window.visualViewport.addEventListener("resize",this.updateKeyboardType),this.$once("hook:beforeDestroy",()=>{window.visualViewport.removeEventListener("resize",this.updateKeyboardType)}))}};const Dr=1e3;var Pr={constants:{ScrollingDebounceDelay:Dr},data(){return{isScrolling:!1,scrollRemovedAt:0}},created(){this.deleteScroll=Ir(this.deleteScroll,Dr)},methods:{deleteScroll(){this.isScrolling=!1,this.scrollRemovedAt=Date.now()},handleScroll(e){const{target:t}=e;if(0!==t.scrollTop)return t.scrollTop=0,void e.preventDefault();const n=150,i=t.offsetWidth,a=i+n;if(t.scrollWidth0?this.focusIndex(this.focusedIndex-1):this.startingPointHook())},focusNext({metaKey:e,ctrlKey:t,shiftKey:n}){(e||t)&&n||(this.externalFocusChange=!1,this.focusedIndex0}},Kr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"tag",attrs:{role:"presentation"}},[n("button",{ref:"button",class:{focus:e.isActiveTag},attrs:{role:"option","aria-selected":e.ariaSelected,"aria-roledescription":"tag"},on:{focus:function(t){return e.$emit("focus",{event:t,tagName:e.name})},click:function(t){return t.preventDefault(),e.$emit("click",{event:t,tagName:e.name})},dblclick:function(t){t.preventDefault(),!e.keyboardIsVirtual&&e.deleteTag()},keydown:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name})},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.shiftKey&&t.metaKey?t.ctrlKey||t.altKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.metaKey?t.ctrlKey||t.shiftKey||t.altKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return t.ctrlKey?t.shiftKey||t.altKey||t.metaKey?null:e.$emit("keydown",{event:t,tagName:e.name}):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:(t.preventDefault(),e.deleteTag.apply(null,arguments))}],mousedown:function(t){return t.preventDefault(),e.focusButton.apply(null,arguments)},copy:e.handleCopy}},[e.isRemovableTag?e._e():n("span",{staticClass:"visuallyhidden"},[e._v(" "+e._s(e.$t("filter.add-tag"))+" - ")]),e.isTranslatableTag?[e._v(" "+e._s(e.$t(e.name))+" ")]:[e._v(" "+e._s(e.name)+" ")],e.isRemovableTag?n("span",{staticClass:"visuallyhidden"},[e._v(" – "+e._s(e.$t("filter.tag-select-remove"))+" ")]):e._e()],2)])},qr=[],Fr={name:"Tag",props:{name:{type:String,required:!0},isFocused:{type:Boolean,default:()=>!1},isRemovableTag:{type:Boolean,default:!1},isTranslatableTag:{type:Boolean,default:!1},isActiveTag:{type:Boolean,default:!1},activeTags:{type:Array,required:!1},keyboardIsVirtual:{type:Boolean,default:!1}},watch:{isFocused(e){e&&this.focusButton()}},mounted(){document.addEventListener("copy",this.handleCopy),document.addEventListener("cut",this.handleCut),document.addEventListener("paste",this.handlePaste),this.$once("hook:beforeDestroy",()=>{document.removeEventListener("copy",this.handleCopy),document.removeEventListener("cut",this.handleCut),document.removeEventListener("paste",this.handlePaste)})},methods:{isCurrentlyActiveElement(){return document.activeElement===this.$refs.button},handleCopy(e){if(!this.isCurrentlyActiveElement())return;e.preventDefault();let t=[];t=this.activeTags.length>0?this.activeTags:[this.name],e.clipboardData.setData("text/html",wr({tags:t})),e.clipboardData.setData("text/plain",t.join(" "))},handleCut(e){this.isCurrentlyActiveElement()&&this.isRemovableTag&&(this.handleCopy(e),this.deleteTag(e))},handlePaste(e){this.isCurrentlyActiveElement()&&this.isRemovableTag&&(e.preventDefault(),this.deleteTag(e),this.$emit("paste-content",e))},deleteTag(e){this.$emit("delete-tag",{tagName:this.name,event:e}),this.$emit("prevent-blur")},focusButton(e={}){this.keyboardIsVirtual||this.$refs.button.focus(),0===e.buttons&&this.isFocused&&this.deleteTag(e)}},computed:{ariaSelected:({isActiveTag:e,isRemovableTag:t})=>t?e?"true":"false":null}},Hr=Fr,Vr=(n("f055"),Object(K["a"])(Hr,Kr,qr,!1,null,"7e76f326",null)),Wr=Vr.exports,Ur={name:"Tags",mixins:[Pr,zr],props:{tags:{type:Array,default:()=>[]},activeTags:{type:Array,default:()=>[]},translatableTags:{type:Array,default:()=>[]},ariaLabel:{type:String,required:!1},id:{type:String,required:!1},input:{type:String,default:null},areTagsRemovable:{type:Boolean,default:!1},keyboardIsVirtual:{type:Boolean,default:!1}},components:{Tag:Wr},methods:{focusTag(e){this.focusIndex(this.tags.indexOf(e))},startingPointHook(){this.$emit("focus-prev")},handleFocus(e,t){this.focusIndex(t),this.isScrolling=!1,this.$emit("focus",e)},endingPointHook(){this.$emit("focus-next")},resetScroll(){this.$refs["scroll-wrapper"].scrollLeft=0},handleKeydown(e){const{key:t}=e,n=this.tags[this.focusedIndex];Cr(t)&&n&&this.$emit("delete-tag",{tagName:n.label||n,event:e})}},computed:{totalItemsToNavigate:({tags:e})=>e.length}},Gr=Ur,Qr=(n("9f17"),Object(K["a"])(Gr,Rr,Mr,!1,null,"1f2bd813",null)),Xr=Qr.exports;const Yr=5,Jr="filter-input",Zr="selected-tags",eo="suggested-tags",to={autocorrect:"off",autocapitalize:"off",spellcheck:"false",role:"combobox","aria-haspopup":"true","aria-autocomplete":"none","aria-owns":"suggestedTags","aria-controls":"suggestedTags"};var no,io,ao={name:"FilterInput",mixins:[Pr,Or],constants:{FilterInputId:Jr,SelectedTagsId:Zr,SuggestedTagsId:eo,AXinputProperties:to,TagLimit:Yr},components:{TagList:Xr,ClearRoundedIcon:br,FilterIcon:Br},props:{positionReversed:{type:Boolean,default:()=>!1},tags:{type:Array,default:()=>[]},selectedTags:{type:Array,default:()=>[]},preventedBlur:{type:Boolean,default:()=>!1},placeholder:{type:String,default:()=>""},disabled:{type:Boolean,default:()=>!1},value:{type:String,default:()=>""},shouldTruncateTags:{type:Boolean,default:!1},focusInputWhenCreated:{type:Boolean,default:!1},focusInputWhenEmpty:{type:Boolean,default:!1},selectInputOnFocus:{type:Boolean,default:!1},clearFilterOnTagSelect:{type:Boolean,default:!0},preventBorderStyle:{type:Boolean,default:!1},translatableTags:{type:Array,default:()=>[]}},data(){return{resetedTagsViaDeleteButton:!1,FilterInputId:Jr,SelectedTagsId:Zr,SuggestedTagsId:eo,AXinputProperties:to,showSuggestedTags:!1}},computed:{hasSuggestedTags:({suggestedTags:e})=>e.length,hasSelectedTags:({selectedTags:e})=>e.length,inputIsNotEmpty:({input:e,hasSelectedTags:t})=>e.length||t,searchAriaLabelledBy:({hasSelectedTags:e})=>e?Jr.concat(" ",Zr):Jr,modelValue:{get:({value:e})=>e,set(e){this.$emit("input",e)}},input:({value:e})=>e,suggestedTags:({tags:e,selectedTags:t,shouldTruncateTags:n})=>{const i=e.filter(e=>!t.includes(e));return n?i.slice(0,Yr):i},displaySuggestedTags:({showSuggestedTags:e,suggestedTags:t})=>e&&t.length>0,inputMultipleSelectionListeners:({resetActiveTags:e,handleCopy:t,handleCut:n,handlePaste:i})=>({click:e,copy:t,cut:n,paste:i}),selectedTagsMultipleSelectionListeners:({handleSingleTagClick:e,selectInputAndTags:t,handleDeleteTag:n,selectedTagsKeydownHandler:i,focusTagHandler:a,handlePaste:s})=>({"click-tags":e,"select-all":t,"delete-tag":n,keydown:i,focus:a,"paste-tags":s})},watch:{async selectedTags(){this.resetedTagsViaDeleteButton?this.resetedTagsViaDeleteButton=!1:this.$el.contains(document.activeElement)&&await this.focusInput(),this.displaySuggestedTags&&this.hasSuggestedTags&&this.$refs.suggestedTags.resetScroll()},suggestedTags:{immediate:!0,handler(e){this.$emit("suggested-tags",e)}},showSuggestedTags(e){this.$emit("show-suggested-tags",e)}},methods:{async focusInput(){await this.$nextTick(),this.$refs.input.focus(),!this.input&&this.resetActiveTags&&this.resetActiveTags()},async resetFilters(e=!1){if(this.setFilterInput(""),this.setSelectedTags([]),!e)return this.$emit("update:preventedBlur",!0),this.resetActiveTags&&this.resetActiveTags(),void await this.focusInput();this.resetedTagsViaDeleteButton=!0,this.showSuggestedTags=!1,this.$refs.input.blur()},focusFirstTag(e=(()=>{})){this.showSuggestedTags||(this.showSuggestedTags=!0),this.hasSuggestedTags&&this.$refs.suggestedTags?this.$refs.suggestedTags.focusFirst():e()},setFilterInput(e){this.$emit("input",e)},setSelectedTags(e){this.$emit("update:selectedTags",e)},deleteTags(e){this.setSelectedTags(this.selectedTags.filter(t=>!e.includes(t)))},async handleBlur(e){const t=e.relatedTarget;t&&t.matches&&t.matches("button, input, ul")&&this.$el.contains(t)||(await this.$nextTick(),this.resetActiveTags(),this.preventedBlur?this.$emit("update:preventedBlur",!1):(this.showSuggestedTags=!1,this.$emit("blur")))},downHandler(e){const t=()=>this.$emit("focus-next",e);this.positionReversed?t():this.focusFirstTag(t)},upHandler(e){const t=()=>this.$emit("focus-prev",e);this.positionReversed?this.focusFirstTag(t):t()},handleFocusPrevOnSelectedTags(){this.positionReversed?this.focusFirstTag(()=>this.$emit("focus-prev")):this.$emit("focus-prev")},handleFocus(){this.showSuggestedTags=!0,this.$emit("focus")}},created(){this.focusInputWhenCreated&&document.activeElement!==this.$refs.input&&(this.inputIsNotEmpty||this.focusInputWhenEmpty)&&this.focusInput()}},so=ao,ro=(n("7309"),Object(K["a"])(so,ur,hr,!1,null,"3f01a546",null)),oo=ro.exports,lo=n("c161"),co={name:"QuickNavigationHighlighter",props:{text:{type:String,required:!0},matcherText:{type:String,default:""}},render(e){const{matcherText:t,text:n}=this,i=[];let a=0;return t?([...t].forEach(t=>{const s=n.toLowerCase().indexOf(t.toLowerCase(),a);a&&i.push(e("span",n.slice(a,s)));const r=s+1;i.push(e("span",{class:"match"},n.slice(s,r))),a=r}),e("p",{class:"highlight"},i)):e("span",{class:"highlight"},n)}},uo=co,ho=(n("ca3d"),Object(K["a"])(uo,no,io,!1,null,"1c4190f0",null)),po=ho.exports,go=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"magnifier-icon",attrs:{viewBox:"0 0 14 14",themeId:"magnifier"}},[n("path",{attrs:{d:"M15.0013 14.0319L10.9437 9.97424C11.8165 8.88933 12.2925 7.53885 12.2929 6.14645C12.2929 2.75841 9.53449 0 6.14645 0C2.75841 0 0 2.75841 0 6.14645C0 9.53449 2.75841 12.2929 6.14645 12.2929C7.57562 12.2929 8.89486 11.7932 9.94425 10.9637L14.0019 15.0213L15.0013 14.0319ZM6.13645 11.0736C4.83315 11.071 3.58399 10.5521 2.66241 9.63048C1.74084 8.70891 1.22194 7.45974 1.2193 6.15644C1.2193 3.44801 3.41802 1.23928 6.13645 1.23928C8.85488 1.23928 11.0536 3.44801 11.0536 6.15644C11.0636 8.86488 8.85488 11.0736 6.13645 11.0736Z"}})])},fo=[],mo={name:"MagnifierIcon",components:{SVGIcon:fr["a"]}},yo=mo,vo=Object(K["a"])(yo,go,fo,!1,null,null,null),bo=vo.exports,To=n("86d8"),So=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"preview"},[e.state===e.STATE.success?n("DocumentationTopic",e._b({attrs:{enableMinimized:""}},"DocumentationTopic",e.topicProps,!1)):e.state===e.STATE.loadingSlowly?n("div",{staticClass:"loading"},e._l(e.LOADER_ROW_STYLES,(function(e){return n("div",{key:e["--index"],staticClass:"loading-row",style:e})})),0):e.state===e.STATE.error?n("div",{staticClass:"unavailable"},[n("p",[e._v("Preview unavailable")])]):e._e()],1)},_o=[];const{extractProps:Co}=Is.methods,ko="hero",wo={error:"error",loading:"loading",loadingSlowly:"loadingSlowly",success:"success"},Io={...js,state:Object(w["a"])(js.state)};var xo={name:"QuickNavigationPreview",components:{DocumentationTopic:Is},constants:{PreviewState:wo,PreviewStore:Io},data(){return{store:Io}},provide(){return{store:this.store}},props:{json:{type:Object,required:!1},state:{type:String,required:!0,validator:e=>Object.hasOwnProperty.call(wo,e)}},computed:{LOADER_ROW_STYLES:()=>[{"--index":0,width:"30%"},{"--index":1,width:"80%"},{"--index":2,width:"50%"}],STATE:()=>wo,topicProps:({json:e})=>{const t=Co(e),{sections:n=[]}=e;let{abstract:i}=t;const a=n.find(({kind:e})=>e===ko);return!i&&a&&(i=a.content),{...t,abstract:i}}}},$o=xo,Oo=(n("c1f5"),Object(K["a"])($o,So,_o,!1,null,"6fb5ba95",null)),Do=Oo.exports;class Po{constructor(e){this.map=new Map,this.maxSize=e}get size(){return this.map.size}get(e){if(!this.map.has(e))return;const t=this.map.get(e);return this.map.delete(e),this.map.set(e,t),t}has(e){return this.map.has(e)}set(e,t){if(this.map.has(e)&&this.map.delete(e),this.map.set(e,t),this.map.size>this.maxSize){const e=this.map.keys().next().value;this.map.delete(e)}}*[Symbol.iterator](){yield*this.map}}var Lo=n("f2af");const{PreviewState:Ao}=Do.constants,No="AbortError",Eo=20,jo=1e3;var Bo={name:"QuickNavigationModal",components:{FilterInput:oo,GenericModal:lo["a"],MagnifierIcon:bo,TopicTypeIcon:_e["a"],QuickNavigationHighlighter:po,Reference:To["a"],Preview:Do},mixins:[zr],created(){this.abortController=null,this.$cachedSymbolResults=new Po(Eo),this.loadingTimeout=null},data(){return{debouncedInput:"",userInput:"",focusedInput:!1,cachedSymbolResults:{},previewIsLoadingSlowly:!1,SCROLL_LOCK_DISABLE_ATTR:Lo["a"]}},props:{children:{type:Array,required:!0},showQuickNavigationModal:{type:Boolean,required:!0},technology:{type:String,required:!0}},computed:{childrenMap({children:e}){return Vs(e)},filteredSymbols:({constructFuzzyRegex:e,children:t,fuzzyMatch:n,processedUserInput:i,childrenMap:a,orderSymbolsByPriority:s})=>{const r=t.filter(e=>"groupMarker"!==e.type&&null!=e.title);if(!i)return[];const o=n({inputLength:i.length,symbols:r,processedInputRegex:new RegExp(e(i),"i"),childrenMap:a}),l=[...new Map(o.map(e=>[e.path,e])).values()];return s(l).slice(0,Eo)},isVisible:{get:({showQuickNavigationModal:e})=>e,set(e){this.$emit("update:showQuickNavigationModal",e)}},noResultsWereFound:({processedUserInput:e,totalItemsToNavigate:t})=>e.length&&!t,processedUserInput:({debouncedInput:e})=>e.replace(/\s/g,""),totalItemsToNavigate:({filteredSymbols:e})=>e.length,selectedSymbol:({filteredSymbols:e,focusedIndex:t})=>null!==t?e[t]:null,nextSymbol:({filteredSymbols:e,focusedIndex:t})=>{if(null===t)return null;let n=t+1;return n>=e.length&&(n=0),e[n]},previewJSON:({cachedSymbolResults:e,selectedSymbol:t})=>t?(e[t.uid]||{}).json:null,previewState:({cachedSymbolResults:e,previewIsLoadingSlowly:t,selectedSymbol:n})=>n&&Object.hasOwnProperty.call(e,n.uid)?e[n.uid].success?Ao.success:Ao.error:t?Ao.loadingSlowly:Ao.loading},watch:{userInput:"debounceInput",focusedIndex:"scrollIntoView",selectedSymbol:"fetchSelectedSymbolData",$route:"closeQuickNavigationModal"},methods:{closeQuickNavigationModal(){this.$emit("update:showQuickNavigationModal",!1)},constructFuzzyRegex(e){return[...e].reduce((t,n,i)=>t.concat(`[${n}]`).concat(i{const a=n.exec(t.title);if(!a)return!1;const s=a[0].length;return!(s>3*e)&&{uid:t.uid,title:t.title,path:t.path,parents:Qs(t.parent,i),type:t.type,inputLengthDifference:t.title.length-e,matchLength:s,matchLengthDifference:s-e,start:a.index,substring:a[0]}}).filter(Boolean)},handleKeyEnter(){!this.noResultsWereFound&&this.userInput.length&&(this.$router.push(this.filteredSymbols[this.focusedIndex].path),this.closeQuickNavigationModal())},orderSymbolsByPriority(e){return e.sort((e,t)=>e.matchLengthDifference>t.matchLengthDifference?1:e.matchLengthDifferencet.start?1:e.startt.inputLengthDifference?1:e.inputLengthDifference{this.previewState===Ao.loading&&(this.previewIsLoadingSlowly=!0)},jo),!this.selectedSymbol||this.$cachedSymbolResults.has(this.selectedSymbol.uid))return clearTimeout(this.loadingTimeout),void(this.previewIsLoadingSlowly=!1);const e=async e=>{if(e&&!this.$cachedSymbolResults.has(e.uid))try{const t=await Object(w["b"])(e.path,{signal:this.abortController.signal});this.$cachedSymbolResults.set(e.uid,{success:!0,json:t})}catch(t){t.name!==No&&this.$cachedSymbolResults.set(e.uid,{success:!1})}finally{this.cachedSymbolResults=Object.freeze(Object.fromEntries(this.$cachedSymbolResults))}};this.abortController&&this.abortController.abort(),this.abortController=new AbortController,await Promise.all([e(this.selectedSymbol).finally(()=>{clearTimeout(this.loadingTimeout),this.previewIsLoadingSlowly=!1}),e(this.nextSymbol)])}}},Ro=Bo,Mo=(n("dfa5"),Object(K["a"])(Ro,cr,dr,!1,null,"71686791",null)),zo=Mo.exports,Ko=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"adjustable-sidebar-width",class:{dragging:e.isDragging,"sidebar-hidden":e.hiddenOnLarge}},[n("div",{ref:"sidebar",staticClass:"sidebar"},[n("div",{ref:"aside",staticClass:"aside",class:e.asideClasses,style:e.asideStyles,attrs:{"aria-hidden":e.hiddenOnLarge?"true":null},on:{transitionstart:function(t){return t.target!==t.currentTarget?null:e.trackTransitionStart.apply(null,arguments)},transitionend:function(t){return t.target!==t.currentTarget?null:e.trackTransitionEnd.apply(null,arguments)}}},[e._t("aside",null,{animationClass:"aside-animated-child",scrollLockID:e.scrollLockID,breakpoint:e.breakpoint})],2),e.fixedWidth?e._e():n("div",{staticClass:"resize-handle",on:{mousedown:function(t){return t.preventDefault(),e.startDrag.apply(null,arguments)},touchstart:function(t){return t.preventDefault(),e.startDrag.apply(null,arguments)}}})]),n("div",{ref:"content",staticClass:"content"},[e._t("default")],2),n("BreakpointEmitter",{attrs:{scope:e.BreakpointScopes.nav},on:{change:function(t){e.breakpoint=t}}})],1)},qo=[],Fo=n("5d2d"),Ho=n("a97e"),Vo=n("63b8"),Wo=n("c8e2"),Uo=n("95da"),Go=n("942d");const Qo="sidebar",Xo=1921,Yo=543,Jo=400,Zo={touch:{move:"touchmove",end:"touchend"},mouse:{move:"mousemove",end:"mouseup"}},el=(e,t=window.innerWidth)=>{const n=Math.min(t,Xo);return Math.floor(Math.min(n*(e/100),n))},tl={medium:30,large:20},nl={medium:50,large:50},il="sidebar-scroll-lock";var al={name:"AdjustableSidebarWidth",constants:{SCROLL_LOCK_ID:il},components:{BreakpointEmitter:Ho["a"]},inject:["store"],props:{shownOnMobile:{type:Boolean,default:!1},hiddenOnLarge:{type:Boolean,default:!1},fixedWidth:{type:Number,default:null}},data(){const e=window.innerWidth,t=window.innerHeight,n=Vo["b"].large,i=el(tl[n]),a=el(nl[n]),s=e>=Xo?Yo:Jo,r=Fo["c"].get(Qo,s);return{isDragging:!1,width:this.fixedWidth||Math.min(Math.max(r,i),a),isTouch:!1,windowWidth:e,windowHeight:t,breakpoint:n,noTransition:!1,isTransitioning:!1,isOpeningOnLarge:!1,focusTrapInstance:null,mobileTopOffset:0,topOffset:0}},computed:{minWidthPercent:({breakpoint:e})=>tl[e]||0,maxWidthPercent:({breakpoint:e})=>nl[e]||100,maxWidth:({maxWidthPercent:e,windowWidth:t,fixedWidth:n})=>Math.max(n,el(e,t)),minWidth:({minWidthPercent:e,windowWidth:t,fixedWidth:n})=>Math.min(n||t,el(e,t)),widthInPx:({width:e})=>e+"px",hiddenOnLargeThreshold:({minWidth:e})=>e/2,events:({isTouch:e})=>e?Zo.touch:Zo.mouse,asideStyles:({widthInPx:e,mobileTopOffset:t,topOffset:n,windowHeight:i})=>({width:e,"--top-offset":n?n+"px":null,"--top-offset-mobile":t+"px","--app-height":i+"px"}),asideClasses:({isDragging:e,shownOnMobile:t,noTransition:n,isTransitioning:i,hiddenOnLarge:a,mobileTopOffset:s,isOpeningOnLarge:r})=>({dragging:e,"show-on-mobile":t,"hide-on-large":a,"is-opening-on-large":r,"no-transition":n,"sidebar-transitioning":i,"has-mobile-top-offset":s}),scrollLockID:()=>il,BreakpointScopes:()=>Vo["c"]},async mounted(){window.addEventListener("keydown",this.onEscapeKeydown),window.addEventListener("resize",this.storeWindowSize,{passive:!0}),window.addEventListener("orientationchange",this.storeWindowSize,{passive:!0}),this.storeTopOffset(),0===this.topOffset&&0===window.scrollY||window.addEventListener("scroll",this.storeTopOffset,{passive:!0}),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("keydown",this.onEscapeKeydown),window.removeEventListener("resize",this.storeWindowSize),window.removeEventListener("orientationchange",this.storeWindowSize),window.removeEventListener("scroll",this.storeTopOffset),this.shownOnMobile&&this.toggleScrollLock(!1),this.focusTrapInstance&&this.focusTrapInstance.destroy()}),await this.$nextTick(),this.focusTrapInstance=new Wo["a"](this.$refs.aside)},watch:{$route:"closeMobileSidebar",width:{immediate:!0,handler:Ne((function(e){this.emitEventChange(e)}),150)},windowWidth:"getWidthInCheck",async breakpoint(e){this.getWidthInCheck(),e===Vo["b"].large&&this.closeMobileSidebar(),this.noTransition=!0,await Object(Ee["b"])(5),this.noTransition=!1},shownOnMobile:"handleExternalOpen",async isTransitioning(e){e?(await Object(Ee["a"])(1e3),this.isTransitioning=!1):this.updateContentWidthInStore()},hiddenOnLarge(){this.isTransitioning=!0}},methods:{getWidthInCheck:Ir((function(){this.width>this.maxWidth?this.width=this.maxWidth:this.widththis.maxWidth&&(i=this.maxWidth),this.hiddenOnLarge&&i>=this.hiddenOnLargeThreshold&&(this.$emit("update:hiddenOnLarge",!1),this.isOpeningOnLarge=!0),this.width=Math.max(i,this.minWidth),i<=this.hiddenOnLargeThreshold&&this.$emit("update:hiddenOnLarge",!0)},stopDrag(e){e.preventDefault(),this.isDragging&&(this.isDragging=!1,Fo["c"].set(Qo,this.width),document.removeEventListener(this.events.move,this.handleDrag),document.removeEventListener(this.events.end,this.stopDrag),this.emitEventChange(this.width))},emitEventChange(e){this.$emit("width-change",e),this.updateContentWidthInStore()},getTopOffset(){const e=document.getElementById(Go["e"]);if(!e)return 0;const{y:t}=e.getBoundingClientRect();return Math.max(t,0)},handleExternalOpen(e){e&&(this.mobileTopOffset=this.getTopOffset()),this.toggleScrollLock(e)},async updateContentWidthInStore(){await this.$nextTick(),this.store.setContentWidth(this.$refs.content.offsetWidth)},async toggleScrollLock(e){const t=document.getElementById(this.scrollLockID);e?(await this.$nextTick(),Lo["b"].lockScroll(t),this.focusTrapInstance.start(),Uo["a"].hide(this.$refs.aside)):(Lo["b"].unlockScroll(t),this.focusTrapInstance.stop(),Uo["a"].show(this.$refs.aside))},storeTopOffset:Ne((function(){this.topOffset=this.getTopOffset()}),60),async trackTransitionStart({propertyName:e}){"width"!==e&&"transform"!==e||(this.isTransitioning=!0)},trackTransitionEnd({propertyName:e}){"width"!==e&&"transform"!==e||(this.isTransitioning=!1,this.isOpeningOnLarge=!1)}}},sl=al,rl=(n("cb1f"),Object(K["a"])(sl,Ko,qo,!1,null,"f3c6416c",null)),ol=rl.exports,ll=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("nav",{staticClass:"navigator",attrs:{"aria-labelledby":e.INDEX_ROOT_KEY}},[e.isFetching?n("LoadingNavigatorCard",e._b({on:{close:function(t){return e.$emit("close")}}},"LoadingNavigatorCard",e.technologyProps,!1)):n("NavigatorCard",e._b({attrs:{type:e.type,children:e.flatChildren,"active-path":e.activePath,scrollLockID:e.scrollLockID,"error-fetching":e.errorFetching,"render-filter-on-top":e.renderFilterOnTop,"api-changes":e.apiChanges,"allow-hiding":e.allowHiding,"navigator-references":e.navigatorReferences},on:{close:function(t){return e.$emit("close")}},scopedSlots:e._u([{key:"filter",fn:function(){return[e._t("filter")]},proxy:!0}],null,!0)},"NavigatorCard",e.technologyProps,!1)),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" "+e._s(e.$t("navigator.navigator-is",{state:e.isFetching?e.$t("navigator.state.loading"):e.$t("navigator.state.ready")}))+" ")])],1)},cl=[],dl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCard",e._b({class:{"filter-on-top":e.renderFilterOnTop},on:{close:function(t){return e.$emit("close")},"head-click-alt":e.toggleAllNodes},scopedSlots:e._u([{key:"body",fn:function(t){var i=t.className;return[e._t("post-head"),n("div",{class:i,on:{"!keydown":[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:t.altKey?(t.preventDefault(),e.focusFirst.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:t.altKey?(t.preventDefault(),e.focusLast.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNext.apply(null,arguments))}]}},[n("DynamicScroller",{directives:[{name:"show",rawName:"v-show",value:e.hasNodes,expression:"hasNodes"}],ref:"scroller",staticClass:"scroller",attrs:{id:e.scrollLockID,"aria-label":e.$t("navigator.title"),items:e.nodesToRender,"min-item-size":e.itemSize,"emit-update":"","key-field":"uid"},on:{update:e.handleScrollerUpdate,"!keydown":[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:t.altKey?(t.preventDefault(),e.focusFirst.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:t.altKey?(t.preventDefault(),e.focusLast.apply(null,arguments)):null},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNext.apply(null,arguments))}]},nativeOn:{focusin:function(t){return e.handleFocusIn.apply(null,arguments)},focusout:function(t){return e.handleFocusOut.apply(null,arguments)}},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.item,a=t.active,s=t.index;return[n("DynamicScrollerItem",e._b({ref:"dynamicScroller_"+i.uid},"DynamicScrollerItem",{active:a,item:i,dataIndex:s},!1),[n("NavigatorCardItem",{attrs:{item:i,isRendered:a,"filter-pattern":e.filterPattern,"is-active":i.uid===e.activeUID,"is-bold":e.activePathMap[i.uid],expanded:e.openNodes[i.uid],"api-change":e.apiChangesObject[i.path],isFocused:e.focusedIndex===s,enableFocus:!e.externalFocusChange,"navigator-references":e.navigatorReferences},on:{toggle:e.toggle,"toggle-full":e.toggleFullTree,"toggle-siblings":e.toggleSiblings,navigate:e.handleNavigationChange,"focus-parent":e.focusNodeParent}})],1)]}}],null,!0)}),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"polite"}},[e._v(" "+e._s(e.politeAriaLive)+" ")]),n("div",{staticClass:"no-items-wrapper",attrs:{"aria-live":"assertive"}},[n("p",{staticClass:"no-items"},[e._v(" "+e._s(e.$t(e.assertiveAriaLive))+" ")])])],1),e.errorFetching?e._e():n("div",{staticClass:"filter-wrapper"},[n("div",{staticClass:"navigator-filter"},[n("div",{staticClass:"input-wrapper"},[n("FilterInput",{staticClass:"filter-component",attrs:{tags:e.availableTags,translatableTags:e.translatableTags,"selected-tags":e.selectedTagsModelValue,placeholder:e.$t("filter.title"),"should-keep-open-on-blur":!1,"position-reversed":!e.renderFilterOnTop,"clear-filter-on-tag-select":!1},on:{"update:selectedTags":function(t){e.selectedTagsModelValue=t},"update:selected-tags":function(t){e.selectedTagsModelValue=t},clear:e.clearFilters},model:{value:e.filter,callback:function(t){e.filter=t},expression:"filter"}})],1),e._t("filter")],2)])]}}],null,!0)},"BaseNavigatorCard",{technology:e.technology,isTechnologyBeta:e.isTechnologyBeta,technologyPath:e.technologyPath},!1))},ul=[],hl=n("e508");function pl(e){const t=Object(nn["g"])(Object(nn["d"])(e));return new RegExp(t,"ig")}var gl,fl,ml=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCardItem",{staticClass:"navigator-card-item",class:{expanded:e.expanded,active:e.isActive,"is-group":e.isGroupMarker},style:{"--nesting-index":e.item.depth},attrs:{"data-nesting-index":e.item.depth,id:"container-"+e.item.uid,"aria-hidden":e.isRendered?null:"true",hideNavigatorIcon:e.isGroupMarker},nativeOn:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button?null:(t.preventDefault(),e.handleLeftKeydown.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.handleRightKeydown.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.clickReference.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])?null:t.altKey?"button"in t&&2!==t.button?null:(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null}]},scopedSlots:e._u([{key:"depth-spacer",fn:function(){return[n("span",{attrs:{hidden:"",id:e.usageLabel}},[e._v(" "+e._s(e.$t("filter.navigate"))+" ")]),e.isParent?n("button",{staticClass:"tree-toggle",attrs:{tabindex:"-1","aria-labelledby":e.item.uid,"aria-expanded":e.expanded?"true":"false","aria-describedby":e.ariaDescribedBy},on:{click:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.toggleTree.apply(null,arguments))},function(t){return t.altKey?(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null},function(t){return t.metaKey?(t.preventDefault(),e.toggleSiblings.apply(null,arguments)):null}]}},[n("InlineChevronRightIcon",{staticClass:"icon-inline chevron",class:{rotate:e.expanded,animating:e.idState.isOpening}})],1):e._e()]},proxy:!0},{key:"navigator-icon",fn:function(t){var i,a=t.className;return[e.apiChange?n("span",{class:[(i={},i["changed changed-"+e.apiChange]=e.apiChange,i),a]}):n("TopicTypeIcon",{key:e.item.uid,class:a,attrs:{type:e.item.type,"image-override":e.item.icon?e.navigatorReferences[e.item.icon]:null,shouldCalculateOptimalWidth:!1}})]}},{key:"title-container",fn:function(){return[e.isParent?n("span",{attrs:{hidden:"",id:e.parentLabel}},[e._v(e._s(e.$tc("filter.parent-label",e.item.childUIDs.length,{"number-siblings":e.item.index+1,"total-siblings":e.item.siblingsCount,"parent-siblings":e.item.parent,"number-parent":e.item.childUIDs.length})))]):e._e(),e.isParent?e._e():n("span",{attrs:{id:e.siblingsLabel,hidden:""}},[e._v(" "+e._s(e.$t("filter.siblings-label",{"number-siblings":e.item.index+1,"total-siblings":e.item.siblingsCount,"parent-siblings":e.item.parent}))+" ")]),n(e.refComponent,{ref:"reference",tag:"component",staticClass:"leaf-link",class:{bolded:e.isBold},attrs:{id:e.item.uid,url:e.isGroupMarker?null:e.item.path||"",tabindex:e.isFocused?"0":"-1","aria-describedby":e.ariaDescribedBy+" "+e.usageLabel},nativeOn:{click:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.handleClick.apply(null,arguments)},function(t){return t.altKey?(t.preventDefault(),e.toggleEntireTree.apply(null,arguments)):null}]}},[n("HighlightMatches",{attrs:{text:e.item.title,matcher:e.filterPattern}})],1),e.isDeprecated?n("Badge",{attrs:{variant:"deprecated"}}):e.isBeta?n("Badge",{attrs:{variant:"beta"}}):e._e()]},proxy:!0}])})},yl=[],vl=n("34b0"),bl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"navigator-card-item"},[n("div",{staticClass:"head-wrapper"},[n("div",{staticClass:"depth-spacer"},[e._t("depth-spacer")],2),e.hideNavigatorIcon?e._e():n("div",{staticClass:"navigator-icon-wrapper"},[e._t("navigator-icon",null,{className:"navigator-icon"})],2),n("div",{staticClass:"title-container"},[e._t("title-container")],2)])])},Tl=[],Sl={name:"BaseNavigatorCardItem",props:{hideNavigatorIcon:{type:Boolean,default:()=>!1}}},_l=Sl,Cl=(n("b39c"),Object(K["a"])(_l,bl,Tl,!1,null,"0b9fe514",null)),kl=Cl.exports,wl={name:"HighlightMatch",props:{text:{type:String,required:!0},matcher:{type:RegExp,default:void 0}},render(e){const{matcher:t,text:n}=this;if(!t)return e("p",{class:"highlight"},n);const i=[];let a=0,s=null;const r=new RegExp(t,"gi");while(null!==(s=r.exec(n))){const t=s[0].length,r=s.index+t,o=n.slice(a,s.index);o&&i.push(e("span",o));const l=n.slice(s.index,r);l&&i.push(e("span",{class:"match"},l)),a=r}const o=n.slice(a,n.length);return o&&i.push(e("span",o)),e("p",{class:"highlight"},i)}},Il=wl,xl=(n("b831"),Object(K["a"])(Il,gl,fl,!1,null,"d75876e2",null)),$l=xl.exports,Ol={name:"NavigatorCardItem",mixins:[Object(hl["c"])({idProp:e=>e.item.uid})],components:{BaseNavigatorCardItem:kl,HighlightMatches:$l,TopicTypeIcon:_e["a"],InlineChevronRightIcon:vl["a"],Reference:To["a"],Badge:ei["a"]},props:{isRendered:{type:Boolean,default:!1},item:{type:Object,required:!0},expanded:{type:Boolean,default:!1},filterPattern:{type:RegExp,default:void 0},isActive:{type:Boolean,default:!1},isBold:{type:Boolean,default:!1},apiChange:{type:String,default:null,validator:e=>It["d"].includes(e)},isFocused:{type:Boolean,default:()=>!1},enableFocus:{type:Boolean,default:!0},navigatorReferences:{type:Object,default:()=>({})}},idState(){return{isOpening:!1}},computed:{isGroupMarker:({item:{type:e}})=>e===Ce["b"].groupMarker,isParent:({item:e,isGroupMarker:t})=>!!e.childUIDs.length&&!t,parentLabel:({item:e})=>"label-parent-"+e.uid,siblingsLabel:({item:e})=>"label-"+e.uid,usageLabel:({item:e})=>"usage-"+e.uid,ariaDescribedBy:({isParent:e,parentLabel:t,siblingsLabel:n})=>e?""+t:""+n,isBeta:({item:{beta:e}})=>!!e,isDeprecated:({item:{deprecated:e}})=>!!e,refComponent:({isGroupMarker:e})=>e?"h3":To["a"]},methods:{toggleTree(){this.idState.isOpening=!0,this.$emit("toggle",this.item)},toggleEntireTree(){this.idState.isOpening=!0,this.$emit("toggle-full",this.item)},toggleSiblings(){this.idState.isOpening=!0,this.$emit("toggle-siblings",this.item)},handleLeftKeydown(){this.expanded?this.toggleTree():this.$emit("focus-parent",this.item)},handleRightKeydown(){!this.expanded&&this.isParent&&this.toggleTree()},clickReference(){(this.$refs.reference.$el||this.$refs.reference).click()},focusReference(){(this.$refs.reference.$el||this.$refs.reference).focus()},handleClick(){this.isGroupMarker||this.$emit("navigate",this.item.uid)}},watch:{async isFocused(e){await Object(Ee["b"])(8),e&&this.isRendered&&this.enableFocus&&this.focusReference()},async expanded(){await Object(Ee["b"])(9),this.idState.isOpening=!1}}},Dl=Ol,Pl=(n("6ca9"),Object(K["a"])(Dl,ml,yl,!1,null,"0c96ff75",null)),Ll=Pl.exports,Al=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"navigator-card"},[n("div",{staticClass:"navigator-card-full-height"},[n("div",{staticClass:"navigator-card-inner"},[n("div",{staticClass:"head-wrapper"},[n("div",{staticClass:"head-inner"},[n("button",{staticClass:"close-card",class:{"hide-on-large":!e.allowHiding},attrs:{id:e.SIDEBAR_HIDE_BUTTON_ID,"aria-label":e.$t("navigator.close-navigator")},on:{click:e.handleHideClick}},[n("SidenavIcon",{staticClass:"icon-inline close-icon"})],1),n("Reference",{staticClass:"navigator-head",attrs:{id:e.INDEX_ROOT_KEY,url:e.technologyPath},nativeOn:{click:function(t){return t.altKey?(t.preventDefault(),e.$emit("head-click-alt")):null}}},[n("h2",{staticClass:"card-link"},[e._v(" "+e._s(e.technology)+" ")]),e.isTechnologyBeta?n("Badge",{attrs:{variant:"beta"}}):e._e()],1)],1)]),e._t("body",null,{className:"card-body"})],2)])])},Nl=[],El=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"sidenav-icon",attrs:{viewBox:"0 0 14 14",height:"14",themeId:"sidenav"}},[n("path",{attrs:{d:"M6.533 1.867h-6.533v10.267h14v-10.267zM0.933 11.2v-8.4h4.667v8.4zM13.067 11.2h-6.533v-8.4h6.533z"}}),n("path",{attrs:{d:"M1.867 5.133h2.8v0.933h-2.8z"}}),n("path",{attrs:{d:"M1.867 7.933h2.8v0.933h-2.8z"}})])},jl=[],Bl={name:"SidenavIcon",components:{SVGIcon:fr["a"]}},Rl=Bl,Ml=Object(K["a"])(Rl,El,jl,!1,null,null,null),zl=Ml.exports,Kl={name:"BaseNavigatorCard",components:{SidenavIcon:zl,Reference:To["a"],Badge:ei["a"]},props:{allowHiding:{type:Boolean,default:!0},technologyPath:{type:String,default:""},technology:{type:String,required:!0},isTechnologyBeta:{type:Boolean,default:!1}},data(){return{SIDEBAR_HIDE_BUTTON_ID:Fs,INDEX_ROOT_KEY:Ks}},methods:{async handleHideClick(){this.$emit("close"),await this.$nextTick();const e=document.getElementById(Go["d"]);e&&e.focus()}}},ql=Kl,Fl=(n("b32a"),Object(K["a"])(ql,Al,Nl,!1,null,"24789ed0",null)),Hl=Fl.exports;const Vl=e=>e[e.length-1],Wl=(e,t)=>JSON.stringify(e)===JSON.stringify(t),Ul="navigator.state",Gl={sampleCode:"sampleCode",tutorials:"tutorials",articles:"articles"},Ql={[Gl.sampleCode]:"Sample Code",[Gl.tutorials]:"Tutorials",[Gl.articles]:"Articles"},Xl=Object.fromEntries(Object.entries(Ql).map(([e,t])=>[t,e])),Yl={[Ce["b"].article]:Gl.articles,[Ce["b"].learn]:Gl.tutorials,[Ce["b"].overview]:Gl.tutorials,[Ce["b"].resources]:Gl.tutorials,[Ce["b"].sampleCode]:Gl.sampleCode,[Ce["b"].section]:Gl.tutorials,[Ce["b"].tutorial]:Gl.tutorials,[Ce["b"].project]:Gl.tutorials},Jl="navigator.no-results",Zl="navigator.no-children",ec="navigator.error-fetching",tc="navigator.items-found",nc="navigator.tags.hide-deprecated";var ic={name:"NavigatorCard",constants:{STORAGE_KEY:Ul,FILTER_TAGS:Gl,FILTER_TAGS_TO_LABELS:Ql,FILTER_LABELS_TO_TAGS:Xl,TOPIC_TYPE_TO_TAG:Yl,ERROR_FETCHING:ec,ITEMS_FOUND:tc,HIDE_DEPRECATED:nc},components:{FilterInput:oo,NavigatorCardItem:Ll,DynamicScroller:hl["a"],DynamicScrollerItem:hl["b"],BaseNavigatorCard:Hl},props:{...Hl.props,children:{type:Array,required:!0},activePath:{type:Array,required:!0},type:{type:String,required:!0},scrollLockID:{type:String,default:""},errorFetching:{type:Boolean,default:!1},apiChanges:{type:Object,default:null},isTechnologyBeta:{type:Boolean,default:!1},navigatorReferences:{type:Object,default:()=>{}},renderFilterOnTop:{type:Boolean,default:!1},hideAvailableTags:{type:Boolean,default:!1}},mixins:[zr],data(){return{filter:"",debouncedFilter:"",selectedTags:[],openNodes:Object.freeze({}),nodesToRender:Object.freeze([]),activeUID:null,lastFocusTarget:null,allNodesToggled:!1,translatableTags:[nc]}},computed:{politeAriaLive(){const{hasNodes:e,nodesToRender:t}=this;return e?this.$tc(tc,t.length,{number:t.length}):""},assertiveAriaLive:({hasNodes:e,hasFilter:t,errorFetching:n})=>e?"":t?Jl:n?ec:Zl,availableTags({selectedTags:e,renderableChildNodesMap:t,apiChangesObject:n,hideAvailableTags:i}){if(i||e.length)return[];const a=new Set(Object.values(n)),s=new Set(Object.values(Ql)),r=new Set([nc]);a.size&&r.delete(nc);const o={type:[],changes:[],other:[]};for(const l in t){if(!Object.hasOwnProperty.call(t,l))continue;if(!s.size&&!a.size&&!r.size)break;const{type:e,path:i,deprecated:c}=t[l],d=Ql[Yl[e]],u=n[i];s.has(d)&&(o.type.push(d),s.delete(d)),u&&a.has(u)&&(o.changes.push(this.$t(It["b"][u])),a.delete(u)),c&&r.has(nc)&&(o.other.push(nc),r.delete(nc))}return o.type.concat(o.changes,o.other)},selectedTagsModelValue:{get(){return this.selectedTags.map(e=>Ql[e]||this.$t(It["b"][e])||e)},set(e){(this.selectedTags.length||e.length)&&(this.selectedTags=e.map(e=>Xl[e]||It["a"][e]||e))}},filterPattern:({debouncedFilter:e})=>e?new RegExp(pl(e),"i"):null,itemSize:()=>qs,childrenMap({children:e}){return Vs(e)},activePathChildren({activeUID:e,childrenMap:t}){return e&&t[e]?Qs(e,t):[]},activePathMap:({activePathChildren:e})=>Object.fromEntries(e.map(({uid:e})=>[e,!0])),activeIndex:({activeUID:e,nodesToRender:t})=>t.findIndex(t=>t.uid===e),filteredChildren({hasFilter:e,children:t,filterPattern:n,selectedTags:i,apiChanges:a}){if(!e)return[];const s=new Set(i);return t.filter(({title:e,path:t,type:i,deprecated:r,deprecatedChildrenCount:o,childUIDs:l})=>{const c=r||o===l.length,d=!n||n.test(e);let u=!0;s.size&&(u=s.has(Yl[i]),a&&!u&&(u=s.has(a[t])),!c&&s.has(nc)&&(u=!0));const h=!a||!!a[t];return d&&u&&h})},renderableChildNodesMap({hasFilter:e,childrenMap:t,deprecatedHidden:n,filteredChildren:i,removeDeprecated:a}){if(!e)return t;const s=i.length-1,r=new Set([]);for(let o=s;o>=0;o-=1){const e=i[o],s=t[e.groupMarkerUID];if(s&&r.add(s),r.has(e))continue;if(r.has(t[e.parent])&&e.type!==Ce["b"].groupMarker){r.add(e);continue}let l=[];e.childUIDs.length&&(l=a(Us(e.uid,t),n)),l.concat(Qs(e.uid,t)).forEach(e=>r.add(e))}return Vs([...r])},nodeChangeDeps:({filteredChildren:e,activePathChildren:t,debouncedFilter:n,selectedTags:i})=>[e,t,n,i],hasFilter({debouncedFilter:e,selectedTags:t,apiChanges:n}){return Boolean(e.length||t.length||n)},deprecatedHidden:({selectedTags:e})=>e[0]===nc,apiChangesObject(){return this.apiChanges||{}},hasNodes:({nodesToRender:e})=>!!e.length,totalItemsToNavigate:({nodesToRender:e})=>e.length,lastActivePathItem:({activePath:e})=>Vl(e)},created(){this.restorePersistedState()},watch:{filter:"debounceInput",nodeChangeDeps:"trackOpenNodes",activePath:"handleActivePathChange",apiChanges(e){e||(this.selectedTags=this.selectedTags.filter(e=>!this.$t(It["b"][e])))},async activeUID(e,t){await this.$nextTick();const n=this.$refs["dynamicScroller_"+t];n&&n.updateSize&&n.updateSize()}},methods:{setUnlessEqual(e,t){Wl(t,this[e])||(this[e]=Object.freeze(t))},toggleAllNodes(){const e=this.children.filter(e=>e.parent===Ks&&e.type!==Ce["b"].groupMarker&&e.childUIDs.length);this.allNodesToggled=!this.allNodesToggled,this.allNodesToggled&&(this.openNodes={},this.generateNodesToRender()),e.forEach(e=>{this.toggleFullTree(e)})},clearFilters(){this.filter="",this.debouncedFilter="",this.selectedTags=[]},scrollToFocus(){this.$refs.scroller.scrollToItem(this.focusedIndex)},debounceInput:Ir((function(e){this.debouncedFilter=e,this.lastFocusTarget=null}),200),trackOpenNodes([e,t,n,i],[,a=[],s="",r=[]]=[]){if(n!==s&&!s&&this.getFromStorage("filter")||!Wl(i,r)&&!r.length&&this.getFromStorage("selectedTags",[]).length)return;const o=!Wl(a,t),{childrenMap:l}=this;let c=t;if(!(this.deprecatedHidden&&!this.debouncedFilter.length||o&&this.hasFilter)&&this.hasFilter){const t=new Set,n=e.length-1;for(let i=n;i>=0;i-=1){const n=e[i];t.has(l[n.parent])||t.has(n)||Qs(n.uid,l).slice(0,-1).forEach(e=>t.add(e))}c=[...t]}const d=o?{...this.openNodes}:{},u=c.reduce((e,t)=>(e[t.uid]=!0,e),d);this.setUnlessEqual("openNodes",u),this.generateNodesToRender(),this.updateFocusIndexExternally()},toggle(e){const t=this.openNodes[e.uid];let n=[],i=[];if(t){const t=Object(w["a"])(this.openNodes),n=Us(e.uid,this.childrenMap);n.forEach(({uid:e})=>{delete t[e]}),this.setUnlessEqual("openNodes",t),i=n.slice(1)}else this.setUnlessEqual("openNodes",{...this.openNodes,[e.uid]:!0}),n=Gs(e.uid,this.childrenMap,this.children).filter(e=>this.renderableChildNodesMap[e.uid]);this.augmentRenderNodes({uid:e.uid,include:n,exclude:i})},toggleFullTree(e){const t=this.openNodes[e.uid],n=Object(w["a"])(this.openNodes),i=Us(e.uid,this.childrenMap);let a=[],s=[];i.forEach(({uid:e})=>{t?delete n[e]:n[e]=!0}),t?a=i.slice(1):s=i.slice(1).filter(e=>this.renderableChildNodesMap[e.uid]),this.setUnlessEqual("openNodes",n),this.augmentRenderNodes({uid:e.uid,exclude:a,include:s})},toggleSiblings(e){const t=this.openNodes[e.uid],n=Object(w["a"])(this.openNodes),i=Xs(e.uid,this.childrenMap,this.children);i.forEach(({uid:e,childUIDs:i,type:a})=>{if(i.length&&a!==Ce["b"].groupMarker)if(t){const t=Us(e,this.childrenMap);t.forEach(e=>{delete n[e.uid]}),delete n[e],this.augmentRenderNodes({uid:e,exclude:t.slice(1),include:[]})}else{n[e]=!0;const t=Gs(e,this.childrenMap,this.children).filter(e=>this.renderableChildNodesMap[e.uid]);this.augmentRenderNodes({uid:e,exclude:[],include:t})}}),this.setUnlessEqual("openNodes",n),this.persistState()},removeDeprecated(e,t){return t?e.filter(({deprecated:e})=>!e):e},generateNodesToRender(){const{children:e,openNodes:t,renderableChildNodesMap:n}=this;this.setUnlessEqual("nodesToRender",e.filter(e=>n[e.uid]&&(e.parent===Ks||t[e.parent]))),this.persistState(),this.scrollToElement()},augmentRenderNodes({uid:e,include:t=[],exclude:n=[]}){const i=this.nodesToRender.findIndex(t=>t.uid===e);if(t.length){const e=t.filter(e=>!this.nodesToRender.includes(e)),n=this.nodesToRender.slice(0);n.splice(i+1,0,...e),this.setUnlessEqual("nodesToRender",n)}else if(n.length){const e=new Set(n);this.setUnlessEqual("nodesToRender",this.nodesToRender.filter(t=>!e.has(t)))}this.persistState()},getFromStorage(e,t=null){const n=Fo["b"].get(Ul,{}),i=n[this.technologyPath];return i?e?i[e]||t:i:t},persistState(){const e={path:this.lastActivePathItem},{path:t}=this.activeUID&&this.childrenMap[this.activeUID]||e,n={technology:this.technology,path:t,hasApiChanges:!!this.apiChanges,openNodes:Object.keys(this.openNodes).map(Number),nodesToRender:this.nodesToRender.map(({uid:e})=>e),activeUID:this.activeUID,filter:this.filter,selectedTags:this.selectedTags},i={...Fo["b"].get(Ul,{}),[this.technologyPath]:n};Fo["b"].set(Ul,i)},clearPersistedState(){const e={...Fo["b"].get(Ul,{}),[this.technologyPath]:{}};Fo["b"].set(Ul,e)},restorePersistedState(){const e=this.getFromStorage();if(!e||e.path!==this.lastActivePathItem)return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);const{technology:t,nodesToRender:n=[],filter:i="",hasAPIChanges:a=!1,activeUID:s=null,selectedTags:r=[],openNodes:o}=e;if(!n.length&&!i&&!r.length)return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);const{childrenMap:l}=this,c=n.every(e=>l[e]),d=s?(this.childrenMap[s]||{}).path===this.lastActivePathItem:1===this.activePath.length;if(t!==this.technology||!c||a!==Boolean(this.apiChanges)||!d||s&&!i&&!r.length&&!n.includes(s))return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);this.setUnlessEqual("openNodes",Object.fromEntries(o.map(e=>[e,!0]))),this.setUnlessEqual("nodesToRender",n.map(e=>l[e])),this.selectedTags=r,this.filter=i,this.debouncedFilter=this.filter,this.activeUID=s,this.scrollToElement()},async scrollToElement(){if(await Object(Ee["b"])(1),!this.$refs.scroller)return;if(this.hasFilter&&!this.deprecatedHidden)return void this.$refs.scroller.scrollToItem(0);const e=document.getElementById(this.activeUID);if(e&&0===this.getChildPositionInScroller(e))return;const t=this.nodesToRender.findIndex(e=>e.uid===this.activeUID);-1!==t&&this.$refs.scroller.scrollToItem(t)},getChildPositionInScroller(e){if(!e)return 0;const{paddingTop:t,paddingBottom:n}=getComputedStyle(this.$refs.scroller.$el),i={top:parseInt(t,10)||0,bottom:parseInt(n,10)||0},{y:a,height:s}=this.$refs.scroller.$el.getBoundingClientRect(),{y:r}=e.getBoundingClientRect(),o=e.offsetParent.offsetHeight,l=r-a-i.top;return l<0?-1:l+o>=s-i.bottom?1:0},isInsideScroller(e){return this.$refs.scroller.$el.contains(e)},handleFocusIn({target:e}){this.lastFocusTarget=e;const t=this.getChildPositionInScroller(e);if(0===t)return;const{offsetHeight:n}=e.offsetParent;this.$refs.scroller.$el.scrollBy({top:n*t,left:0})},handleFocusOut(e){e.relatedTarget&&(this.isInsideScroller(e.relatedTarget)||(this.lastFocusTarget=null))},handleScrollerUpdate:Ir((async function(){await Object(Ee["a"])(300),this.lastFocusTarget&&this.isInsideScroller(this.lastFocusTarget)&&document.activeElement!==this.lastFocusTarget&&this.lastFocusTarget.focus({preventScroll:!0})}),50),setActiveUID(e){this.activeUID=e},handleNavigationChange(e){this.childrenMap[e].path.startsWith(this.technologyPath)&&this.setActiveUID(e)},pathsToFlatChildren(e){const t=e.slice(0).reverse(),{childrenMap:n}=this;let i=this.children;const a=[];while(t.length){const e=t.pop(),s=i.find(t=>t.path===e);if(!s)break;a.push(s),t.length&&(i=s.childUIDs.map(e=>n[e]))}return a},handleActivePathChange(e){const t=this.childrenMap[this.activeUID],n=Vl(e);if(t){if(n===t.path)return;const e=Xs(this.activeUID,this.childrenMap,this.children),i=Gs(this.activeUID,this.childrenMap,this.children),a=Qs(this.activeUID,this.childrenMap),s=[...i,...e,...a].find(e=>e.path===n);if(s)return void this.setActiveUID(s.uid)}const i=this.pathsToFlatChildren(e);i.length?this.setActiveUID(i[i.length-1].uid):this.activeUID?this.setActiveUID(null):this.trackOpenNodes(this.nodeChangeDeps)},updateFocusIndexExternally(){this.externalFocusChange=!0,this.activeIndex>0?this.focusIndex(this.activeIndex):this.focusIndex(0)},focusNodeParent(e){const t=this.childrenMap[e.parent];if(!t)return;const n=this.nodesToRender.findIndex(e=>e.uid===t.uid);-1!==n&&this.focusIndex(n)}}},ac=ic,sc=(n("8e4d"),Object(K["a"])(ac,dl,ul,!1,null,"1543892a",null)),rc=sc.exports,oc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCard",e._b({on:{close:function(t){return e.$emit("close")}},scopedSlots:e._u([{key:"body",fn:function(t){var i=t.className;return[n("transition",{attrs:{name:"delay-visibility"}},[n("div",{staticClass:"loading-navigator",class:i,attrs:{"aria-hidden":"true"}},e._l(e.LOADER_ROWS,(function(e,t){return n("LoadingNavigatorItem",{key:t,attrs:{index:t,width:e.width,hideNavigatorIcon:e.hideNavigatorIcon}})})),1)])]}}])},"BaseNavigatorCard",e.$props,!1))},lc=[],cc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseNavigatorCardItem",{staticClass:"loading-navigator-item",style:"--index: "+e.index+";",attrs:{hideNavigatorIcon:e.hideNavigatorIcon},scopedSlots:e._u([{key:"navigator-icon",fn:function(e){var t=e.className;return[n("div",{class:t})]}},{key:"title-container",fn:function(){return[n("div",{staticClass:"loader",style:{width:e.width}})]},proxy:!0}])})},dc=[],uc={name:"LoadingNavigatorItem",components:{BaseNavigatorCardItem:kl},props:{...kl.props,index:{type:Number,default:0},width:{type:String,default:"50%"}}},hc=uc,pc=(n("d1b4"),Object(K["a"])(hc,cc,dc,!1,null,"0de29914",null)),gc=pc.exports;const fc=[{width:"30%",hideNavigatorIcon:!0},{width:"80%"},{width:"50%"}];var mc={name:"LoadingNavigatorCard",components:{BaseNavigatorCard:Hl,LoadingNavigatorItem:gc},props:{...Hl.props},data(){return{LOADER_ROWS:fc}}},yc=mc,vc=(n("115d"),Object(K["a"])(yc,oc,lc,!1,null,"4b6d345f",null)),bc=vc.exports,Tc={name:"Navigator",components:{NavigatorCard:rc,LoadingNavigatorCard:bc},data(){return{INDEX_ROOT_KEY:Ks}},props:{flatChildren:{type:Array,required:!0},parentTopicIdentifiers:{type:Array,required:!0},technology:{type:Object,required:!0},isFetching:{type:Boolean,default:!1},references:{type:Object,default:()=>{}},navigatorReferences:{type:Object,default:()=>{}},scrollLockID:{type:String,default:""},errorFetching:{type:Boolean,default:!1},renderFilterOnTop:{type:Boolean,default:!1},apiChanges:{type:Object,default:null},allowHiding:{type:Boolean,default:!0}},computed:{parentTopicReferences({references:e,parentTopicIdentifiers:t}){return t.reduce((t,n)=>{const i=e[n];return i?t.concat(i):(console.error(`Reference for "${n}" is missing`),t)},[])},activePath({parentTopicReferences:e,$route:{path:t}}){if(t=t.replace(/\/$/,"").toLowerCase(),!e.length)return[t];let n=1;return"technologies"===e[0].kind&&(n=2),e.slice(n).map(e=>e.url).concat(t)},type:()=>Ce["b"].module,technologyProps:({technology:e})=>({technology:e.title,technologyPath:e.path||e.url,isTechnologyBeta:e.beta})}},Sc=Tc,_c=(n("9c7e"),Object(K["a"])(Sc,ll,cl,!1,null,"159b9764",null)),Cc=_c.exports,kc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavBase",{staticClass:"documentation-nav",attrs:{breakpoint:e.BreakpointName.medium,hasOverlay:!1,hasSolidBackground:"",hasNoBorder:e.hasNoBorder,isDark:e.isDark,isWideFormat:"",hasFullWidthBorder:"","aria-label":e.$t("api-reference")},scopedSlots:e._u([e.displaySidenav?{key:"pre-title",fn:function(t){var i=t.closeNav,a=t.isOpen,s=t.currentBreakpoint,r=t.className;return[n("div",{class:r},[n("transition",{attrs:{name:"sidenav-toggle"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.sidenavHiddenOnLarge,expression:"sidenavHiddenOnLarge"}],staticClass:"sidenav-toggle-wrapper"},[n("button",{staticClass:"sidenav-toggle",attrs:{"aria-label":e.$t("navigator.open-navigator"),id:e.baseNavOpenSidenavButtonId,tabindex:a?-1:null},on:{click:function(t){return t.preventDefault(),e.handleSidenavToggle(i,s)}}},[n("span",{staticClass:"sidenav-icon-wrapper"},[n("SidenavIcon",{staticClass:"icon-inline sidenav-icon"})],1)]),n("span",{staticClass:"sidenav-toggle__separator"})])])],1)]}}:null,{key:"tray",fn:function(t){var i=t.closeNav;return[n("Hierarchy",{attrs:{currentTopicTitle:e.title,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,parentTopicIdentifiers:e.hierarchyItems,currentTopicTags:e.currentTopicTags,references:e.references}}),n("NavMenuItems",{staticClass:"nav-menu-settings",attrs:{previousSiblingChildren:e.breadcrumbCount}},[e.interfaceLanguage&&(e.swiftPath||e.objcPath)?n("LanguageToggle",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath,closeNav:i}}):e._e(),e._t("menu-items")],2),e._t("tray-after",null,null,{breadcrumbCount:e.breadcrumbCount})]}}],null,!0)},[n("template",{slot:"default"},[e._t("title",(function(){return[e.rootLink?n("router-link",{staticClass:"nav-title-link",attrs:{to:e.rootLink}},[e._v(" "+e._s(e.$t("documentation.title"))+" ")]):n("span",{staticClass:"nav-title-link inactive"},[e._v(e._s(e.$t("documentation.title")))])]}),null,{rootLink:e.rootLink,linkClass:"nav-title-link",inactiveClass:"inactive"})],2),n("template",{slot:"after-content"},[e._t("after-content")],2)],2)},wc=[],Ic=n("cbcf"),xc=n("9b30"),$c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItems",{staticClass:"hierarchy",class:{"has-badge":e.hasBadge},attrs:{"aria-label":e.$t("documentation.nav.breadcrumbs")}},[e.root?n("HierarchyItem",{key:e.root.title,staticClass:"root-hierarchy",attrs:{url:e.addQueryParamsToUrl(e.root.url)}},[e._v(" "+e._s(e.root.title)+" ")]):e._e(),e._l(e.collapsibleItems,(function(t){return n("HierarchyItem",{key:t.title,attrs:{isCollapsed:"",url:e.addQueryParamsToUrl(t.url)}},[e._v(" "+e._s(t.title)+" ")])})),e.collapsibleItems.length?n("HierarchyCollapsedItems",{attrs:{topics:e.collapsibleItems}}):e._e(),e._l(e.nonCollapsibleItems,(function(t){return n("HierarchyItem",{key:t.title,attrs:{url:e.addQueryParamsToUrl(t.url)}},[e._v(" "+e._s(t.title)+" ")])})),n("HierarchyItem",[e._v(" "+e._s(e.currentTopicTitle)+" "),n("template",{slot:"tags"},[e.isSymbolDeprecated?n("Badge",{attrs:{variant:"deprecated"}}):e.isSymbolBeta?n("Badge",{attrs:{variant:"beta"}}):e._e(),e._l(e.currentTopicTags,(function(t){return n("Badge",{key:t.type+"-"+t.text,attrs:{variant:t.type}},[e._v(" "+e._s(t.text)+" ")])}))],2)],2)],2)},Oc=[],Dc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"hierarchy-collapsed-items"},[n("span",{staticClass:"hierarchy-item-icon icon-inline"},[e._v("/")]),n("button",{ref:"btn",staticClass:"toggle",class:{focused:!e.collapsed},on:{click:e.toggleCollapsed}},[n("span",{staticClass:"indicator"},[n("EllipsisIcon",{staticClass:"icon-inline toggle-icon"})],1)]),n("ul",{ref:"dropdown",staticClass:"dropdown",class:{collapsed:e.collapsed}},e._l(e.topicsWithUrls,(function(t){return n("li",{key:t.title,staticClass:"dropdown-item"},[n("router-link",{staticClass:"nav-menu-link",attrs:{to:t.url}},[e._v(e._s(t.title))])],1)})),0)])},Pc=[],Lc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"ellipsis-icon",attrs:{viewBox:"0 0 14 14",themeId:"ellipsis"}},[n("path",{attrs:{d:"m12.439 7.777v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554z"}})])},Ac=[],Nc={name:"EllipsisIcon",components:{SVGIcon:fr["a"]}},Ec=Nc,jc=Object(K["a"])(Ec,Lc,Ac,!1,null,null,null),Bc=jc.exports,Rc={name:"HierarchyCollapsedItems",components:{EllipsisIcon:Bc},data:()=>({collapsed:!0}),props:{topics:{type:Array,required:!0}},watch:{collapsed(e,t){t&&!e?document.addEventListener("click",this.handleDocumentClick,!1):!t&&e&&document.removeEventListener("click",this.handleDocumentClick,!1)}},beforeDestroy(){document.removeEventListener("click",this.handleDocumentClick,!1)},computed:{topicsWithUrls:({$route:e,topics:t})=>t.map(t=>({...t,url:Object(P["b"])(t.url,e.query)}))},methods:{handleDocumentClick(e){const{target:t}=e,{collapsed:n,$refs:{btn:i,dropdown:a}}=this,s=!i.contains(t)&&!a.contains(t);!n&&s&&(this.collapsed=!0)},toggleCollapsed(){this.collapsed=!this.collapsed}}},Mc=Rc,zc=(n("2ca2"),Object(K["a"])(Mc,Dc,Pc,!1,null,"74906830",null)),Kc=zc.exports,qc=function(e,t){var n=t._c;return n(t.$options.components.NavMenuItemBase,{tag:"component",staticClass:"hierarchy-item",class:[{collapsed:t.props.isCollapsed},t.data.staticClass]},[n("span",{staticClass:"hierarchy-item-icon icon-inline"},[t._v("/")]),t.props.url?n("router-link",{staticClass:"parent item nav-menu-link",attrs:{to:t.props.url}},[t._t("default")],2):[n("span",{staticClass:"current item"},[t._t("default")],2),t._t("tags")]],2)},Fc=[],Hc=n("863d"),Vc={name:"HierarchyItem",components:{NavMenuItemBase:Hc["a"],InlineChevronRightIcon:vl["a"]},props:{isCollapsed:Boolean,url:{type:String,required:!1}}},Wc=Vc,Uc=(n("260a"),Object(K["a"])(Wc,qc,Fc,!0,null,"382bf39e",null)),Gc=Uc.exports;const Qc=3;var Xc={name:"Hierarchy",components:{Badge:ei["a"],NavMenuItems:xc["a"],HierarchyCollapsedItems:Kc,HierarchyItem:Gc},constants:{MaxVisibleLinks:Qc},inject:["store"],props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,references:Object,currentTopicTitle:{type:String,required:!0},parentTopicIdentifiers:{type:Array,default:()=>[]},currentTopicTags:{type:Array,default:()=>[]}},computed:{windowWidth:({store:e})=>e.state.contentWidth,parentTopics(){return this.parentTopicIdentifiers.reduce((e,t)=>{const n=this.references[t];if(n){const{title:t,url:i}=n;return e.concat({title:t,url:i})}return console.error(`Reference for "${t}" is missing`),e},[])},root:({parentTopics:e,windowWidth:t})=>t<=1e3?null:e[0],firstItemSlice:({root:e})=>e?1:0,linksAfterCollapse:({windowWidth:e,hasBadge:t})=>{const n=t?1:0;return e>1200?Qc-n:e>1e3?Qc-1-n:e>=800?Qc-2-n:0},collapsibleItems:({parentTopics:e,linksAfterCollapse:t,firstItemSlice:n})=>t?e.slice(n,-t):e.slice(n),nonCollapsibleItems:({parentTopics:e,linksAfterCollapse:t,firstItemSlice:n})=>t?e.slice(n).slice(-t):[],hasBadge:({isSymbolDeprecated:e,isSymbolBeta:t,currentTopicTags:n})=>e||t||n.length},methods:{addQueryParamsToUrl(e){return Object(P["b"])(e,this.$route.query)}}},Yc=Xc,Jc=(n("5208"),Object(K["a"])(Yc,$c,Oc,!1,null,"c2bd6086",null)),Zc=Jc.exports,ed=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItemBase",{staticClass:"nav-menu-setting language-container"},[n("div",{class:{"language-toggle-container":e.hasLanguages}},[n("select",{ref:"language-sizer",staticClass:"language-dropdown language-sizer",attrs:{"aria-hidden":"true",tabindex:"-1"}},[n("option",{key:e.currentLanguage.name,attrs:{selected:""}},[e._v(e._s(e.currentLanguage.name))])]),n("label",{staticClass:"nav-menu-setting-label",attrs:{for:e.hasLanguages?"language-toggle":null}},[e._v(e._s(e.$t("formats.colon",{content:e.$t("language")})))]),e.hasLanguages?n("select",{directives:[{name:"model",rawName:"v-model",value:e.languageModel,expression:"languageModel"}],staticClass:"language-dropdown nav-menu-link",style:"width: "+e.adjustedWidth+"px",attrs:{id:"language-toggle"},on:{change:[function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t="_value"in e?e._value:e.value;return t}));e.languageModel=t.target.multiple?n:n[0]},function(t){return e.pushRoute(e.currentLanguage.route)}]}},e._l(e.languages,(function(t){return n("option",{key:t.api,domProps:{value:t.api}},[e._v(" "+e._s(t.name)+" ")])})),0):n("span",{staticClass:"nav-menu-toggle-none current-language",attrs:{"aria-current":"page"}},[e._v(e._s(e.currentLanguage.name))]),e.hasLanguages?n("InlineChevronDownIcon",{staticClass:"toggle-icon icon-inline"}):e._e()],1),e.hasLanguages?n("div",{staticClass:"language-list-container"},[n("span",{staticClass:"nav-menu-setting-label"},[e._v(e._s(e.$t("formats.colon",{content:e.$t("language")})))]),n("ul",{staticClass:"language-list"},e._l(e.languages,(function(t){return n("li",{key:t.api,staticClass:"language-list-item"},[t.api===e.languageModel?n("span",{staticClass:"current-language",attrs:{"data-language":t.api,"aria-current":"page"}},[e._v(" "+e._s(t.name)+" ")]):n("a",{staticClass:"nav-menu-link",attrs:{href:"#"},on:{click:function(n){return n.preventDefault(),e.pushRoute(t.route)}}},[e._v(" "+e._s(t.name)+" ")])])})),0)]):e._e()])},td=[],nd=n("7948"),id={name:"LanguageToggle",components:{InlineChevronDownIcon:nd["a"],NavMenuItemBase:Hc["a"]},inject:{store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},closeNav:{type:Function,default:()=>{}}},data(){return{languageModel:null,adjustedWidth:0}},mounted(){const e=Ne(async()=>{await Object(Ee["b"])(3),this.calculateSelectWidth()},150);window.addEventListener("resize",e),window.addEventListener("orientationchange",e),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("resize",e),window.removeEventListener("orientationchange",e)})},watch:{interfaceLanguage:{immediate:!0,handler(e){this.languageModel=e}},currentLanguage:{immediate:!0,handler:"calculateSelectWidth"}},methods:{getRoute(e){const t=e.query===O["a"].swift.key.url?void 0:e.query;return{query:{...this.$route.query,language:t},path:this.isCurrentPath(e.path)?null:Object(L["d"])(e.path)}},async pushRoute(e){await this.closeNav(),this.store.setPreferredLanguage(e.query),this.$router.push(this.getRoute(e))},isCurrentPath(e){return this.$route.path.replace(/^\//,"")===e},async calculateSelectWidth(){await this.$nextTick(),this.adjustedWidth=this.$refs["language-sizer"].clientWidth+6}},computed:{languages(){return[{name:O["a"].swift.name,api:O["a"].swift.key.api,route:{path:this.swiftPath,query:O["a"].swift.key.url}},{name:O["a"].objectiveC.name,api:O["a"].objectiveC.key.api,route:{path:this.objcPath,query:O["a"].objectiveC.key.url}}]},currentLanguage:({languages:e,languageModel:t})=>e.find(e=>e.api===t),hasLanguages:({objcPath:e,swiftPath:t})=>t&&e}},ad=id,sd=(n("b857"),Object(K["a"])(ad,ed,td,!1,null,"d12167e0",null)),rd=sd.exports,od={name:"DocumentationNav",components:{SidenavIcon:zl,NavBase:Ic["a"],NavMenuItems:xc["a"],Hierarchy:Zc,LanguageToggle:rd},props:{title:{type:String,required:!1},parentTopicIdentifiers:{type:Array,required:!1},isSymbolBeta:{type:Boolean,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isDark:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},currentTopicTags:{type:Array,required:!0},references:{type:Object,default:()=>({})},interfaceLanguage:{type:String,required:!1},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},sidenavHiddenOnLarge:{type:Boolean,default:!1},displaySidenav:{type:Boolean,default:!1}},computed:{baseNavOpenSidenavButtonId:()=>Go["d"],BreakpointName:()=>Vo["b"],breadcrumbCount:({hierarchyItems:e})=>e.length+1,rootHierarchyReference:({parentTopicIdentifiers:e,references:t})=>t[e[0]]||{},isRootTechnologyLink:({rootHierarchyReference:{kind:e}})=>"technologies"===e,rootLink:({isRootTechnologyLink:e,rootHierarchyReference:t,$route:n})=>e?{path:t.url,query:n.query}:null,hierarchyItems:({parentTopicIdentifiers:e,isRootTechnologyLink:t})=>t?e.slice(1):e},methods:{async handleSidenavToggle(e,t){await e(),this.$emit("toggle-sidenav",t),await this.$nextTick();const n=document.getElementById(Fs);n&&n.focus()}}},ld=od,cd=(n("c61f"),Object(K["a"])(ld,kc,wc,!1,null,"138d523a",null)),dd=cd.exports,ud=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"StaticContentWidth"},[e._t("default")],2)},hd=[],pd={name:"StaticContentWidth",inject:["store"],mounted(){const e=Ne(async()=>{await this.$nextTick(),this.store.setContentWidth(this.$el.offsetWidth)},150);window.addEventListener("resize",e),window.addEventListener("orientationchange",e),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("resize",e),window.removeEventListener("orientationchange",e)}),e()}},gd=pd,fd=Object(K["a"])(gd,ud,hd,!1,null,null,null),md=fd.exports,yd=n("3bdd"),vd=n("4009");const bd="symbol";var Td={watch:{topicData:{immediate:!0,handler:"extractOnThisPageSections"}},methods:{shouldRegisterContentSection(e){return e.type===_n["BlockType"].heading&&e.level<4},extractOnThisPageSections(e){if(!e)return;this.store.resetPageSections();const{metadata:{title:t},primaryContentSections:n,topicSections:i,defaultImplementationsSections:a,relationshipsSections:s,seeAlsoSections:r,kind:o}=e;this.store.addOnThisPageSection({title:t,anchor:vd["a"],level:1,isSymbol:o===bd},{i18n:!1}),n&&n.forEach(e=>{switch(e.kind){case Ke.content:At["a"].methods.forEach.call(e,e=>{this.shouldRegisterContentSection(e)&&this.store.addOnThisPageSection({title:e.text,anchor:e.anchor||Object(nn["a"])(e.text),level:e.level},{i18n:!1})});break;case Ke.properties:case Ke.restBody:case Ke.restCookies:case Ke.restEndpoint:case Ke.restHeaders:case Ke.restParameters:case Ke.restResponses:this.store.addOnThisPageSection({title:e.title,anchor:Object(nn["a"])(e.title),level:2});break;default:qt[e.kind]&&this.store.addOnThisPageSection(qt[e.kind])}}),i&&this.store.addOnThisPageSection(Kt.topics),a&&this.store.addOnThisPageSection(Kt.defaultImplementations),s&&this.store.addOnThisPageSection(Kt.relationships),r&&this.store.addOnThisPageSection(Kt.seeAlso)}}},Sd=n("9b56");const _d="0.3.0",Cd="navigator-hidden-large",{extractProps:kd}=Is.methods;var wd={name:"DocumentationTopicView",constants:{MIN_RENDER_JSON_VERSION_WITH_INDEX:_d,NAVIGATOR_HIDDEN_ON_LARGE_KEY:Cd},components:{Navigator:Cc,AdjustableSidebarWidth:ol,StaticContentWidth:md,NavigatorDataProvider:nr,Topic:Is,CodeTheme:Bs["a"],Nav:dd,QuickNavigationButton:lr,QuickNavigationModal:zo,PortalTarget:I["PortalTarget"]},mixins:[Ms["a"],zs["a"],Td],props:{enableMinimized:{type:Boolean,default:!1}},data(){return{topicDataDefault:null,topicDataObjc:null,sidenavVisibleOnMobile:!1,sidenavHiddenOnLarge:Fo["c"].get(Cd,!1),showQuickNavigationModal:!1,store:js,BreakpointName:Vo["b"]}},computed:{objcOverrides:({topicData:e})=>{const{variantOverrides:t=[]}=e||{},n=({interfaceLanguage:e})=>e===O["a"].objectiveC.key.api,i=({traits:e})=>e.some(n),a=t.find(i);return a?a.patch:null},enableQuickNavigation:({isTargetIDE:e})=>!e&&Object(Ze["c"])(["features","docs","quickNavigation","enable"],!0),topicData:{get(){return this.topicDataObjc?this.topicDataObjc:this.topicDataDefault},set(e){this.topicDataDefault=e}},topicKey:({$route:e,topicProps:t})=>[e.path,t.interfaceLanguage].join(),topicProps(){return kd(this.topicData)},parentTopicIdentifiers:({topicProps:{hierarchy:{paths:e=[]},references:t},$route:n})=>e.length?e.find(e=>{const i=e.find(e=>t[e]&&"technologies"!==t[e].kind),a=i&&t[i];return a&&n.path.toLowerCase().startsWith(a.url.toLowerCase())})||e[0]:[],technology:({$route:e,topicProps:{identifier:t,references:n,role:i,title:a},parentTopicIdentifiers:s})=>{const r={title:a,url:e.path},o=n[t];if(!s.length)return o||r;const l=n[s[0]];return l&&"technologies"!==l.kind?l:(i!==k["a"].collection||o)&&(l&&n[s[1]]||o)||r},languagePaths:({topicData:{variants:e=[]}})=>e.reduce((e,t)=>t.traits.reduce((e,n)=>n.interfaceLanguage?{...e,[n.interfaceLanguage]:(e[n.interfaceLanguage]||[]).concat(t.paths)}:e,e),{}),objcPath:({languagePaths:{[O["a"].objectiveC.key.api]:[e]=[]}={}})=>e,swiftPath:({languagePaths:{[O["a"].swift.key.api]:[e]=[]}={}})=>e,isSymbolBeta:({topicProps:{platforms:e}})=>!!(e&&e.length&&e.every(e=>e.beta)),isSymbolDeprecated:({topicProps:{platforms:e,deprecationSummary:t}})=>!!(t&&t.length>0||e&&e.length&&e.every(e=>e.deprecatedAt)),enableNavigator:({isTargetIDE:e,topicDataDefault:t})=>!e&&Object(yd["b"])(Object(yd["a"])(t.schemaVersion),_d)>=0,enableOnThisPageNav:({isTargetIDE:e})=>!Object(Ze["c"])(["features","docs","onThisPageNavigator","disable"],!1)&&!e,sidebarProps:({sidenavVisibleOnMobile:e,enableNavigator:t,sidenavHiddenOnLarge:n})=>t?{shownOnMobile:e,hiddenOnLarge:n}:{},sidebarListeners(){return this.enableNavigator?{"update:shownOnMobile":this.toggleMobileSidenav,"update:hiddenOnLarge":this.toggleLargeSidenav}:{}}},methods:{applyObjcOverrides(){this.topicDataObjc=C(Object(w["a"])(this.topicData),this.objcOverrides)},handleCodeColorsChange(e){Rs["a"].updateCodeColors(e)},handleToggleSidenav(e){e===Vo["b"].large?this.toggleLargeSidenav():this.toggleMobileSidenav()},openQuickNavigationModal(){this.sidenavVisibleOnMobile||(this.showQuickNavigationModal=!0)},toggleLargeSidenav(e=!this.sidenavHiddenOnLarge){this.sidenavHiddenOnLarge=e,Fo["c"].set(Cd,e)},toggleMobileSidenav(e=!this.sidenavVisibleOnMobile){this.sidenavVisibleOnMobile=e},onQuickNavigationKeydown(e){("/"===e.key||"o"===e.key&&e.shiftKey&&e.metaKey)&&this.enableNavigator&&"input"!==e.target.tagName.toLowerCase()&&(this.openQuickNavigationModal(),e.preventDefault())}},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge),this.$bridge.on("codeColors",this.handleCodeColorsChange),this.$bridge.send({type:"requestCodeColors"}),this.enableQuickNavigation&&window.addEventListener("keydown",this.onQuickNavigationKeydown)},provide(){return{store:this.store}},inject:{isTargetIDE:{default(){return!1}}},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge),this.$bridge.off("codeColors",this.handleCodeColorsChange),this.enableQuickNavigation&&window.removeEventListener("keydown",this.onQuickNavigationKeydown)},beforeRouteEnter(e,t,n){e.meta.skipFetchingData?n(e=>e.newContentMounted()):Object(w["c"])(e,t,n).then(t=>n(n=>{Object(Sd["c"])(e.params.locale,n),n.topicData=t,e.query.language===O["a"].objectiveC.key.url&&n.objcOverrides&&n.applyObjcOverrides()})).catch(n)},beforeRouteUpdate(e,t,n){e.path===t.path&&e.query.language===O["a"].objectiveC.key.url&&this.objcOverrides?(this.applyObjcOverrides(),n()):Object(w["e"])(e,t)?Object(w["c"])(e,t,n).then(t=>{this.topicDataObjc=null,this.topicData=t,e.query.language===O["a"].objectiveC.key.url&&this.objcOverrides&&this.applyObjcOverrides(),Object(Sd["c"])(e.params.locale,this),n()}).catch(n):n()},created(){this.store.reset()},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},Id=wd,xd=(n("857c"),Object(K["a"])(Id,i,a,!1,null,"4a89caca",null));t["default"]=xd.exports},f9c9:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic~topic.1679ec90.js b/docs/js/documentation-topic~topic.1679ec90.js new file mode 100644 index 0000000..5203308 --- /dev/null +++ b/docs/js/documentation-topic~topic.1679ec90.js @@ -0,0 +1,20 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic~topic"],{"1c3f":function(t,e,n){"use strict";n("b826")},"2b88":function(t,e,n){"use strict"; +/*! + * portal-vue © Thorsten Lünborg, 2019 + * + * Version: 2.1.7 + * + * LICENCE: MIT + * + * https://github.com/linusborg/portal-vue + * + */function s(t){return t&&"object"===typeof t&&"default"in t?t["default"]:t}Object.defineProperty(e,"__esModule",{value:!0});var r=s(n("2b0e"));function o(t){return o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}function a(t){return i(t)||l(t)||c()}function i(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e1&&void 0!==arguments[1]?arguments[1]:{};return t.reduce((function(t,n){var s=n.passengers[0],r="function"===typeof s?s(e):n.passengers;return t.concat(r)}),[])}function f(t,e){return t.map((function(t,e){return[e,t]})).sort((function(t,n){return e(t[1],n[1])||t[0]-n[0]})).map((function(t){return t[1]}))}function p(t,e){return e.reduce((function(e,n){return t.hasOwnProperty(n)&&(e[n]=t[n]),e}),{})}var m={},g={},y={},b=r.extend({data:function(){return{transports:m,targets:g,sources:y,trackInstances:u}},methods:{open:function(t){if(u){var e=t.to,n=t.from,s=t.passengers,o=t.order,a=void 0===o?1/0:o;if(e&&n&&s){var i={to:e,from:n,passengers:h(s),order:a},l=Object.keys(this.transports);-1===l.indexOf(e)&&r.set(this.transports,e,[]);var c=this.$_getTransportIndex(i),d=this.transports[e].slice(0);-1===c?d.push(i):d[c]=i,this.transports[e]=f(d,(function(t,e){return t.order-e.order}))}}},close:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.to,s=t.from;if(n&&(s||!1!==e)&&this.transports[n])if(e)this.transports[n]=[];else{var r=this.$_getTransportIndex(t);if(r>=0){var o=this.transports[n].slice(0);o.splice(r,1),this.transports[n]=o}}},registerTarget:function(t,e,n){u&&(this.trackInstances&&!n&&this.targets[t]&&console.warn("[portal-vue]: Target ".concat(t," already exists")),this.$set(this.targets,t,Object.freeze([e])))},unregisterTarget:function(t){this.$delete(this.targets,t)},registerSource:function(t,e,n){u&&(this.trackInstances&&!n&&this.sources[t]&&console.warn("[portal-vue]: source ".concat(t," already exists")),this.$set(this.sources,t,Object.freeze([e])))},unregisterSource:function(t){this.$delete(this.sources,t)},hasTarget:function(t){return!(!this.targets[t]||!this.targets[t][0])},hasSource:function(t){return!(!this.sources[t]||!this.sources[t][0])},hasContentFor:function(t){return!!this.transports[t]&&!!this.transports[t].length},$_getTransportIndex:function(t){var e=t.to,n=t.from;for(var s in this.transports[e])if(this.transports[e][s].from===n)return+s;return-1}}}),v=new b(m),T=1,S=r.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(T++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var t=this;this.$nextTick((function(){v.registerSource(t.name,t)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){v.unregisterSource(this.name),this.clear()},watch:{to:function(t,e){e&&e!==t&&this.clear(e),this.sendUpdate()}},methods:{clear:function(t){var e={from:this.name,to:t||this.to};v.close(e)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(t){return"function"===typeof t?t(this.slotProps):t},sendUpdate:function(){var t=this.normalizeSlots();if(t){var e={from:this.name,to:this.to,passengers:a(t),order:this.order};v.open(e)}else this.clear()}},render:function(t){var e=this.$slots.default||this.$scopedSlots.default||[],n=this.tag;return e&&this.disabled?e.length<=1&&this.slim?this.normalizeOwnChildren(e)[0]:t(n,[this.normalizeOwnChildren(e)]):this.slim?t():t(n,{class:{"v-portal":!0},style:{display:"none"},key:"v-portal-placeholder"})}}),w=r.extend({name:"portalTarget",props:{multiple:{type:Boolean,default:!1},name:{type:String,required:!0},slim:{type:Boolean,default:!1},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},data:function(){return{transports:v.transports,firstRender:!0}},created:function(){var t=this;this.$nextTick((function(){v.registerTarget(t.name,t)}))},watch:{ownTransports:function(){this.$emit("change",this.children().length>0)},name:function(t,e){v.unregisterTarget(e),v.registerTarget(t,this)}},mounted:function(){var t=this;this.transition&&this.$nextTick((function(){t.firstRender=!1}))},beforeDestroy:function(){v.unregisterTarget(this.name)},computed:{ownTransports:function(){var t=this.transports[this.name]||[];return this.multiple?t:0===t.length?[]:[t[t.length-1]]},passengers:function(){return d(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var t=this.slim&&!this.transition;return t&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),t}},render:function(t){var e=this.noWrapper(),n=this.children(),s=this.transition||this.tag;return e?n[0]:this.slim&&!s?t():t(s,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},n)}}),C=0,$=["disabled","name","order","slim","slotProps","tag","to"],k=["multiple","transition"],x=r.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(C++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!==typeof document){var t=document.querySelector(this.mountTo);if(t){var e=this.$props;if(v.targets[e.name])e.bail?console.warn("[portal-vue]: Target ".concat(e.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=v.targets[e.name];else{var n=e.append;if(n){var s="string"===typeof n?n:"DIV",r=document.createElement(s);t.appendChild(r),t=r}var o=p(this.$props,k);o.slim=this.targetSlim,o.tag=this.targetTag,o.slotProps=this.targetSlotProps,o.name=this.to,this.portalTarget=new w({el:t,parent:this.$parent||this,propsData:o})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var t=this.portalTarget;if(this.append){var e=t.$el;e.parentNode.removeChild(e)}t.$destroy()},render:function(t){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),t();if(!this.$scopedSlots.manual){var e=p(this.$props,$);return t(S,{props:e,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var n=this.$scopedSlots.manual({to:this.to});return Array.isArray(n)&&(n=n[0]),n||t()}});function P(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.component(e.portalName||"Portal",S),t.component(e.portalTargetName||"PortalTarget",w),t.component(e.MountingPortalName||"MountingPortal",x)}var I={install:P};e.default=I,e.Portal=S,e.PortalTarget=w,e.MountingPortal=x,e.Wormhole=v},"66c9":function(t,e,n){"use strict";e["a"]={state:{codeColors:null},reset(){this.state.codeColors=null},updateCodeColors(t){const e=t=>t?`rgba(${t.red}, ${t.green}, ${t.blue}, ${t.alpha})`:null;this.state.codeColors=Object.entries(t).reduce((t,[n,s])=>({...t,[n]:e(s)}),{})}}},7948:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"inline-chevron-down-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-chevron-down"}},[n("path",{attrs:{d:"M12.634 2.964l0.76 0.649-6.343 7.426-6.445-7.423 0.755-0.655 5.683 6.545 5.59-6.542z"}})])},r=[],o=n("be08"),a={name:"InlineChevronDownIcon",components:{SVGIcon:o["a"]}},i=a,l=n("2877"),c=Object(l["a"])(i,s,r,!1,null,null,null);e["a"]=c.exports},8590:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{style:t.codeStyle},[t._t("default")],2)},r=[],o=n("66c9");const a=0,i=255;function l(t){const e=t.match(/rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d+\.?\d*|\.\d+)\s*\)/);if(!e)throw new Error("invalid rgba() input");const n=10;return{r:parseInt(e[1],n),g:parseInt(e[2],n),b:parseInt(e[3],n),a:parseFloat(e[4])}}function c(t){const{r:e,g:n,b:s}=l(t);return.2126*e+.7152*n+.0722*s}function u(t,e){const n=Math.round(i*e),s=l(t),{a:r}=s,[o,c,u]=[s.r,s.g,s.b].map(t=>Math.max(a,Math.min(i,t+n)));return`rgba(${o}, ${c}, ${u}, ${r})`}function h(t,e){return u(t,e)}function d(t,e){return u(t,-1*e)}var f={name:"CodeTheme",data(){return{codeThemeState:o["a"].state}},computed:{codeStyle(){const{codeColors:t}=this.codeThemeState;return t?{"--text":t.text,"--background":t.background,"--line-highlight":t.lineHighlight,"--url":t.commentURL,"--syntax-comment":t.comment,"--syntax-quote":t.comment,"--syntax-keyword":t.keyword,"--syntax-literal":t.keyword,"--syntax-selector-tag":t.keyword,"--syntax-string":t.stringLiteral,"--syntax-bullet":t.stringLiteral,"--syntax-meta":t.keyword,"--syntax-number":t.stringLiteral,"--syntax-symbol":t.stringLiteral,"--syntax-tag":t.stringLiteral,"--syntax-attr":t.typeAnnotation,"--syntax-built_in":t.typeAnnotation,"--syntax-builtin-name":t.typeAnnotation,"--syntax-class":t.typeAnnotation,"--syntax-params":t.typeAnnotation,"--syntax-section":t.typeAnnotation,"--syntax-title":t.typeAnnotation,"--syntax-type":t.typeAnnotation,"--syntax-attribute":t.keyword,"--syntax-identifier":t.text,"--syntax-subst":t.text,"--color-syntax-param-internal-name":this.internalParamNameColor}:null},internalParamNameColor(){const{background:t,text:e}=this.codeThemeState.codeColors;try{const n=c(t),s=nObject.keys(u).includes(t),default:u.light},codeBackgroundColorOverride:{type:String,default:""},backdropBackgroundColorOverride:{type:String,default:""},width:{type:String,default:null},showClose:{type:Boolean,default:!0}},data(){return{lastFocusItem:null,prefersDarkStyle:!1,focusTrapInstance:null}},computed:{isVisible:{get:({visible:t})=>t,set(t){this.$emit("update:visible",t)}},modalColors(){return{"--code-background":this.codeBackgroundColorOverride,"--backdrop-background":this.backdropBackgroundColorOverride}},themeClass({theme:t,prefersDarkStyle:e,isThemeDynamic:n}){let s={};return n&&(s={"theme-light":!e,"theme-dark":e}),["theme-"+t,s]},stateClasses:({isFullscreen:t,isVisible:e,showClose:n})=>({"modal-fullscreen":t,"modal-standard":!t,"modal-open":e,"modal-with-close":n}),isThemeDynamic:({theme:t})=>t===u.dynamic||t===u.code},watch:{isVisible(t){t?this.onShow():this.onHide()}},mounted(){if(this.focusTrapInstance=new a["a"],document.addEventListener("keydown",this.onKeydown),this.isThemeDynamic){const t=window.matchMedia("(prefers-color-scheme: dark)");t.addListener(this.onColorSchemePreferenceChange),this.$once("hook:beforeDestroy",()=>{t.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(t)}},beforeDestroy(){this.isVisible&&o["b"].unlockScroll(this.$refs.container),document.removeEventListener("keydown",this.onKeydown),this.focusTrapInstance.destroy()},methods:{async onShow(){await this.$nextTick(),o["b"].lockScroll(this.$refs.container),await this.focusCloseButton(),this.focusTrapInstance.updateFocusContainer(this.$refs.container),this.focusTrapInstance.start(),i["a"].hide(this.$refs.container)},onHide(){o["b"].unlockScroll(this.$refs.container),this.focusTrapInstance.stop(),this.lastFocusItem&&(this.lastFocusItem.focus({preventScroll:!0}),this.lastFocusItem=null),this.$emit("close"),i["a"].show(this.$refs.container)},closeModal(){this.isVisible=!1},selectContent(){window.getSelection().selectAllChildren(this.$refs.content)},onClickOutside(){this.closeModal()},onKeydown(t){const{metaKey:e=!1,ctrlKey:n=!1,key:s}=t;this.isVisible&&("a"===s&&(e||n)&&(t.preventDefault(),this.selectContent()),"Escape"===s&&(t.preventDefault(),this.closeModal()))},onColorSchemePreferenceChange({matches:t}){this.prefersDarkStyle=t},async focusCloseButton(){this.lastFocusItem=document.activeElement,await this.$nextTick(),this.$refs.close&&this.$refs.close.focus(),this.$emit("open")}}},d=h,f=(n("1c3f"),n("2877")),p=Object(f["a"])(d,s,r,!1,null,"795f7b59",null);e["a"]=p.exports},c8e2:function(t,e,n){"use strict";function s(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}n.d(e,"a",(function(){return o}));var r=n("0cb0");class o{constructor(t){s(this,"focusContainer",null),s(this,"tabTargets",[]),s(this,"firstTabTarget",null),s(this,"lastTabTarget",null),s(this,"lastFocusedElement",null),this.focusContainer=t,this.onFocus=this.onFocus.bind(this)}updateFocusContainer(t){this.focusContainer=t}start(){this.collectTabTargets(),this.firstTabTarget?this.focusContainer.contains(document.activeElement)&&r["a"].isTabbableElement(document.activeElement)||this.firstTabTarget.focus():console.warn("There are no focusable elements. FocusTrap needs at least one."),this.lastFocusedElement=document.activeElement,document.addEventListener("focus",this.onFocus,!0)}stop(){document.removeEventListener("focus",this.onFocus,!0)}collectTabTargets(){this.tabTargets=r["a"].getTabbableElements(this.focusContainer),this.firstTabTarget=this.tabTargets[0],this.lastTabTarget=this.tabTargets[this.tabTargets.length-1]}onFocus(t){if(this.focusContainer.contains(t.target))this.lastFocusedElement=t.target;else{if(t.preventDefault(),this.collectTabTargets(),this.lastFocusedElement===this.lastTabTarget||!this.lastFocusedElement||!document.contains(this.lastFocusedElement))return this.firstTabTarget.focus(),void(this.lastFocusedElement=this.firstTabTarget);this.lastFocusedElement===this.firstTabTarget&&(this.lastTabTarget.focus(),this.lastFocusedElement=this.lastTabTarget)}}destroy(){this.stop(),this.focusContainer=null,this.tabTargets=[],this.firstTabTarget=null,this.lastTabTarget=null,this.lastFocusedElement=null}}}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic~topic.900fc80c.js b/docs/js/documentation-topic~topic.900fc80c.js deleted file mode 100644 index 3367be6..0000000 --- a/docs/js/documentation-topic~topic.900fc80c.js +++ /dev/null @@ -1,20 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic~topic"],{"2b88":function(t,e,n){"use strict"; -/*! - * portal-vue © Thorsten Lünborg, 2019 - * - * Version: 2.1.7 - * - * LICENCE: MIT - * - * https://github.com/linusborg/portal-vue - * - */function s(t){return t&&"object"===typeof t&&"default"in t?t["default"]:t}Object.defineProperty(e,"__esModule",{value:!0});var r=s(n("2b0e"));function o(t){return o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}function a(t){return i(t)||l(t)||c()}function i(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e1&&void 0!==arguments[1]?arguments[1]:{};return t.reduce((function(t,n){var s=n.passengers[0],r="function"===typeof s?s(e):n.passengers;return t.concat(r)}),[])}function f(t,e){return t.map((function(t,e){return[e,t]})).sort((function(t,n){return e(t[1],n[1])||t[0]-n[0]})).map((function(t){return t[1]}))}function p(t,e){return e.reduce((function(e,n){return t.hasOwnProperty(n)&&(e[n]=t[n]),e}),{})}var m={},g={},y={},b=r.extend({data:function(){return{transports:m,targets:g,sources:y,trackInstances:u}},methods:{open:function(t){if(u){var e=t.to,n=t.from,s=t.passengers,o=t.order,a=void 0===o?1/0:o;if(e&&n&&s){var i={to:e,from:n,passengers:h(s),order:a},l=Object.keys(this.transports);-1===l.indexOf(e)&&r.set(this.transports,e,[]);var c=this.$_getTransportIndex(i),d=this.transports[e].slice(0);-1===c?d.push(i):d[c]=i,this.transports[e]=f(d,(function(t,e){return t.order-e.order}))}}},close:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.to,s=t.from;if(n&&(s||!1!==e)&&this.transports[n])if(e)this.transports[n]=[];else{var r=this.$_getTransportIndex(t);if(r>=0){var o=this.transports[n].slice(0);o.splice(r,1),this.transports[n]=o}}},registerTarget:function(t,e,n){u&&(this.trackInstances&&!n&&this.targets[t]&&console.warn("[portal-vue]: Target ".concat(t," already exists")),this.$set(this.targets,t,Object.freeze([e])))},unregisterTarget:function(t){this.$delete(this.targets,t)},registerSource:function(t,e,n){u&&(this.trackInstances&&!n&&this.sources[t]&&console.warn("[portal-vue]: source ".concat(t," already exists")),this.$set(this.sources,t,Object.freeze([e])))},unregisterSource:function(t){this.$delete(this.sources,t)},hasTarget:function(t){return!(!this.targets[t]||!this.targets[t][0])},hasSource:function(t){return!(!this.sources[t]||!this.sources[t][0])},hasContentFor:function(t){return!!this.transports[t]&&!!this.transports[t].length},$_getTransportIndex:function(t){var e=t.to,n=t.from;for(var s in this.transports[e])if(this.transports[e][s].from===n)return+s;return-1}}}),v=new b(m),T=1,S=r.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(T++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var t=this;this.$nextTick((function(){v.registerSource(t.name,t)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){v.unregisterSource(this.name),this.clear()},watch:{to:function(t,e){e&&e!==t&&this.clear(e),this.sendUpdate()}},methods:{clear:function(t){var e={from:this.name,to:t||this.to};v.close(e)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(t){return"function"===typeof t?t(this.slotProps):t},sendUpdate:function(){var t=this.normalizeSlots();if(t){var e={from:this.name,to:this.to,passengers:a(t),order:this.order};v.open(e)}else this.clear()}},render:function(t){var e=this.$slots.default||this.$scopedSlots.default||[],n=this.tag;return e&&this.disabled?e.length<=1&&this.slim?this.normalizeOwnChildren(e)[0]:t(n,[this.normalizeOwnChildren(e)]):this.slim?t():t(n,{class:{"v-portal":!0},style:{display:"none"},key:"v-portal-placeholder"})}}),w=r.extend({name:"portalTarget",props:{multiple:{type:Boolean,default:!1},name:{type:String,required:!0},slim:{type:Boolean,default:!1},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},data:function(){return{transports:v.transports,firstRender:!0}},created:function(){var t=this;this.$nextTick((function(){v.registerTarget(t.name,t)}))},watch:{ownTransports:function(){this.$emit("change",this.children().length>0)},name:function(t,e){v.unregisterTarget(e),v.registerTarget(t,this)}},mounted:function(){var t=this;this.transition&&this.$nextTick((function(){t.firstRender=!1}))},beforeDestroy:function(){v.unregisterTarget(this.name)},computed:{ownTransports:function(){var t=this.transports[this.name]||[];return this.multiple?t:0===t.length?[]:[t[t.length-1]]},passengers:function(){return d(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var t=this.slim&&!this.transition;return t&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),t}},render:function(t){var e=this.noWrapper(),n=this.children(),s=this.transition||this.tag;return e?n[0]:this.slim&&!s?t():t(s,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},n)}}),C=0,$=["disabled","name","order","slim","slotProps","tag","to"],x=["multiple","transition"],k=r.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(C++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!==typeof document){var t=document.querySelector(this.mountTo);if(t){var e=this.$props;if(v.targets[e.name])e.bail?console.warn("[portal-vue]: Target ".concat(e.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=v.targets[e.name];else{var n=e.append;if(n){var s="string"===typeof n?n:"DIV",r=document.createElement(s);t.appendChild(r),t=r}var o=p(this.$props,x);o.slim=this.targetSlim,o.tag=this.targetTag,o.slotProps=this.targetSlotProps,o.name=this.to,this.portalTarget=new w({el:t,parent:this.$parent||this,propsData:o})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var t=this.portalTarget;if(this.append){var e=t.$el;e.parentNode.removeChild(e)}t.$destroy()},render:function(t){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),t();if(!this.$scopedSlots.manual){var e=p(this.$props,$);return t(S,{props:e,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var n=this.$scopedSlots.manual({to:this.to});return Array.isArray(n)&&(n=n[0]),n||t()}});function I(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.component(e.portalName||"Portal",S),t.component(e.portalTargetName||"PortalTarget",w),t.component(e.MountingPortalName||"MountingPortal",k)}var P={install:I};e.default=P,e.Portal=S,e.PortalTarget=w,e.MountingPortal=k,e.Wormhole=v},"5ebf":function(t,e,n){"use strict";n("bc3d")},"66c9":function(t,e,n){"use strict";e["a"]={state:{codeColors:null},reset(){this.state.codeColors=null},updateCodeColors(t){const e=t=>t?`rgba(${t.red}, ${t.green}, ${t.blue}, ${t.alpha})`:null;this.state.codeColors=Object.entries(t).reduce((t,[n,s])=>({...t,[n]:e(s)}),{})}}},7948:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"inline-chevron-down-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-chevron-down"}},[n("path",{attrs:{d:"M12.634 2.964l0.76 0.649-6.343 7.426-6.445-7.423 0.755-0.655 5.683 6.545 5.59-6.542z"}})])},r=[],o=n("be08"),a={name:"InlineChevronDownIcon",components:{SVGIcon:o["a"]}},i=a,l=n("2877"),c=Object(l["a"])(i,s,r,!1,null,null,null);e["a"]=c.exports},8590:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{style:t.codeStyle},[t._t("default")],2)},r=[],o=n("66c9");const a=0,i=255;function l(t){const e=t.match(/rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d+\.?\d*|\.\d+)\s*\)/);if(!e)throw new Error("invalid rgba() input");const n=10;return{r:parseInt(e[1],n),g:parseInt(e[2],n),b:parseInt(e[3],n),a:parseFloat(e[4])}}function c(t){const{r:e,g:n,b:s}=l(t);return.2126*e+.7152*n+.0722*s}function u(t,e){const n=Math.round(i*e),s=l(t),{a:r}=s,[o,c,u]=[s.r,s.g,s.b].map(t=>Math.max(a,Math.min(i,t+n)));return`rgba(${o}, ${c}, ${u}, ${r})`}function h(t,e){return u(t,e)}function d(t,e){return u(t,-1*e)}var f={name:"CodeTheme",data(){return{codeThemeState:o["a"].state}},computed:{codeStyle(){const{codeColors:t}=this.codeThemeState;return t?{"--text":t.text,"--background":t.background,"--line-highlight":t.lineHighlight,"--url":t.commentURL,"--syntax-comment":t.comment,"--syntax-quote":t.comment,"--syntax-keyword":t.keyword,"--syntax-literal":t.keyword,"--syntax-selector-tag":t.keyword,"--syntax-string":t.stringLiteral,"--syntax-bullet":t.stringLiteral,"--syntax-meta":t.keyword,"--syntax-number":t.stringLiteral,"--syntax-symbol":t.stringLiteral,"--syntax-tag":t.stringLiteral,"--syntax-attr":t.typeAnnotation,"--syntax-built_in":t.typeAnnotation,"--syntax-builtin-name":t.typeAnnotation,"--syntax-class":t.typeAnnotation,"--syntax-params":t.typeAnnotation,"--syntax-section":t.typeAnnotation,"--syntax-title":t.typeAnnotation,"--syntax-type":t.typeAnnotation,"--syntax-attribute":t.keyword,"--syntax-identifier":t.text,"--syntax-subst":t.text,"--color-syntax-param-internal-name":this.internalParamNameColor}:null},internalParamNameColor(){const{background:t,text:e}=this.codeThemeState.codeColors;try{const n=c(t),s=nObject.keys(y).includes(t),default:y.light},codeBackgroundColorOverride:{type:String,default:""},width:{type:String,default:null},showClose:{type:Boolean,default:!0}},data(){return{lastFocusItem:null,prefersDarkStyle:!1,focusTrapInstance:null}},computed:{isVisible:{get:({visible:t})=>t,set(t){this.$emit("update:visible",t)}},modalColors(){return{"--background":this.codeBackgroundColorOverride}},themeClass({theme:t,prefersDarkStyle:e,isThemeDynamic:n}){let s={};return n&&(s={"theme-light":!e,"theme-dark":e}),["theme-"+t,s]},stateClasses:({isFullscreen:t,isVisible:e,showClose:n})=>({"modal-fullscreen":t,"modal-standard":!t,"modal-open":e,"modal-with-close":n}),isThemeDynamic:({theme:t})=>t===y.dynamic||t===y.code},watch:{isVisible(t){t?this.onShow():this.onHide()}},mounted(){if(this.focusTrapInstance=new a["a"],document.addEventListener("keydown",this.onKeydown),this.isThemeDynamic){const t=window.matchMedia("(prefers-color-scheme: dark)");t.addListener(this.onColorSchemePreferenceChange),this.$once("hook:beforeDestroy",()=>{t.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(t)}},beforeDestroy(){this.isVisible&&o["a"].unlockScroll(this.$refs.container),document.removeEventListener("keydown",this.onKeydown),this.focusTrapInstance.destroy()},methods:{async onShow(){await this.$nextTick(),o["a"].lockScroll(this.$refs.container),await this.focusCloseButton(),this.focusTrapInstance.updateFocusContainer(this.$refs.container),this.focusTrapInstance.start(),i["a"].hide(this.$refs.container)},onHide(){o["a"].unlockScroll(this.$refs.container),this.focusTrapInstance.stop(),this.lastFocusItem&&(this.lastFocusItem.focus({preventScroll:!0}),this.lastFocusItem=null),this.$emit("close"),i["a"].show(this.$refs.container)},closeModal(){this.isVisible=!1},selectContent(){window.getSelection().selectAllChildren(this.$refs.content)},onClickOutside(){this.closeModal()},onKeydown(t){const{metaKey:e=!1,ctrlKey:n=!1,key:s}=t;this.isVisible&&("a"===s&&(e||n)&&(t.preventDefault(),this.selectContent()),"Escape"===s&&(t.preventDefault(),this.closeModal()))},onColorSchemePreferenceChange({matches:t}){this.prefersDarkStyle=t},async focusCloseButton(){this.lastFocusItem=document.activeElement,await this.$nextTick(),this.$refs.close&&this.$refs.close.focus(),this.$emit("open")}}},v=b,T=(n("5ebf"),Object(p["a"])(v,s,r,!1,null,"f5b28690",null));e["a"]=T.exports},c8e2:function(t,e,n){"use strict";function s(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}n.d(e,"a",(function(){return o}));var r=n("0cb0");class o{constructor(t){s(this,"focusContainer",null),s(this,"tabTargets",[]),s(this,"firstTabTarget",null),s(this,"lastTabTarget",null),s(this,"lastFocusedElement",null),this.focusContainer=t,this.onFocus=this.onFocus.bind(this)}updateFocusContainer(t){this.focusContainer=t}start(){this.collectTabTargets(),this.firstTabTarget?this.focusContainer.contains(document.activeElement)&&r["a"].isTabbableElement(document.activeElement)||this.firstTabTarget.focus():console.warn("There are no focusable elements. FocusTrap needs at least one."),this.lastFocusedElement=document.activeElement,document.addEventListener("focus",this.onFocus,!0)}stop(){document.removeEventListener("focus",this.onFocus,!0)}collectTabTargets(){this.tabTargets=r["a"].getTabbableElements(this.focusContainer),this.firstTabTarget=this.tabTargets[0],this.lastTabTarget=this.tabTargets[this.tabTargets.length-1]}onFocus(t){if(this.focusContainer.contains(t.target))this.lastFocusedElement=t.target;else{if(t.preventDefault(),this.collectTabTargets(),this.lastFocusedElement===this.lastTabTarget||!this.lastFocusedElement||!document.contains(this.lastFocusedElement))return this.firstTabTarget.focus(),void(this.lastFocusedElement=this.firstTabTarget);this.lastFocusedElement===this.firstTabTarget&&(this.lastTabTarget.focus(),this.lastFocusedElement=this.lastTabTarget)}}destroy(){this.stop(),this.focusContainer=null,this.tabTargets=[],this.firstTabTarget=null,this.lastTabTarget=null,this.lastFocusedElement=null}}}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic~topic~tutorials-overview.5b27b87b.js b/docs/js/documentation-topic~topic~tutorials-overview.5b27b87b.js deleted file mode 100644 index a28e364..0000000 --- a/docs/js/documentation-topic~topic~tutorials-overview.5b27b87b.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic~topic~tutorials-overview"],{"018a":function(e,t,n){"use strict";n("0e40")},"05a1":function(e,t,n){},"0c95":function(e,t,n){"use strict";n("d34b")},"0caf":function(e,t,n){"use strict";t["a"]={inject:{performanceMetricsEnabled:{default:!1},isTargetIDE:{default:!1}},methods:{newContentMounted(){let e;this.performanceMetricsEnabled&&(e=Math.round(window.performance.now()),window.renderedTimes||(window.renderedTimes=[]),window.renderedTimes.push(e)),this.$bridge.send({type:"rendered",data:{time:e}})},handleContentUpdateFromBridge(e){this.topicData=e}}}},"0cb0":function(e,t,n){"use strict";const i=["input","select","textarea","button","optgroup","option","menuitem","fieldset","object","a[href]","*[tabindex]","*[contenteditable]"],r=i.join(",");t["a"]={getTabbableElements(e){const t=e.querySelectorAll(r),n=t.length;let i;const a=[];for(i=0;i=0},isFocusableElement(e){const t=e.nodeName.toLowerCase(),n=i.includes(t);return!("a"!==t||!e.getAttribute("href"))||(n?!e.disabled:"true"===e.getAttribute("contenteditable")||!Number.isNaN(parseFloat(e.getAttribute("tabindex"))))}}},"0d7b":function(e,t,n){},"0da1":function(e,t,n){"use strict";n("5c97")},"0e19":function(e,t,n){},"0e40":function(e,t,n){},"0f00":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"row"},[e._t("default")],2)},r=[],a={name:"GridRow"},s=a,o=(n("2224"),n("2877")),l=Object(o["a"])(s,i,r,!1,null,"be73599c",null);t["a"]=l.exports},1020:function(e,t){var n={exports:{}};function i(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((function(t){var n=e[t];"object"!=typeof n||Object.isFrozen(n)||i(n)})),e}n.exports=i,n.exports.default=i;var r=n.exports;class a{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function s(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function o(e,...t){const n=Object.create(null);for(const i in e)n[i]=e[i];return t.forEach((function(e){for(const t in e)n[t]=e[t]})),n}const l="",c=e=>!!e.kind,u=(e,{prefix:t})=>{if(e.includes(".")){const n=e.split(".");return[`${t}${n.shift()}`,...n.map((e,t)=>`${e}${"_".repeat(t+1)}`)].join(" ")}return`${t}${e}`};class d{constructor(e,t){this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=s(e)}openNode(e){if(!c(e))return;let t=e.kind;t=e.sublanguage?"language-"+t:u(t,{prefix:this.classPrefix}),this.span(t)}closeNode(e){c(e)&&(this.buffer+=l)}value(){return this.buffer}span(e){this.buffer+=``}}class p{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){while(this.closeNode());}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return"string"===typeof t?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(t=>this._walk(e,t)),e.closeNode(t)),e}static _collapse(e){"string"!==typeof e&&e.children&&(e.children.every(e=>"string"===typeof e)?e.children=[e.children.join("")]:e.children.forEach(e=>{p._collapse(e)}))}}class h extends p{constructor(e){super(),this.options=e}addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){const e=new d(this,this.options);return e.value()}finalize(){return!0}}function m(e){return e?"string"===typeof e?e:e.source:null}function f(e){return v("(?=",e,")")}function g(e){return v("(?:",e,")*")}function b(e){return v("(?:",e,")?")}function v(...e){const t=e.map(e=>m(e)).join("");return t}function y(e){const t=e[e.length-1];return"object"===typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function w(...e){const t=y(e),n="("+(t.capture?"":"?:")+e.map(e=>m(e)).join("|")+")";return n}function _(e){return new RegExp(e.toString()+"|").exec("").length-1}function x(e,t){const n=e&&e.exec(t);return n&&0===n.index}const k=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function C(e,{joinWith:t}){let n=0;return e.map(e=>{n+=1;const t=n;let i=m(e),r="";while(i.length>0){const e=k.exec(i);if(!e){r+=i;break}r+=i.substring(0,e.index),i=i.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?r+="\\"+String(Number(e[1])+t):(r+=e[0],"("===e[0]&&n++)}return r}).map(e=>`(${e})`).join(t)}const S=/\b\B/,j="[a-zA-Z]\\w*",E="[a-zA-Z_]\\w*",O="\\b\\d+(\\.\\d+)?",I="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",T="\\b(0b[01]+)",A="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",B=(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=v(t,/.*\b/,e.binary,/\b.*/)),o({scope:"meta",begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},L={begin:"\\\\[\\s\\S]",relevance:0},N={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[L]},M={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[L]},$={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},R=function(e,t,n={}){const i=o({scope:"comment",begin:e,end:t,contains:[]},n);i.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const r=w("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return i.contains.push({begin:v(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i},P=R("//","$"),V=R("/\\*","\\*/"),D=R("#","$"),G={scope:"number",begin:O,relevance:0},z={scope:"number",begin:I,relevance:0},q={scope:"number",begin:T,relevance:0},U={begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[L,{begin:/\[/,end:/\]/,relevance:0,contains:[L]}]}]},W={scope:"title",begin:j,relevance:0},H={scope:"title",begin:E,relevance:0},F={begin:"\\.\\s*"+E,relevance:0},K=function(e){return Object.assign(e,{"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})};var Z=Object.freeze({__proto__:null,MATCH_NOTHING_RE:S,IDENT_RE:j,UNDERSCORE_IDENT_RE:E,NUMBER_RE:O,C_NUMBER_RE:I,BINARY_NUMBER_RE:T,RE_STARTERS_RE:A,SHEBANG:B,BACKSLASH_ESCAPE:L,APOS_STRING_MODE:N,QUOTE_STRING_MODE:M,PHRASAL_WORDS_MODE:$,COMMENT:R,C_LINE_COMMENT_MODE:P,C_BLOCK_COMMENT_MODE:V,HASH_COMMENT_MODE:D,NUMBER_MODE:G,C_NUMBER_MODE:z,BINARY_NUMBER_MODE:q,REGEXP_MODE:U,TITLE_MODE:W,UNDERSCORE_TITLE_MODE:H,METHOD_GUARD:F,END_SAME_AS_BEGIN:K});function Y(e,t){const n=e.input[e.index-1];"."===n&&t.ignoreMatch()}function X(e,t){void 0!==e.className&&(e.scope=e.className,delete e.className)}function J(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=Y,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function Q(e,t){Array.isArray(e.illegal)&&(e.illegal=w(...e.illegal))}function ee(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function te(e,t){void 0===e.relevance&&(e.relevance=1)}const ne=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const n=Object.assign({},e);Object.keys(e).forEach(t=>{delete e[t]}),e.keywords=n.keywords,e.begin=v(n.beforeMatch,f(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},ie=["of","and","for","in","not","or","if","then","parent","list","value"],re="keyword";function ae(e,t,n=re){const i=Object.create(null);return"string"===typeof e?r(n,e.split(" ")):Array.isArray(e)?r(n,e):Object.keys(e).forEach((function(n){Object.assign(i,ae(e[n],t,n))})),i;function r(e,n){t&&(n=n.map(e=>e.toLowerCase())),n.forEach((function(t){const n=t.split("|");i[n[0]]=[e,se(n[0],n[1])]}))}}function se(e,t){return t?Number(t):oe(e)?0:1}function oe(e){return ie.includes(e.toLowerCase())}const le={},ce=e=>{console.error(e)},ue=(e,...t)=>{console.log("WARN: "+e,...t)},de=(e,t)=>{le[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),le[`${e}/${t}`]=!0)},pe=new Error;function he(e,t,{key:n}){let i=0;const r=e[n],a={},s={};for(let o=1;o<=t.length;o++)s[o+i]=r[o],a[o+i]=!0,i+=_(t[o-1]);e[n]=s,e[n]._emit=a,e[n]._multi=!0}function me(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw ce("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),pe;if("object"!==typeof e.beginScope||null===e.beginScope)throw ce("beginScope must be object"),pe;he(e,e.begin,{key:"beginScope"}),e.begin=C(e.begin,{joinWith:""})}}function fe(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw ce("skip, excludeEnd, returnEnd not compatible with endScope: {}"),pe;if("object"!==typeof e.endScope||null===e.endScope)throw ce("endScope must be object"),pe;he(e,e.end,{key:"endScope"}),e.end=C(e.end,{joinWith:""})}}function ge(e){e.scope&&"object"===typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,delete e.scope)}function be(e){ge(e),"string"===typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),"string"===typeof e.endScope&&(e.endScope={_wrap:e.endScope}),me(e),fe(e)}function ve(e){function t(t,n){return new RegExp(m(t),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(n?"g":""))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=_(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=t(C(e,{joinWith:"|"}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const n=t.findIndex((e,t)=>t>0&&void 0!==e),i=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,i)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n;return this.rules.slice(e).forEach(([e,n])=>t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n&&(this.regexIndex+=n.position+1,this.regexIndex===this.count&&this.considerAll()),n}}function r(e){const t=new i;return e.contains.forEach(e=>t.addRule(e.begin,{rule:e,type:"begin"})),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end"}),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t}function a(n,i){const s=n;if(n.isCompiled)return s;[X,ee,be,ne].forEach(e=>e(n,i)),e.compilerExtensions.forEach(e=>e(n,i)),n.__beforeBegin=null,[J,Q,te].forEach(e=>e(n,i)),n.isCompiled=!0;let o=null;return"object"===typeof n.keywords&&n.keywords.$pattern&&(n.keywords=Object.assign({},n.keywords),o=n.keywords.$pattern,delete n.keywords.$pattern),o=o||/\w+/,n.keywords&&(n.keywords=ae(n.keywords,e.case_insensitive)),s.keywordPatternRe=t(o,!0),i&&(n.begin||(n.begin=/\B|\b/),s.beginRe=t(s.begin),n.end||n.endsWithParent||(n.end=/\B|\b/),n.end&&(s.endRe=t(s.end)),s.terminatorEnd=m(s.end)||"",n.endsWithParent&&i.terminatorEnd&&(s.terminatorEnd+=(n.end?"|":"")+i.terminatorEnd)),n.illegal&&(s.illegalRe=t(n.illegal)),n.contains||(n.contains=[]),n.contains=[].concat(...n.contains.map((function(e){return we("self"===e?n:e)}))),n.contains.forEach((function(e){a(e,s)})),n.starts&&a(n.starts,i),s.matcher=r(s),s}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=o(e.classNameAliases||{}),a(e)}function ye(e){return!!e&&(e.endsWithParent||ye(e.starts))}function we(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return o(e,{variants:null},t)}))),e.cachedVariants?e.cachedVariants:ye(e)?o(e,{starts:e.starts?o(e.starts):null}):Object.isFrozen(e)?o(e):e}var _e="11.3.1";class xe extends Error{constructor(e,t){super(e),this.name="HTMLInjectionError",this.html=t}}const ke=s,Ce=o,Se=Symbol("nomatch"),je=7,Ee=function(e){const t=Object.create(null),n=Object.create(null),i=[];let s=!0;const o="Could not find the language '{}', did you forget to load/include a language module?",l={disableAutodetect:!0,name:"Plain text",contains:[]};let c={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:h};function u(e){return c.noHighlightRe.test(e)}function d(e){let t=e.className+" ";t+=e.parentNode?e.parentNode.className:"";const n=c.languageDetectRe.exec(t);if(n){const t=N(n[1]);return t||(ue(o.replace("{}",n[1])),ue("Falling back to no-highlight mode for this block.",e)),t?n[1]:"no-highlight"}return t.split(/\s+/).find(e=>u(e)||N(e))}function p(e,t,n){let i="",r="";"object"===typeof t?(i=e,n=t.ignoreIllegals,r=t.language):(de("10.7.0","highlight(lang, code, ...args) has been deprecated."),de("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),r=e,i=t),void 0===n&&(n=!0);const a={code:i,language:r};V("before:highlight",a);const s=a.result?a.result:m(a.language,a.code,n);return s.code=a.code,V("after:highlight",s),s}function m(e,n,i,r){const l=Object.create(null);function u(e,t){return e.keywords[t]}function d(){if(!I.keywords)return void A.addText(B);let e=0;I.keywordPatternRe.lastIndex=0;let t=I.keywordPatternRe.exec(B),n="";while(t){n+=B.substring(e,t.index);const i=j.case_insensitive?t[0].toLowerCase():t[0],r=u(I,i);if(r){const[e,a]=r;if(A.addText(n),n="",l[i]=(l[i]||0)+1,l[i]<=je&&(L+=a),e.startsWith("_"))n+=t[0];else{const n=j.classNameAliases[e]||e;A.addKeyword(t[0],n)}}else n+=t[0];e=I.keywordPatternRe.lastIndex,t=I.keywordPatternRe.exec(B)}n+=B.substr(e),A.addText(n)}function p(){if(""===B)return;let e=null;if("string"===typeof I.subLanguage){if(!t[I.subLanguage])return void A.addText(B);e=m(I.subLanguage,B,!0,T[I.subLanguage]),T[I.subLanguage]=e._top}else e=_(B,I.subLanguage.length?I.subLanguage:null);I.relevance>0&&(L+=e.relevance),A.addSublanguage(e._emitter,e.language)}function h(){null!=I.subLanguage?p():d(),B=""}function f(e,t){let n=1;while(void 0!==t[n]){if(!e._emit[n]){n++;continue}const i=j.classNameAliases[e[n]]||e[n],r=t[n];i?A.addKeyword(r,i):(B=r,d(),B=""),n++}}function g(e,t){return e.scope&&"string"===typeof e.scope&&A.openNode(j.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(A.addKeyword(B,j.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),B=""):e.beginScope._multi&&(f(e.beginScope,t),B="")),I=Object.create(e,{parent:{value:I}}),I}function b(e,t,n){let i=x(e.endRe,n);if(i){if(e["on:end"]){const n=new a(e);e["on:end"](t,n),n.isMatchIgnored&&(i=!1)}if(i){while(e.endsParent&&e.parent)e=e.parent;return e}}if(e.endsWithParent)return b(e.parent,t,n)}function v(e){return 0===I.matcher.regexIndex?(B+=e[0],1):(R=!0,0)}function y(e){const t=e[0],n=e.rule,i=new a(n),r=[n.__beforeBegin,n["on:begin"]];for(const a of r)if(a&&(a(e,i),i.isMatchIgnored))return v(t);return n.skip?B+=t:(n.excludeBegin&&(B+=t),h(),n.returnBegin||n.excludeBegin||(B=t)),g(n,e),n.returnBegin?0:t.length}function w(e){const t=e[0],i=n.substr(e.index),r=b(I,e,i);if(!r)return Se;const a=I;I.endScope&&I.endScope._wrap?(h(),A.addKeyword(t,I.endScope._wrap)):I.endScope&&I.endScope._multi?(h(),f(I.endScope,e)):a.skip?B+=t:(a.returnEnd||a.excludeEnd||(B+=t),h(),a.excludeEnd&&(B=t));do{I.scope&&A.closeNode(),I.skip||I.subLanguage||(L+=I.relevance),I=I.parent}while(I!==r.parent);return r.starts&&g(r.starts,e),a.returnEnd?0:t.length}function k(){const e=[];for(let t=I;t!==j;t=t.parent)t.scope&&e.unshift(t.scope);e.forEach(e=>A.openNode(e))}let C={};function S(t,r){const a=r&&r[0];if(B+=t,null==a)return h(),0;if("begin"===C.type&&"end"===r.type&&C.index===r.index&&""===a){if(B+=n.slice(r.index,r.index+1),!s){const t=new Error(`0 width match regex (${e})`);throw t.languageName=e,t.badRule=C.rule,t}return 1}if(C=r,"begin"===r.type)return y(r);if("illegal"===r.type&&!i){const e=new Error('Illegal lexeme "'+a+'" for mode "'+(I.scope||"")+'"');throw e.mode=I,e}if("end"===r.type){const e=w(r);if(e!==Se)return e}if("illegal"===r.type&&""===a)return 1;if($>1e5&&$>3*r.index){const e=new Error("potential infinite loop, way more iterations than matches");throw e}return B+=a,a.length}const j=N(e);if(!j)throw ce(o.replace("{}",e)),new Error('Unknown language: "'+e+'"');const E=ve(j);let O="",I=r||E;const T={},A=new c.__emitter(c);k();let B="",L=0,M=0,$=0,R=!1;try{for(I.matcher.considerAll();;){$++,R?R=!1:I.matcher.considerAll(),I.matcher.lastIndex=M;const e=I.matcher.exec(n);if(!e)break;const t=n.substring(M,e.index),i=S(t,e);M=e.index+i}return S(n.substr(M)),A.closeAllNodes(),A.finalize(),O=A.toHTML(),{language:e,value:O,relevance:L,illegal:!1,_emitter:A,_top:I}}catch(P){if(P.message&&P.message.includes("Illegal"))return{language:e,value:ke(n),illegal:!0,relevance:0,_illegalBy:{message:P.message,index:M,context:n.slice(M-100,M+100),mode:P.mode,resultSoFar:O},_emitter:A};if(s)return{language:e,value:ke(n),illegal:!1,relevance:0,errorRaised:P,_emitter:A,_top:I};throw P}}function y(e){const t={value:ke(e),illegal:!1,relevance:0,_top:l,_emitter:new c.__emitter(c)};return t._emitter.addText(e),t}function _(e,n){n=n||c.languages||Object.keys(t);const i=y(e),r=n.filter(N).filter($).map(t=>m(t,e,!1));r.unshift(i);const a=r.sort((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if(N(e.language).supersetOf===t.language)return 1;if(N(t.language).supersetOf===e.language)return-1}return 0}),[s,o]=a,l=s;return l.secondBest=o,l}function k(e,t,i){const r=t&&n[t]||i;e.classList.add("hljs"),e.classList.add("language-"+r)}function C(e){let t=null;const n=d(e);if(u(n))return;if(V("before:highlightElement",{el:e,language:n}),e.children.length>0&&(c.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/issues/2886"),console.warn(e)),c.throwUnescapedHTML)){const t=new xe("One of your code blocks includes unescaped HTML.",e.innerHTML);throw t}t=e;const i=t.textContent,r=n?p(i,{language:n,ignoreIllegals:!0}):_(i);e.innerHTML=r.value,k(e,n,r.language),e.result={language:r.language,re:r.relevance,relevance:r.relevance},r.secondBest&&(e.secondBest={language:r.secondBest.language,relevance:r.secondBest.relevance}),V("after:highlightElement",{el:e,result:r,text:i})}function S(e){c=Ce(c,e)}const j=()=>{I(),de("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")};function E(){I(),de("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")}let O=!1;function I(){if("loading"===document.readyState)return void(O=!0);const e=document.querySelectorAll(c.cssSelector);e.forEach(C)}function T(){O&&I()}function A(n,i){let r=null;try{r=i(e)}catch(a){if(ce("Language definition for '{}' could not be registered.".replace("{}",n)),!s)throw a;ce(a),r=l}r.name||(r.name=n),t[n]=r,r.rawDefinition=i.bind(null,e),r.aliases&&M(r.aliases,{languageName:n})}function B(e){delete t[e];for(const t of Object.keys(n))n[t]===e&&delete n[t]}function L(){return Object.keys(t)}function N(e){return e=(e||"").toLowerCase(),t[e]||t[n[e]]}function M(e,{languageName:t}){"string"===typeof e&&(e=[e]),e.forEach(e=>{n[e.toLowerCase()]=t})}function $(e){const t=N(e);return t&&!t.disableAutodetect}function R(e){e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{e["before:highlightBlock"](Object.assign({block:t.el},t))}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{e["after:highlightBlock"](Object.assign({block:t.el},t))})}function P(e){R(e),i.push(e)}function V(e,t){const n=e;i.forEach((function(e){e[n]&&e[n](t)}))}function D(e){return de("10.7.0","highlightBlock will be removed entirely in v12.0"),de("10.7.0","Please use highlightElement now."),C(e)}"undefined"!==typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",T,!1),Object.assign(e,{highlight:p,highlightAuto:_,highlightAll:I,highlightElement:C,highlightBlock:D,configure:S,initHighlighting:j,initHighlightingOnLoad:E,registerLanguage:A,unregisterLanguage:B,listLanguages:L,getLanguage:N,registerAliases:M,autoDetection:$,inherit:Ce,addPlugin:P}),e.debugMode=function(){s=!1},e.safeMode=function(){s=!0},e.versionString=_e,e.regex={concat:v,lookahead:f,either:w,optional:b,anyNumberOfTimes:g};for(const a in Z)"object"===typeof Z[a]&&r(Z[a]);return Object.assign(e,Z),e};var Oe=Ee({});e.exports=Oe,Oe.HighlightJS=Oe,Oe.default=Oe},"12b1":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i={list:"list",compactGrid:"compactGrid",detailedGrid:"detailedGrid",hidden:"hidden"}},1417:function(e,t,n){var i={"./markdown":["84cb","highlight-js-custom-markdown"],"./markdown.js":["84cb","highlight-js-custom-markdown"],"./swift":["81c8","highlight-js-custom-swift"],"./swift.js":["81c8","highlight-js-custom-swift"]};function r(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],r=t[0];return n.e(t[1]).then((function(){return n(r)}))}r.keys=function(){return Object.keys(i)},r.id="1417",e.exports=r},"146e":function(e,t,n){"use strict";var i=n("e425"),r=n("dd18"),a=n("8a61");function s(e){return new Promise((t,n)=>{e.complete?t():(e.addEventListener("load",t,{once:!0}),e.addEventListener("error",n,{once:!0}))})}function o(){return Promise.allSettled([...document.getElementsByTagName("img")].map(s))}t["a"]={mixins:[a["a"]],mounted(){this.scrollToElementIfAnchorPresent()},updated(){this.scrollToElementIfAnchorPresent()},methods:{async scrollToElementIfAnchorPresent(){const{hash:e}=this.$route;if(!e)return;const{imageLoadingStrategy:t}=i["a"].state;i["a"].setImageLoadingStrategy(r["a"].eager),await this.$nextTick(),await o(),this.scrollToElement(e),i["a"].setImageLoadingStrategy(t)}}}},"161e":function(e,t,n){},"1d9f":function(e,t,n){"use strict";n("30d0")},"20ea":function(e,t,n){},2224:function(e,t,n){"use strict";n("b392")},2368:function(e,t,n){"use strict";n("0e19")},"25a9":function(e,t,n){"use strict";n.d(t,"b",(function(){return p})),n.d(t,"d",(function(){return h})),n.d(t,"a",(function(){return m})),n.d(t,"c",(function(){return f}));var i=n("748c"),r=n("d26a"),a=n("3bdd"),s=n("6842");class o extends Error{constructor({location:e,response:t}){super("Request redirected"),this.location=e,this.response=t}}class l extends Error{constructor(e){super("Unable to fetch data"),this.route=e}}async function c(e,t={}){function n(e){return("ide"!==Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET||0!==e.status)&&!e.ok}const i=new URL(e,window.location.href),s=Object(r["c"])(t);s&&(i.search=s);const l=await fetch(i.href);if(n(l))throw l;if(l.redirected)throw new o({location:l.url,response:l});const c=await l.json();return Object(a["c"])(c.schemaVersion),c}function u(e){const t=e.replace(/\/$/,"");return Object(i["d"])([s["a"],"data",t])+".json"}function d(e){const{pathname:t,search:n}=new URL(e),i=/\/data(\/.*).json$/,r=i.exec(t);return r?r[1]+n:t+n}async function p(e,t,n){const i=u(e.path);let r;try{r=await c(i,e.query)}catch(a){if("ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET)throw console.error(a),!1;if(a instanceof o)throw d(a.location);a.status&&404===a.status?n({name:"not-found",params:[e.path]}):n(new l(e))}return r}function h(e,t){return!Object(r["a"])(e,t)}function m(e){return JSON.parse(JSON.stringify(e))}async function f(){const e=new URL(""+Object(i["d"])([s["a"],"index/index.json"]),window.location.href);return c(e)}},"287e":function(e,t,n){},"2ab3":function(e,t,n){var i={"./bash":["f0f8","highlight-js-bash"],"./bash.js":["f0f8","highlight-js-bash"],"./c":["1fe5","highlight-js-c"],"./c.js":["1fe5","highlight-js-c"],"./cpp":["0209","highlight-js-cpp"],"./cpp.js":["0209","highlight-js-cpp"],"./css":["ee8c","highlight-js-css"],"./css.js":["ee8c","highlight-js-css"],"./diff":["48b8","highlight-js-diff"],"./diff.js":["48b8","highlight-js-diff"],"./http":["c01d","highlight-js-http"],"./http.js":["c01d","highlight-js-http"],"./java":["332f","highlight-js-java"],"./java.js":["332f","highlight-js-java"],"./javascript":["4dd1","highlight-js-javascript"],"./javascript.js":["4dd1","highlight-js-javascript"],"./json":["5ad2","highlight-js-json"],"./json.js":["5ad2","highlight-js-json"],"./llvm":["7c30","highlight-js-llvm"],"./llvm.js":["7c30","highlight-js-llvm"],"./markdown":["04b0","highlight-js-markdown"],"./markdown.js":["04b0","highlight-js-markdown"],"./objectivec":["9bf2","highlight-js-objectivec"],"./objectivec.js":["9bf2","highlight-js-objectivec"],"./perl":["6a51","highlight-js-perl"],"./perl.js":["6a51","highlight-js-perl"],"./php":["2907","highlight-js-php"],"./php.js":["2907","highlight-js-php"],"./python":["9510","highlight-js-python"],"./python.js":["9510","highlight-js-python"],"./ruby":["82cb","highlight-js-ruby"],"./ruby.js":["82cb","highlight-js-ruby"],"./scss":["6113","highlight-js-scss"],"./scss.js":["6113","highlight-js-scss"],"./shell":["b65b","highlight-js-shell"],"./shell.js":["b65b","highlight-js-shell"],"./swift":["2a39","highlight-js-swift"],"./swift.js":["2a39","highlight-js-swift"],"./xml":["8dcb","highlight-js-xml"],"./xml.js":["8dcb","highlight-js-xml"]};function r(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],r=t[0];return n.e(t[1]).then((function(){return n.t(r,7)}))}r.keys=function(){return Object.keys(i)},r.id="2ab3",e.exports=r},"2bdf":function(e,t,n){"use strict";n("3f7f")},"2cae":function(e,t,n){"use strict";n.d(t,"a",(function(){return a})),n.d(t,"b",(function(){return s}));var i=n("31d4"),r=n("66cd");const a={blue:"blue",teal:"teal",orange:"orange",purple:"purple",green:"green",sky:"sky",pink:"pink"},s={[i["b"].article]:a.teal,[i["b"].init]:a.blue,[i["b"].case]:a.orange,[i["b"].class]:a.purple,[i["b"].collection]:a.pink,[r["a"].collectionGroup]:a.teal,[i["b"].dictionarySymbol]:a.purple,[i["b"].enum]:a.orange,[i["b"].extension]:a.orange,[i["b"].func]:a.green,[i["b"].op]:a.green,[i["b"].httpRequest]:a.green,[i["b"].module]:a.sky,[i["b"].method]:a.blue,[i["b"].macro]:a.pink,[i["b"].protocol]:a.purple,[i["b"].property]:a.teal,[i["b"].propertyListKey]:a.green,[i["b"].propertyListKeyReference]:a.green,[i["b"].sampleCode]:a.purple,[i["b"].struct]:a.purple,[i["b"].subscript]:a.blue,[i["b"].typealias]:a.orange,[i["b"].union]:a.purple,[i["b"].var]:a.purple}},3024:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"technology-icon",attrs:{viewBox:"0 0 14 14",themeId:"technology"}},[n("path",{attrs:{d:"M3.39,9l3.16,1.84.47.28.47-.28L10.61,9l.45.26,1.08.63L7,12.91l-5.16-3,1.08-.64L3.39,9M7,0,0,4.1,2.47,5.55,0,7,2.47,8.44,0,9.9,7,14l7-4.1L11.53,8.45,14,7,11.53,5.56,14,4.1ZM7,7.12,5.87,6.45l-1.54-.9L3.39,5,1.85,4.1,7,1.08l5.17,3L10.6,5l-.93.55-1.54.91ZM7,10,3.39,7.9,1.85,7,3.4,6.09,4.94,7,7,8.2,9.06,7,10.6,6.1,12.15,7l-1.55.9Z"}})])},r=[],a=n("be08"),s={name:"TechnologyIcon",components:{SVGIcon:a["a"]}},o=s,l=n("2877"),c=Object(l["a"])(o,i,r,!1,null,null,null);t["a"]=c.exports},"308e":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"column",style:e.style},[e._t("default")],2)},r=[],a={name:"Column",props:{span:{type:Number,default:null}},computed:{style:({span:e})=>({"--col-span":e})}},s=a,o=(n("fe08"),n("2877")),l=Object(o["a"])(s,i,r,!1,null,"0f654188",null);t["a"]=l.exports},"30b0":function(e,t,n){},"30d0":function(e,t,n){},"31d4":function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return r}));const i={article:"article",associatedtype:"associatedtype",buildSetting:"buildSetting",case:"case",collection:"collection",class:"class",container:"container",dictionarySymbol:"dictionarySymbol",enum:"enum",extension:"extension",func:"func",groupMarker:"groupMarker",httpRequest:"httpRequest",init:"init",languageGroup:"languageGroup",learn:"learn",macro:"macro",method:"method",module:"module",op:"op",overview:"overview",project:"project",property:"property",propertyListKey:"propertyListKey",propertyListKeyReference:"propertyListKeyReference",protocol:"protocol",resources:"resources",root:"root",sampleCode:"sampleCode",section:"section",struct:"struct",subscript:"subscript",symbol:"symbol",tutorial:"tutorial",typealias:"typealias",union:"union",var:"var"},r={[i.init]:i.method,[i.case]:i.enum,[i.propertyListKeyReference]:i.propertyListKey,[i.project]:i.tutorial}},"34b0":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-chevron-right-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-chevron-right"}},[n("path",{attrs:{d:"M2.964 1.366l0.649-0.76 7.426 6.343-7.423 6.445-0.655-0.755 6.545-5.683-6.542-5.59z"}})])},r=[],a=n("be08"),s={name:"InlineChevronRightIcon",components:{SVGIcon:a["a"]}},o=s,l=n("2877"),c=Object(l["a"])(o,i,r,!1,null,null,null);t["a"]=c.exports},"3b96":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"curly-brackets-icon",attrs:{viewBox:"0 0 14 14",themeId:"curly-brackets"}},[n("path",{attrs:{d:"M9.987 14h-0.814v-0.916h0.36c0.137 0 0.253-0.038 0.349-0.116 0.099-0.080 0.179-0.188 0.239-0.318 0.064-0.134 0.11-0.298 0.139-0.483 0.031-0.186 0.045-0.38 0.045-0.58v-2.115c0-0.417 0.046-0.781 0.139-1.083 0.092-0.3 0.2-0.554 0.322-0.754 0.127-0.203 0.246-0.353 0.366-0.458 0.087-0.076 0.155-0.131 0.207-0.169-0.052-0.037-0.12-0.093-0.207-0.167-0.12-0.105-0.239-0.255-0.366-0.459-0.122-0.2-0.23-0.453-0.322-0.754-0.093-0.3-0.139-0.665-0.139-1.082v-2.13c0-0.199-0.014-0.392-0.045-0.572-0.029-0.182-0.076-0.345-0.139-0.483-0.060-0.137-0.141-0.246-0.239-0.328-0.095-0.076-0.212-0.115-0.349-0.115h-0.36v-0.916h0.814c0.442 0 0.788 0.18 1.030 0.538 0.238 0.352 0.358 0.826 0.358 1.407v2.236c0 0.3 0.015 0.597 0.044 0.886 0.030 0.287 0.086 0.544 0.164 0.765 0.077 0.216 0.184 0.392 0.318 0.522 0.129 0.124 0.298 0.188 0.503 0.188h0.058v0.916h-0.058c-0.206 0-0.374 0.064-0.503 0.188-0.134 0.129-0.242 0.305-0.318 0.521-0.078 0.223-0.134 0.48-0.164 0.766-0.029 0.288-0.044 0.587-0.044 0.884v2.236c0 0.582-0.12 1.055-0.358 1.409-0.242 0.358-0.588 0.538-1.030 0.538z"}}),n("path",{attrs:{d:"M4.827 14h-0.814c-0.442 0-0.788-0.18-1.030-0.538-0.238-0.352-0.358-0.825-0.358-1.409v-2.221c0-0.301-0.015-0.599-0.045-0.886-0.029-0.287-0.085-0.544-0.163-0.764-0.077-0.216-0.184-0.393-0.318-0.522-0.131-0.127-0.296-0.188-0.503-0.188h-0.058v-0.916h0.058c0.208 0 0.373-0.063 0.503-0.188 0.135-0.129 0.242-0.304 0.318-0.522 0.078-0.22 0.134-0.477 0.163-0.765 0.030-0.286 0.045-0.585 0.045-0.886v-2.251c0-0.582 0.12-1.055 0.358-1.407 0.242-0.358 0.588-0.538 1.030-0.538h0.814v0.916h-0.36c-0.138 0-0.252 0.038-0.349 0.116-0.099 0.079-0.179 0.189-0.239 0.327-0.064 0.139-0.11 0.302-0.141 0.483-0.029 0.18-0.044 0.373-0.044 0.572v2.13c0 0.417-0.046 0.782-0.138 1.082-0.092 0.302-0.201 0.556-0.324 0.754-0.123 0.201-0.246 0.356-0.366 0.459-0.086 0.074-0.153 0.13-0.206 0.167 0.052 0.038 0.12 0.093 0.206 0.169 0.12 0.103 0.243 0.258 0.366 0.458s0.232 0.453 0.324 0.754c0.092 0.302 0.138 0.666 0.138 1.083v2.115c0 0.2 0.015 0.394 0.044 0.58 0.030 0.186 0.077 0.349 0.139 0.482 0.062 0.132 0.142 0.239 0.241 0.32 0.096 0.079 0.21 0.116 0.349 0.116h0.36z"}})])},r=[],a=n("be08"),s={name:"CurlyBracketsIcon",components:{SVGIcon:a["a"]}},o=s,l=n("2877"),c=Object(l["a"])(o,i,r,!1,null,null,null);t["a"]=c.exports},"3bdd":function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return s})),n.d(t,"c",(function(){return d}));const i={major:0,minor:3,patch:0};function r({major:e,minor:t,patch:n}){return[e,t,n].join(".")}function a(e){const[t=0,n=0,i=0]=e.split(".");return[Number(t),Number(n),Number(i)]}function s(e,t){const n=a(e),i=a(t);for(let r=0;ri[r])return 1;if(n[r]`[Swift-DocC-Render] The render node version for this page (${e}) has a different major version component than Swift-DocC-Render supports (${o}). Compatibility is not guaranteed.`;function u(e){const{major:t,minor:n}=e,{major:a,minor:s}=i;return t!==a?c(r(e)):n>s?l(r(e)):""}function d(e){if(!e)return;const t=u(e);t&&console.warn(t)}},"3f7f":function(e,t,n){},"43fe":function(e,t,n){"use strict";n("4573")},4573:function(e,t,n){},"47cc":function(e,t,n){},"49e3":function(e,t,n){},"4d50":function(e,t,n){"use strict";n("0d7b")},"50fa":function(e,t,n){},"517a":function(e,t,n){"use strict";n("8222")},"52e4":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("WordBreak",{attrs:{tag:"code"}},[e._t("default")],2)},r=[],a=n("7b1f"),s={name:"CodeVoice",components:{WordBreak:a["a"]}},o=s,l=(n("8c92"),n("2877")),c=Object(l["a"])(o,i,r,!1,null,"05f4a5b7",null);t["a"]=c.exports},5677:function(e,t,n){"use strict";n.r(t),n.d(t,"BlockType",(function(){return bt}));var i=n("e3ab"),r=n("7b69"),a=n("5dcc"),s=n("52e4"),o=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"DictionaryExample"},[e._t("default"),n("CollapsibleCodeListing",{attrs:{content:e.example.content,showLineNumbers:""}})],2)},l=[],c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"collapsible-code-listing",class:{"single-line":1===e.content[0].code.length}},[n("pre",[n("div",e._l(this.content,(function(t,i){return n("div",{key:i,class:["container-general",{collapsible:!0===t.collapsible},{collapsed:!0===t.collapsible&&e.collapsed}]},e._l(t.code,(function(t,i){return n("code",{key:i,staticClass:"code-line-container"},[e._v("\n "),n("div",{directives:[{name:"show",rawName:"v-show",value:e.showLineNumbers,expression:"showLineNumbers"}],staticClass:"code-number"}),e._v("\n "),n("div",{staticClass:"code-line"},[e._v(e._s(t))]),e._v("\n ")])})),0)})),0)])])},u=[],d={name:"CollapsibleCodeListing",props:{collapsed:{type:Boolean,required:!1},content:{type:Array,required:!0},showLineNumbers:{type:Boolean,default:()=>!0}}},p=d,h=(n("9975"),n("2877")),m=Object(h["a"])(p,c,u,!1,null,"d68ae420",null),f=m.exports,g={name:"DictionaryExample",components:{CollapsibleCodeListing:f},props:{example:{type:Object,required:!0}}},b=g,v=Object(h["a"])(b,o,l,!1,null,null,null),y=v.exports,w=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",{staticClass:"endpoint-example"},[n("Column",{staticClass:"example-code"},[e._t("default"),n("Tabnav",{model:{value:e.currentTab,callback:function(t){e.currentTab=t},expression:"currentTab"}},[n("TabnavItem",{attrs:{value:e.Tab.request}},[e._v(e._s(e.Tab.request))]),n("TabnavItem",{attrs:{value:e.Tab.response}},[e._v(e._s(e.Tab.response))])],1),n("div",{staticClass:"output"},[e.isCurrent(e.Tab.request)?n("div",{staticClass:"code"},[n("CollapsibleCodeListing",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:""}},"CollapsibleCodeListing",e.request,!1))],1):e._e(),e.isCurrent(e.Tab.response)?n("div",{staticClass:"code"},[n("CollapsibleCodeListing",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:""}},"CollapsibleCodeListing",e.response,!1))],1):e._e()]),e.isCollapsible?n("div",{staticClass:"controls"},[e.isCollapsed?n("a",{staticClass:"toggle",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.showMore.apply(null,arguments)}}},[n("InlinePlusCircleSolidIcon",{staticClass:"control-icon icon-inline"}),e._v(" More ")],1):n("a",{staticClass:"toggle",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.showLess.apply(null,arguments)}}},[n("InlineMinusCircleSolidIcon",{staticClass:"control-icon icon-inline"}),e._v(" Less ")],1)]):e._e()],2)],1)},_=[],x=n("0f00"),k=n("620a"),C=function(){var e,t=this,n=t.$createElement,i=t._self._c||n;return i("nav",{staticClass:"tabnav",class:(e={},e["tabnav--"+t.position]=t.position,e["tabnav--vertical"]=t.vertical,e)},[i("ul",{staticClass:"tabnav-items"},[t._t("default")],2)])},S=[];const j="tabnavData";var E={name:"Tabnav",constants:{ProvideKey:j},provide(){const e={selectTab:this.selectTab};return Object.defineProperty(e,"activeTab",{enumerable:!0,get:()=>this.value}),{[j]:e}},props:{position:{type:String,required:!1,validator:e=>new Set(["start","center","end"]).has(e)},vertical:{type:Boolean,default:!1},value:{type:[String,Number],required:!0}},methods:{selectTab(e){this.$emit("input",e)}}},O=E,I=(n("fb8e"),Object(h["a"])(O,C,S,!1,null,"5283512a",null)),T=I.exports,A=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"tabnav-item"},[n("a",{staticClass:"tabnav-link",class:{active:e.isActive},attrs:{href:"#","aria-current":e.isActive?"true":"false"},on:{click:function(t){return t.preventDefault(),e.tabnavData.selectTab(e.value)}}},[e._t("default")],2)])},B=[],L={name:"TabnavItem",inject:{tabnavData:{default:{activeTab:null,selectTab:()=>{}}}},props:{value:{type:[String,Number],default:null}},computed:{isActive({tabnavData:e,value:t}){return e.activeTab===t}}},N=L,M=(n("6869"),Object(h["a"])(N,A,B,!1,null,"6aa9882a",null)),$=M.exports,R=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-plus-circle-solid-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-plus-circle-solid"}},[n("path",{attrs:{d:"M7.005 0.5h-0.008c-1.791 0.004-3.412 0.729-4.589 1.9l0-0c-1.179 1.177-1.908 2.803-1.908 4.6 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.587-2.906-6.496-6.492-6.5h-0zM4.005 7.52v-1h2.5v-2.51h1v2.51h2.5v1h-2.501v2.49h-1v-2.49z"}})])},P=[],V=n("be08"),D={name:"InlinePlusCircleSolidIcon",components:{SVGIcon:V["a"]}},G=D,z=Object(h["a"])(G,R,P,!1,null,null,null),q=z.exports,U=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-minus-circle-solid-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-minus-circle-solid"}},[n("path",{attrs:{d:"m6.98999129.48999129c3.58985091 0 6.50000001 2.91014913 6.50000001 6.5 0 3.58985091-2.9101491 6.50000001-6.50000001 6.50000001-3.58985087 0-6.5-2.9101491-6.5-6.50000001 0-3.58985087 2.91014913-6.5 6.5-6.5zm3 6.02001742h-6v1h6z","fill-rule":"evenodd"}})])},W=[],H={name:"InlineMinusCircleSolidIcon",components:{SVGIcon:V["a"]}},F=H,K=Object(h["a"])(F,U,W,!1,null,null,null),Z=K.exports;const Y={request:"Request",response:"Response"};var X={name:"EndpointExample",components:{InlineMinusCircleSolidIcon:Z,InlinePlusCircleSolidIcon:q,TabnavItem:$,Tabnav:T,CollapsibleCodeListing:f,Row:x["a"],Column:k["a"]},constants:{Tab:Y},props:{request:{type:Object,required:!0},response:{type:Object,required:!0}},data(){return{isCollapsed:!0,currentTab:Y.request}},computed:{Tab:()=>Y,isCollapsible:({response:e,request:t,currentTab:n})=>{const i={[Y.request]:t.content,[Y.response]:e.content}[n]||[];return i.some(({collapsible:e})=>e)}},methods:{isCurrent(e){return this.currentTab===e},showMore(){this.isCollapsed=!1},showLess(){this.isCollapsed=!0}}},J=X,Q=(n("9a2b"),Object(h["a"])(J,w,_,!1,null,"6197ce3f",null)),ee=Q.exports,te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("figure",{attrs:{id:e.anchor}},[e._t("default")],2)},ne=[],ie={name:"Figure",props:{anchor:{type:String,required:!1}}},re=ie,ae=(n("f9e6"),Object(h["a"])(re,te,ne,!1,null,"4baaf006",null)),se=ae.exports,oe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("figcaption",{staticClass:"caption",class:{centered:e.centered}},[e.title?n("strong",[e._v(e._s(e.title))]):e._e(),e._v(" "),e._t("default")],2)},le=[],ce={name:"FigureCaption",props:{title:{type:String,required:!1},centered:{type:Boolean,default:!1}}},ue=ce,de=(n("f785"),Object(h["a"])(ue,oe,le,!1,null,"969dceb4",null)),pe=de.exports,he=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ImageAsset",{attrs:{alt:e.alt,variants:e.variants}})},me=[],fe=n("8bd9"),ge={name:"InlineImage",components:{ImageAsset:fe["a"]},props:{alt:{type:String,default:""},variants:{type:Array,required:!0}}},be=ge,ve=(n("cb92"),Object(h["a"])(be,he,me,!1,null,"3a939631",null)),ye=ve.exports,we=n("86d8"),_e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"table-wrapper"},[n("table",{class:{spanned:e.spanned}},[e._t("default")],2)])},xe=[],ke={name:"Table",props:{spanned:{type:Boolean,default:!1}}},Ce=ke,Se=(n("59ce"),Object(h["a"])(Ce,_e,xe,!1,null,"9a297d5c",null)),je=Se.exports,Ee=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("s",[e._t("default")],2)},Oe=[],Ie={name:"StrikeThrough"},Te=Ie,Ae=(n("830f"),Object(h["a"])(Te,Ee,Oe,!1,null,"eb91ce54",null)),Be=Ae.exports,Le=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("small",[e._t("default")],2)},Ne=[],Me={name:"Small"},$e=Me,Re=(n("b0f5"),Object(h["a"])($e,Le,Ne,!1,null,"77035f61",null)),Pe=Re.exports,Ve=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Asset",{attrs:{identifier:e.identifier,"video-autoplays":!1,"video-muted":!1,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile}})},De=[],Ge=n("80e4"),ze=n("7689"),qe={name:"BlockVideo",mixins:[ze["a"]],components:{Asset:Ge["a"]},props:{identifier:{type:String,required:!0}}},Ue=qe,We=(n("1d9f"),Object(h["a"])(Ue,Ve,De,!1,null,"40d6d180",null)),He=We.exports,Fe=n("308e"),Ke=n("ee9e"),Ze=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TabNavigator",class:[{"tabs--vertical":e.vertical}]},[n("Tabnav",e._b({model:{value:e.currentTitle,callback:function(t){e.currentTitle=t},expression:"currentTitle"}},"Tabnav",{position:e.position,vertical:e.vertical},!1),e._l(e.titles,(function(t){return n("TabnavItem",{key:t,attrs:{value:t}},[e._v(" "+e._s(t)+" ")])})),1),n("div",{staticClass:"tabs-content"},[n("div",{staticClass:"tabs-content-container"},[n("transition",{attrs:{name:"fade"}},[n("div",{key:e.currentTitle},[e._t(e.currentTitle)],2)])],1)])],1)},Ye=[],Xe={name:"TabNavigator",components:{TabnavItem:$,Tabnav:T},props:{vertical:{type:Boolean,default:!1},position:{type:String,default:"start",validator:e=>new Set(["start","center","end"]).has(e)},titles:{type:Array,required:!0,default:()=>[]}},data(){return{currentTitle:this.titles[0]}}},Je=Xe,Qe=(n("7c9f"),Object(h["a"])(Je,Ze,Ye,!1,null,"9b66ac4e",null)),et=Qe.exports,tt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"tasklist"},e._l(e.tasks,(function(t,i){return n("li",{key:i},[e.showCheckbox(t)?n("input",{attrs:{type:"checkbox",disabled:""},domProps:{checked:t.checked}}):e._e(),e._t("task",null,{task:t})],2)})),0)},nt=[];const it="checked",rt=e=>Object.hasOwnProperty.call(e,it);var at={name:"TaskList",props:{tasks:{required:!0,type:Array,validator:e=>e.some(rt)}},methods:{showCheckbox:rt}},st=at,ot=(n("c3da"),Object(h["a"])(st,tt,nt,!1,null,"6a56a858",null)),lt=ot.exports,ct=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isListStyle?n("div",{staticClass:"links-block"},e._l(e.items,(function(e){return n("TopicsLinkBlock",{key:e.identifier,staticClass:"topic-link-block",attrs:{topic:e}})})),1):n("TopicsLinkCardGrid",{staticClass:"links-block",attrs:{items:e.items,"topic-style":e.blockStyle}})},ut=[],dt=n("70fb"),pt=n("12b1"),ht={name:"LinksBlock",inject:["references"],components:{TopicsLinkBlock:()=>n.e("chunk-384ef189").then(n.bind(null,"2a18")),TopicsLinkCardGrid:dt["a"]},props:{identifiers:{type:Array,required:!0},blockStyle:{type:String,default:pt["a"].compactGrid}},computed:{isListStyle:({blockStyle:e})=>e===pt["a"].list,items:({identifiers:e,references:t})=>e.reduce((e,n)=>t[n]?e.concat(t[n]):e,[])}},mt=ht,ft=(n("0c95"),Object(h["a"])(mt,ct,ut,!1,null,"81ecd99a",null)),gt=ft.exports;const bt={aside:"aside",codeListing:"codeListing",endpointExample:"endpointExample",heading:"heading",orderedList:"orderedList",paragraph:"paragraph",table:"table",termList:"termList",unorderedList:"unorderedList",dictionaryExample:"dictionaryExample",small:"small",video:"video",row:"row",tabNavigator:"tabNavigator",links:"links"},vt={codeVoice:"codeVoice",emphasis:"emphasis",image:"image",inlineHead:"inlineHead",link:"link",newTerm:"newTerm",reference:"reference",strong:"strong",text:"text",superscript:"superscript",subscript:"subscript",strikethrough:"strikethrough"},yt={both:"both",column:"column",none:"none",row:"row"},wt={left:"left",right:"right",center:"center",unset:"unset"},_t=5;function xt(e,t){const n=n=>n.map(xt(e,t)),o=t=>t.map(t=>e("li",{},n(t.content))),l=(t,i,r,a,s,o,l)=>{const{colspan:c,rowspan:u}=o[`${s}_${a}`]||{};if(0===c||0===u)return null;const d=l[a]||wt.unset;let p=null;return d!==wt.unset&&(p=d+"-cell"),e(t,{attrs:{...i,colspan:c,rowspan:u},class:p},n(r))},c=(t,n=yt.none,i={},r=[])=>{switch(n){case yt.both:{const[n,...a]=t;return[e("thead",{},[e("tr",{},n.map((e,t)=>l("th",{scope:"col"},e,t,0,i,r)))]),e("tbody",{},a.map(([t,...n],a)=>e("tr",{},[l("th",{scope:"row"},t,0,a+1,i,r),...n.map((e,t)=>l("td",{},e,t+1,a+1,i,r))])))]}case yt.column:return[e("tbody",{},t.map(([t,...n],a)=>e("tr",{},[l("th",{scope:"row"},t,0,a,i,r),...n.map((e,t)=>l("td",{},e,t+1,a,i,r))])))];case yt.row:{const[n,...a]=t;return[e("thead",{},[e("tr",{},n.map((e,t)=>l("th",{scope:"col"},e,t,0,i,r)))]),e("tbody",{},a.map((t,n)=>e("tr",{},t.map((e,t)=>l("td",{},e,t,n+1,i,r)))))]}default:return[e("tbody",{},t.map((t,n)=>e("tr",{},t.map((e,t)=>l("td",{},e,t,n,i,r)))))]}},u=({metadata:{abstract:t=[],anchor:i,title:r},...a})=>{const s=[n([a])];return(r&&t.length||t.length)&&s.splice(r?0:1,0,e(pe,{props:{title:r,centered:!r}},n(t))),e(se,{props:{anchor:i}},s)};return function(l){switch(l.type){case bt.aside:{const t={kind:l.style,name:l.name};return e(i["a"],{props:t},n(l.content))}case bt.codeListing:{if(l.metadata&&l.metadata.anchor)return u(l);const t={syntax:l.syntax,fileType:l.fileType,content:l.code,showLineNumbers:l.showLineNumbers};return e(r["a"],{props:t})}case bt.endpointExample:{const t={request:l.request,response:l.response};return e(ee,{props:t},n(l.summary||[]))}case bt.heading:{const t={anchor:l.anchor,level:l.level};return e(a["a"],{props:t},l.text)}case bt.orderedList:return e("ol",{attrs:{start:l.start}},o(l.items));case bt.paragraph:{const t=1===l.inlineContent.length&&l.inlineContent[0].type===vt.image,i=t?{class:["inline-image-container"]}:{};return e("p",i,n(l.inlineContent))}case bt.table:return l.metadata&&l.metadata.anchor?u(l):e(je,{props:{spanned:!!l.extendedData}},c(l.rows,l.header,l.extendedData,l.alignments));case bt.termList:return e("dl",{},l.items.map(({term:t,definition:i})=>[e("dt",{},n(t.inlineContent)),e("dd",{},n(i.content))]));case bt.unorderedList:{const t=e=>lt.props.tasks.validator(e.items);return t(l)?e(lt,{props:{tasks:l.items},scopedSlots:{task:e=>n(e.task.content)}}):e("ul",{},o(l.items))}case bt.dictionaryExample:{const t={example:l.example};return e(y,{props:t},n(l.summary||[]))}case bt.small:return e("p",{},[e(Pe,{},n(l.inlineContent))]);case bt.video:return l.metadata&&l.metadata.abstract?u(l):t[l.identifier]?e(He,{props:{identifier:l.identifier}}):null;case bt.row:{const t=l.numberOfColumns?{large:l.numberOfColumns}:void 0;return e(Ke["a"],{props:{columns:t}},l.columns.map(t=>e(Fe["a"],{props:{span:t.size}},n(t.content))))}case bt.tabNavigator:{const t=l.tabs.length>_t,i=l.tabs.map(e=>e.title),r=l.tabs.reduce((e,t)=>({...e,[t.title]:()=>n(t.content)}),{});return e(et,{props:{titles:i,vertical:t},scopedSlots:r})}case bt.links:return e(gt,{props:{blockStyle:l.style,identifiers:l.items}});case vt.codeVoice:return e(s["a"],{},l.code);case vt.emphasis:case vt.newTerm:return e("em",n(l.inlineContent));case vt.image:{if(l.metadata&&(l.metadata.anchor||l.metadata.abstract))return u(l);const n=t[l.identifier];return n?e(ye,{props:{alt:n.alt,variants:n.variants}}):null}case vt.link:return e("a",{attrs:{href:l.destination}},l.title);case vt.reference:{const i=t[l.identifier];if(!i)return null;const r=l.overridingTitleInlineContent||i.titleInlineContent,a=l.overridingTitle||i.title;return e(we["a"],{props:{url:i.url,kind:i.kind,role:i.role,isActive:l.isActive,ideTitle:i.ideTitle,titleStyle:i.titleStyle}},r?n(r):a)}case vt.strong:case vt.inlineHead:return e("strong",n(l.inlineContent));case vt.text:return l.text;case vt.superscript:return e("sup",n(l.inlineContent));case vt.subscript:return e("sub",n(l.inlineContent));case vt.strikethrough:return e(Be,n(l.inlineContent));default:return null}}}var kt,Ct,St={name:"ContentNode",constants:{TableHeaderStyle:yt,TableColumnAlignments:wt},render:function(e){return e(this.tag,{class:"content"},this.content.map(xt(e,this.references),this))},inject:{references:{default(){return{}}}},props:{content:{type:Array,required:!0},tag:{type:String,default:()=>"div"}},methods:{map(e){function t(n=[]){return n.map(n=>{switch(n.type){case bt.aside:return e({...n,content:t(n.content)});case bt.dictionaryExample:return e({...n,summary:t(n.summary)});case bt.paragraph:case vt.emphasis:case vt.strong:case vt.inlineHead:case vt.superscript:case vt.subscript:case vt.strikethrough:case vt.newTerm:return e({...n,inlineContent:t(n.inlineContent)});case bt.orderedList:case bt.unorderedList:return e({...n,items:n.items.map(e=>({...e,content:t(e.content)}))});case bt.table:return e({...n,rows:n.rows.map(e=>e.map(t))});case bt.termList:return e({...n,items:n.items.map(e=>({...e,term:{inlineContent:t(e.term.inlineContent)},definition:{content:t(e.definition.content)}}))});default:return e(n)}})}return t(this.content)},forEach(e){function t(n=[]){n.forEach(n=>{switch(e(n),n.type){case bt.aside:t(n.content);break;case bt.paragraph:case vt.emphasis:case vt.strong:case vt.inlineHead:case vt.newTerm:case vt.superscript:case vt.subscript:case vt.strikethrough:t(n.inlineContent);break;case bt.orderedList:case bt.unorderedList:n.items.forEach(e=>t(e.content));break;case bt.dictionaryExample:t(n.summary);break;case bt.table:n.rows.forEach(e=>{e.forEach(t)});break;case bt.termList:n.items.forEach(e=>{t(e.term.inlineContent),t(e.definition.content)});break}})}return t(this.content)},reduce(e,t){let n=t;return this.forEach(t=>{n=e(n,t)}),n}},computed:{plaintext(){return this.reduce((e,t)=>t.type===bt.paragraph?e+"\n":t.type===vt.text?`${e}${t.text}`:e,"").trim()}},BlockType:bt,InlineType:vt},jt=St,Et=Object(h["a"])(jt,kt,Ct,!1,null,null,null);t["default"]=Et.exports},"598a":function(e,t,n){},"59ce":function(e,t,n){"use strict";n("c212")},"5b99":function(e,t,n){"use strict";n("605b")},"5c97":function(e,t,n){},"5da3":function(e,t,n){e.exports=n.p+"img/no-image@2x.df2a0a50.png"},"5dcc":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("h"+e.level,{tag:"component",attrs:{id:e.anchor}},[e.anchor&&!e.isTargetIDE?n("router-link",{staticClass:"header-anchor",attrs:{to:{hash:"#"+e.anchor},"aria-label":"Scroll to section"},on:{click:function(t){return e.handleFocusAndScroll(e.anchor)}}},[e._t("default"),n("LinkIcon",{staticClass:"icon",attrs:{"aria-hidden":"true"}})],2):[e._t("default")]],2)},r=[],a=n("8a61"),s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"link-icon",attrs:{viewBox:"0 0 20 20"}},[n("path",{attrs:{d:"M19.34,4.88L15.12,.66c-.87-.87-2.3-.87-3.17,0l-3.55,3.56-1.38,1.38-1.4,1.4c-.47,.47-.68,1.09-.64,1.7,.02,.29,.09,.58,.21,.84,.11,.23,.24,.44,.43,.63l4.22,4.22h0l.53-.53,.53-.53h0l-4.22-4.22c-.29-.29-.29-.77,0-1.06l1.4-1.4,.91-.91,.58-.58,.55-.55,2.9-2.9c.29-.29,.77-.29,1.06,0l4.22,4.22c.29,.29,.29,.77,0,1.06l-2.9,2.9c.14,.24,.24,.49,.31,.75,.08,.32,.11,.64,.09,.96l3.55-3.55c.87-.87,.87-2.3,0-3.17Z"}}),n("path",{attrs:{d:"M14.41,9.82s0,0,0,0l-4.22-4.22h0l-.53,.53-.53,.53h0l4.22,4.22c.29,.29,.29,.77,0,1.06l-1.4,1.4-.91,.91-.58,.58-.55,.55h0l-2.9,2.9c-.29,.29-.77,.29-1.06,0L1.73,14.04c-.29-.29-.29-.77,0-1.06l2.9-2.9c-.14-.24-.24-.49-.31-.75-.08-.32-.11-.64-.09-.97L.68,11.93c-.87,.87-.87,2.3,0,3.17l4.22,4.22c.87,.87,2.3,.87,3.17,0l3.55-3.55,1.38-1.38,1.4-1.4c.47-.47,.68-1.09,.64-1.7-.02-.29-.09-.58-.21-.84-.11-.22-.24-.44-.43-.62Z"}})])},o=[],l=n("be08"),c={name:"LinkIcon",components:{SVGIcon:l["a"]}},u=c,d=n("2877"),p=Object(d["a"])(u,s,o,!1,null,null,null),h=p.exports,m={name:"LinkableHeading",mixins:[a["a"]],components:{LinkIcon:h},props:{anchor:{type:String,required:!1},level:{type:Number,default:()=>2,validator:e=>e>=1&&e<=6}},inject:{isTargetIDE:{default:()=>!1}}},f=m,g=(n("2368"),Object(d["a"])(f,i,r,!1,null,"635e28c1",null));t["a"]=g.exports},6058:function(e,t,n){},"605b":function(e,t,n){},"620a":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"col",class:e.classes},[e._t("default")],2)},r=[];const a=0,s=12,o=new Set(["large","medium","small"]),l=e=>({type:Object,default:()=>({}),validator:t=>Object.keys(t).every(n=>o.has(n)&&e(t[n]))}),c=l(e=>"boolean"===typeof e),u=l(e=>"number"===typeof e&&e>=a&&e<=s);var d={name:"GridColumn",props:{isCentered:c,isUnCentered:c,span:{...u,default:()=>({large:s})}},computed:{classes:function(){return{["large-"+this.span.large]:void 0!==this.span.large,["medium-"+this.span.medium]:void 0!==this.span.medium,["small-"+this.span.small]:void 0!==this.span.small,"large-centered":!!this.isCentered.large,"medium-centered":!!this.isCentered.medium,"small-centered":!!this.isCentered.small,"large-uncentered":!!this.isUnCentered.large,"medium-uncentered":!!this.isUnCentered.medium,"small-uncentered":!!this.isUnCentered.small}}}},p=d,h=(n("6e4a"),n("2877")),m=Object(h["a"])(p,i,r,!1,null,"2ee3ad8b",null);t["a"]=m.exports},"661b":function(e,t,n){},6667:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"diagonal-arrow",attrs:{viewBox:"0 0 14 14",themeId:"diagonal-arrow"}},[n("path",{attrs:{d:"M0.010 12.881l10.429-10.477-3.764 0.824-0.339-1.549 7.653-1.679-1.717 7.622-1.546-0.349 0.847-3.759-10.442 10.487z"}})])},r=[],a=n("be08"),s={name:"DiagonalArrowIcon",components:{SVGIcon:a["a"]}},o=s,l=n("2877"),c=Object(l["a"])(o,i,r,!1,null,null,null);t["a"]=c.exports},"66cd":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i={article:"article",codeListing:"codeListing",collection:"collection",collectionGroup:"collectionGroup",containerSymbol:"containerSymbol",devLink:"devLink",dictionarySymbol:"dictionarySymbol",generic:"generic",link:"link",media:"media",pseudoCollection:"pseudoCollection",pseudoSymbol:"pseudoSymbol",restRequestSymbol:"restRequestSymbol",sampleCode:"sampleCode",symbol:"symbol",table:"table",learn:"learn",overview:"overview",project:"project",tutorial:"tutorial",resources:"resources"}},6869:function(e,t,n){"use strict";n("9649")},"690a":function(e,t,n){},"6e4a":function(e,t,n){"use strict";n("05a1")},"70fb":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TopicsLinkCardGrid"},[n("Row",{attrs:{columns:{large:e.compactCards?3:2,medium:2}}},e._l(e.items,(function(t){return n("Column",{key:t.title},[n("TopicsLinkCardGridItem",{attrs:{item:t,compact:e.compactCards}})],1)})),1)],1)},r=[],a=n("ee9e"),s=n("308e"),o=n("12b1"),l=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Card",{staticClass:"reference-card-grid-item",attrs:{url:e.item.url,image:e.imageReferences.card,title:e.item.title,"floating-style":"",size:e.cardSize,"link-text":e.linkText},scopedSlots:e._u([e.imageReferences.card?null:{key:"cover",fn:function(t){var i=t.classes;return[n("div",{staticClass:"reference-card-grid-item__image",class:i},[n("TopicTypeIcon",{staticClass:"reference-card-grid-item__icon",attrs:{type:e.item.role,"image-override":e.references[e.imageReferences.icon]}})],1)]}}],null,!0)},[e.compact?e._e():n("ContentNode",{attrs:{content:e.item.abstract}})],1)},c=[],u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Reference",e._b({staticClass:"card",class:e.classes,attrs:{url:e.url}},"Reference",e.linkAriaTags,!1),[n("CardCover",{attrs:{variants:e.imageVariants,rounded:e.floatingStyle,"aria-hidden":"true"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._t("cover",null,null,t)]}}],null,!0)}),n("div",{staticClass:"details",attrs:{"aria-hidden":"true"}},[e.eyebrow?n("div",{staticClass:"eyebrow",attrs:{id:e.eyebrowId,"aria-label":e.formatAriaLabel("- "+e.eyebrow)}},[e._v(" "+e._s(e.eyebrow)+" ")]):e._e(),n("div",{staticClass:"title",attrs:{id:e.titleId}},[e._v(" "+e._s(e.title)+" ")]),e.$slots.default?n("div",{staticClass:"card-content",attrs:{id:e.contentId}},[e._t("default")],2):e._e(),e.linkText?n(e.hasButton?"ButtonLink":"div",{tag:"component",staticClass:"link"},[e._v(" "+e._s(e.linkText)+" "),e.showExternalLinks?n("DiagonalArrowIcon",{staticClass:"icon-inline link-icon"}):e.hasButton?e._e():n("InlineChevronRightIcon",{staticClass:"icon-inline link-icon"})],1):e._e()],1)],1)},d=[],p=n("76ab"),h=n("34b0"),m=n("6667"),f=n("86d8"),g={small:"small",large:"large"},b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"card-cover-wrap",class:{rounded:e.rounded}},[e._t("default",(function(){return[n("ImageAsset",{staticClass:"card-cover",attrs:{variants:e.variants}})]}),{classes:"card-cover"})],2)},v=[],y=n("8bd9"),w={name:"CardCover",components:{ImageAsset:y["a"]},props:{variants:{type:Array,required:!0},rounded:{type:Boolean,default:!1}}},_=w,x=(n("4d50"),n("2877")),k=Object(x["a"])(_,b,v,!1,null,"74d84342",null),C=k.exports,S={name:"Card",components:{Reference:f["a"],DiagonalArrowIcon:m["a"],InlineChevronRightIcon:h["a"],CardCover:C,ButtonLink:p["a"]},constants:{CardSize:g},inject:{references:{default:()=>({})}},computed:{titleId:({_uid:e})=>"card_title_"+e,contentId:({_uid:e})=>"card_content_"+e,eyebrowId:({_uid:e})=>"card_eyebrow_"+e,linkAriaTags:({titleId:e,eyebrowId:t,contentId:n,eyebrow:i,$slots:r})=>({"aria-labelledby":e.concat(i?" "+t:""),"aria-describedby":r.default?""+n:null}),classes:({size:e,floatingStyle:t})=>[e,{"floating-style":t}],imageReference:({image:e,references:t})=>t[e]||{},imageVariants:({imageReference:e})=>e.variants||[]},props:{linkText:{type:String,required:!1},url:{type:String,required:!1,default:""},eyebrow:{type:String,required:!1},image:{type:String,required:!1},size:{type:String,validator:e=>Object.prototype.hasOwnProperty.call(g,e)},title:{type:String,required:!0},hasButton:{type:Boolean,default:()=>!1},floatingStyle:{type:Boolean,default:!1},showExternalLinks:{type:Boolean,default:!1},formatAriaLabel:{type:Function,default:e=>e}}},j=S,E=(n("5b99"),Object(x["a"])(j,u,d,!1,null,"3c69339c",null)),O=E.exports,I=n("f12c"),T=n("66cd");const A={[T["a"].article]:"Read article",[T["a"].overview]:"Start tutorial",[T["a"].collection]:"View API collection",[T["a"].symbol]:"View symbol",[T["a"].sampleCode]:"View sample code"};var B={name:"TopicsLinkCardGridItem",components:{TopicTypeIcon:I["a"],Card:O,ContentNode:()=>Promise.resolve().then(n.bind(null,"5677"))},inject:["references"],props:{item:{type:Object,required:!0},compact:{type:Boolean,default:!0}},computed:{imageReferences:({item:e})=>(e.images||[]).reduce((e,t)=>(e[t.type]=t.identifier,e),{icon:null,card:null}),linkText:({compact:e,item:t})=>e?"":A[t.role]||"Learn more",cardSize:({compact:e})=>e?void 0:g.large}},L=B,N=(n("c942"),Object(x["a"])(L,l,c,!1,null,"15b5139b",null)),M=N.exports,$={name:"TopicsLinkCardGrid",components:{TopicsLinkCardGridItem:M,Column:s["a"],Row:a["a"]},props:{items:{type:Array,required:!0},topicStyle:{type:String,default:o["a"].compactGrid,validator:e=>e===o["a"].compactGrid||e===o["a"].detailedGrid}},computed:{compactCards:({topicStyle:e})=>e===o["a"].compactGrid}},R=$,P=Object(x["a"])(R,i,r,!1,null,null,null);t["a"]=P.exports},"72e7":function(e,t,n){"use strict";const i={up:"up",down:"down"};t["a"]={constants:{IntersectionDirections:i},data(){return{intersectionObserver:null,intersectionPreviousScrollY:0,intersectionScrollDirection:i.down}},computed:{intersectionThreshold(){const e=[];for(let t=0;t<=1;t+=.01)e.push(t);return e},intersectionRoot(){return null},intersectionRootMargin(){return"0px 0px 0px 0px"},intersectionObserverOptions(){return{root:this.intersectionRoot,rootMargin:this.intersectionRootMargin,threshold:this.intersectionThreshold}}},async mounted(){await n.e("chunk-2d0d3105").then(n.t.bind(null,"5abe",7)),this.intersectionObserver=new IntersectionObserver(e=>{this.detectIntersectionScrollDirection();const t=this.onIntersect;t?e.forEach(t):console.warn("onIntersect not implemented")},this.intersectionObserverOptions),this.getIntersectionTargets().forEach(e=>{this.intersectionObserver.observe(e)})},beforeDestroy(){this.intersectionObserver&&this.intersectionObserver.disconnect()},methods:{getIntersectionTargets(){return[this.$el]},detectIntersectionScrollDirection(){window.scrollYthis.intersectionPreviousScrollY&&(this.intersectionScrollDirection=i.up),this.intersectionPreviousScrollY=window.scrollY}}}},7689:function(e,t,n){"use strict";t["a"]={computed:{isClientMobile(){let e=!1;return e="maxTouchPoints"in navigator||"msMaxTouchPoints"in navigator?Boolean(navigator.maxTouchPoints||navigator.msMaxTouchPoints):window.matchMedia?window.matchMedia("(pointer:coarse)").matches:"orientation"in window,e}}}},"76ab":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.resolvedComponent,e._b({tag:"component",staticClass:"button-cta",class:{"is-dark":e.isDark}},"component",e.componentProps,!1),[e._t("default")],2)},r=[],a=n("86d8"),s={name:"ButtonLink",components:{Reference:a["a"]},props:{url:{type:String,required:!1},isDark:{type:Boolean,default:!1}},computed:{resolvedComponent:({url:e})=>e?a["a"]:"button",componentProps:({url:e})=>e?{url:e}:{}}},o=s,l=(n("0da1"),n("2877")),c=Object(l["a"])(o,i,r,!1,null,"c9c81868",null);t["a"]=c.exports},"7b1f":function(e,t,n){"use strict";var i,r,a={functional:!0,name:"WordBreak",render(e,{props:t,slots:n,data:i}){const r=n().default||[],a=r.filter(e=>e.text&&!e.tag);if(0===a.length||a.length!==r.length)return e(t.tag,i,r);const s=a.map(({text:e})=>e).join(),o=[];let l=null,c=0;while(null!==(l=t.safeBoundaryPattern.exec(s))){const t=l.index+1;o.push(s.slice(c,t)),o.push(e("wbr",{key:l.index})),c=t}return o.push(s.slice(c,s.length)),e(t.tag,i,o)},props:{safeBoundaryPattern:{type:RegExp,default:()=>/([a-z](?=[A-Z])|(:)\w|\w(?=[._]\w))/g},tag:{type:String,default:()=>"span"}}},s=a,o=n("2877"),l=Object(o["a"])(s,i,r,!1,null,null,null);t["a"]=l.exports},"7b69":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"code-listing",class:{"single-line":1===e.syntaxHighlightedLines.length},attrs:{"data-syntax":e.syntaxNameNormalized}},[e.fileName?n("Filename",{attrs:{isActionable:e.isFileNameActionable,fileType:e.fileType},on:{click:function(t){return e.$emit("file-name-click")}}},[e._v(e._s(e.fileName)+" ")]):e._e(),n("div",{staticClass:"container-general"},[n("pre",[n("code",e._l(e.syntaxHighlightedLines,(function(t,i){return n("span",{key:i,class:["code-line-container",{highlighted:e.isHighlighted(i)}]},[n("span",{directives:[{name:"show",rawName:"v-show",value:e.showLineNumbers,expression:"showLineNumbers"}],staticClass:"code-number",attrs:{"data-line-number":e.lineNumberFor(i)}}),e._v("\n"),n("span",{staticClass:"code-line",domProps:{innerHTML:e._s(t)}})])})),0)])])],1)},r=[],a=n("002d"),s=n("8649"),o=n("1020"),l=n.n(o);const c={objectivec:["objective-c"]},u={bash:["sh","zsh"],c:["h"],cpp:["cc","c++","h++","hpp","hh","hxx","cxx"],css:[],diff:["patch"],http:["https"],java:["jsp"],javascript:["js","jsx","mjs","cjs"],json:[],llvm:[],markdown:["md","mkdown","mkd"],objectivec:["mm","objc","obj-c"].concat(c.objectivec),perl:["pl","pm"],php:[],python:["py","gyp","ipython"],ruby:["rb","gemspec","podspec","thor","irb"],scss:[],shell:["console","shellsession"],swift:[],xml:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"]},d=new Set(["markdown","swift"]),p=Object.entries(u),h=new Set(Object.keys(u)),m=new Map;async function f(e){const t=[e];try{return await t.reduce(async(e,t)=>{let i;await e,i=d.has(t)?await n("1417")("./"+t):await n("2ab3")("./"+t),l.a.registerLanguage(t,i.default)},Promise.resolve()),!0}catch(i){return console.error(`Could not load ${e} file`),!1}}function g(e){if(h.has(e))return e;const t=p.find(([,t])=>t.includes(e));return t?t[0]:null}function b(e){if(m.has(e))return m.get(e);const t=g(e);return m.set(e,t),t}l.a.configure({classPrefix:"syntax-",languages:[...h]});const v=async e=>{const t=b(e);return!(!t||l.a.listLanguages().includes(t))&&f(t)},y=/\r\n|\r|\n/g,w=/syntax-/;function _(e){return 0===e.length?[]:e.split(y)}function x(e){return(e.trim().match(y)||[]).length}function k(e){const t=document.createElement("template");return t.innerHTML=e,t.content.childNodes}function C(e){const{className:t}=e;if(!w.test(t))return null;const n=_(e.innerHTML).reduce((e,n)=>`${e}${n||"\n\n"}\n`,"");return k(n.trim())}function S(e){return Array.from(e.childNodes).forEach(e=>{if(x(e.textContent))try{const t=e.childNodes.length?S(e):C(e);t&&e.replaceWith(...t)}catch(t){console.error(t)}}),C(e)}function j(e,t){const n=g(t);if(!l.a.getLanguage(n))throw new Error("Unsupported language for syntax highlighting: "+t);return l.a.highlight(e,{language:n,ignoreIllegals:!0}).value}function E(e,t){const n=e.join("\n"),i=j(n,t),r=document.createElement("code");return r.innerHTML=i,S(r),_(r.innerHTML)}var O=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"filename"},[e.isActionable?n("a",{attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[n("FileIcon",{attrs:{fileType:e.fileType}}),e._t("default")],2):n("span",[n("FileIcon",{attrs:{fileType:e.fileType}}),e._t("default")],2)])},I=[],T=function(){var e=this,t=e.$createElement,n=e._self._c||t;return"swift"===e.fileType?n("SwiftFileIcon",{staticClass:"file-icon"}):n("GenericFileIcon",{staticClass:"file-icon"})},A=[],B=n("a88f"),L=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"generic-file-icon",attrs:{viewBox:"0 0 14 14",themeId:"generic-file"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},N=[],M=n("be08"),$={name:"GenericFileIcon",components:{SVGIcon:M["a"]}},R=$,P=n("2877"),V=Object(P["a"])(R,L,N,!1,null,null,null),D=V.exports,G={name:"CodeListingFileIcon",components:{SwiftFileIcon:B["a"],GenericFileIcon:D},props:{fileType:String}},z=G,q=(n("e6db"),Object(P["a"])(z,T,A,!1,null,"7c381064",null)),U=q.exports,W={name:"CodeListingFilename",components:{FileIcon:U},props:{isActionable:{type:Boolean,default:()=>!1},fileType:String}},H=W,F=(n("8608"),Object(P["a"])(H,O,I,!1,null,"c8c40662",null)),K=F.exports,Z={name:"CodeListing",components:{Filename:K},data(){return{syntaxHighlightedLines:[]}},props:{fileName:String,isFileNameActionable:{type:Boolean,default:()=>!1},syntax:String,fileType:String,content:{type:Array,required:!0},startLineNumber:{type:Number,default:()=>1},highlights:{type:Array,default:()=>[]},showLineNumbers:{type:Boolean,default:()=>!1}},computed:{escapedContent:({content:e})=>e.map(a["c"]),highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},syntaxNameNormalized(){const e={occ:s["a"].objectiveC.key.url};return e[this.syntax]||this.syntax}},watch:{content:{handler:"syntaxHighlightLines",immediate:!0}},methods:{isHighlighted(e){return this.highlightedLineNumbers.has(this.lineNumberFor(e))},lineNumberFor(e){return this.startLineNumber+e},async syntaxHighlightLines(){let e;try{await v(this.syntaxNameNormalized),e=E(this.content,this.syntaxNameNormalized)}catch(t){e=this.escapedContent}this.syntaxHighlightedLines=e.map(e=>""===e?"\n":e)}}},Y=Z,X=(n("c15f"),Object(P["a"])(Y,i,r,!1,null,"12727242",null));t["a"]=X.exports},"7c9f":function(e,t,n){"use strict";n("20ea")},"80c2":function(e,t,n){},"80c8":function(e,t,n){},"80e4":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"asset"},[n(e.assetComponent,e._g(e._b({tag:"component"},"component",e.assetProps,!1),e.assetListeners))],1)},r=[],a=n("8bd9"),s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("video",{attrs:{controls:e.showsControls,autoplay:e.autoplays,poster:e.normalisedPosterPath,width:e.optimalWidth,playsinline:""},domProps:{muted:e.muted},on:{playing:function(t){return e.$emit("playing")},pause:function(t){return e.$emit("pause")},ended:function(t){return e.$emit("ended")}}},[n("source",{attrs:{src:e.normalizeAssetUrl(e.videoAttributes.url)}})])},o=[],l=n("748c"),c=n("e425"),u=n("821b"),d={name:"VideoAsset",props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},posterVariants:{type:Array,required:!1,default:()=>[]},muted:{type:Boolean,default:!0}},data:()=>({appState:c["a"].state,optimalWidth:null}),computed:{preferredColorScheme:({appState:e})=>e.preferredColorScheme,systemColorScheme:({appState:e})=>e.systemColorScheme,userPrefersDark:({preferredColorScheme:e,systemColorScheme:t})=>e===u["a"].dark.value||e===u["a"].auto.value&&t===u["a"].dark.value,shouldShowDarkVariant:({darkVideoVariantAttributes:e,userPrefersDark:t})=>e&&t,defaultVideoAttributes(){return this.videoVariantsGroupedByAppearance.light[0]||this.darkVideoVariantAttributes||{}},darkVideoVariantAttributes(){return this.videoVariantsGroupedByAppearance.dark[0]},videoVariantsGroupedByAppearance(){return Object(l["e"])(this.variants)},posterVariantsGroupedByAppearance(){const{light:e,dark:t}=Object(l["e"])(this.posterVariants);return{light:Object(l["a"])(e),dark:Object(l["a"])(t)}},defaultPosterAttributes:({posterVariantsGroupedByAppearance:e,userPrefersDark:t})=>t&&e.dark.length?e.dark[0]:e.light[0]||{},normalisedPosterPath:({defaultPosterAttributes:e})=>Object(l["c"])(e.src),videoAttributes:({darkVideoVariantAttributes:e,defaultVideoAttributes:t,shouldShowDarkVariant:n})=>n?e:t},watch:{normalisedPosterPath:{immediate:!0,handler:"getPosterDimensions"}},methods:{normalizeAssetUrl:l["c"],async getPosterDimensions(e){if(!e)return void(this.optimalWidth=null);const{density:t}=this.defaultPosterAttributes,n=parseInt(t.match(/\d+/)[0],10),{width:i}=await Object(l["b"])(e);this.optimalWidth=i/n}}},p=d,h=n("2877"),m=Object(h["a"])(p,s,o,!1,null,null,null),f=m.exports,g=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"video-replay-container"},[n("VideoAsset",{ref:"asset",attrs:{variants:e.variants,autoplays:e.autoplays,showsControls:e.showsControls,muted:e.muted,posterVariants:e.posterVariants},on:{pause:e.onPause,playing:e.onVideoPlaying,ended:e.onVideoEnd}}),n("a",{staticClass:"replay-button",class:{visible:this.showsReplayButton},attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.replay.apply(null,arguments)}}},[e._v(" "+e._s(e.text)+" "),e.played?n("InlineReplayIcon",{staticClass:"replay-icon icon-inline"}):n("PlayIcon",{staticClass:"replay-icon icon-inline"})],1)],1)},b=[],v=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-replay-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-replay"}},[n("path",{attrs:{d:"M2.254 10.201c-1.633-2.613-0.838-6.056 1.775-7.689 2.551-1.594 5.892-0.875 7.569 1.592l0.12 0.184-0.848 0.53c-1.34-2.145-4.166-2.797-6.311-1.457s-2.797 4.166-1.457 6.311 4.166 2.797 6.311 1.457c1.006-0.629 1.71-1.603 2.003-2.723l0.056-0.242 0.98 0.201c-0.305 1.487-1.197 2.792-2.51 3.612-2.613 1.633-6.056 0.838-7.689-1.775z"}}),n("path",{attrs:{d:"M10.76 1.355l0.984-0.18 0.851 4.651-4.56-1.196 0.254-0.967 3.040 0.796z"}})])},y=[],w=n("be08"),_={name:"InlineReplayIcon",components:{SVGIcon:w["a"]}},x=_,k=Object(h["a"])(x,v,y,!1,null,null,null),C=k.exports,S=n("c4dd"),j={name:"ReplayableVideoAsset",components:{PlayIcon:S["a"],InlineReplayIcon:C,VideoAsset:f},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},muted:{type:Boolean,default:!0},posterVariants:{type:Array,default:()=>[]}},computed:{text:({played:e})=>e?"Replay":"Play"},data(){return{showsReplayButton:!(this.autoplays&&this.muted),played:!1}},methods:{async replay(){const e=this.$refs.asset.$el;e&&(await e.play(),this.showsReplayButton=!1)},onVideoEnd(){this.showsReplayButton=!0,this.played=!0},onVideoPlaying(){this.showsReplayButton=!1},onPause(){this.showsControls||this.showsReplayButton||(this.showsReplayButton=!0)}}},E=j,O=(n("018a"),Object(h["a"])(E,g,b,!1,null,"5ff7ec6e",null)),I=O.exports;const T={video:"video",image:"image"};var A={name:"Asset",components:{ImageAsset:a["a"],VideoAsset:f},constants:{AssetTypes:T},inject:["references"],props:{identifier:{type:String,required:!0},showsReplayButton:{type:Boolean,default:()=>!1},showsVideoControls:{type:Boolean,default:()=>!0},videoAutoplays:{type:Boolean,default:()=>!0},videoMuted:{type:Boolean,default:!0}},computed:{rawAsset(){return this.references[this.identifier]||{}},isRawAssetVideo:({rawAsset:e})=>e.type===T.video,videoPoster(){return this.isRawAssetVideo&&this.references[this.rawAsset.poster]},asset(){return this.isRawAssetVideo&&this.prefersReducedMotion&&this.videoPoster||this.rawAsset},assetComponent(){switch(this.asset.type){case T.image:return a["a"];case T.video:return this.showsReplayButton?I:f;default:return}},prefersReducedMotion(){return window.matchMedia("(prefers-reduced-motion)").matches},assetProps(){return{[T.image]:this.imageProps,[T.video]:this.videoProps}[this.asset.type]},imageProps(){return{alt:this.asset.alt,variants:this.asset.variants}},videoProps(){return{variants:this.asset.variants,showsControls:this.showsVideoControls,muted:this.videoMuted,autoplays:!this.prefersReducedMotion&&this.videoAutoplays,posterVariants:this.videoPoster?this.videoPoster.variants:[]}},assetListeners(){return{[T.image]:null,[T.video]:{ended:()=>this.$emit("videoEnded")}}[this.asset.type]}}},B=A,L=(n("d9a3"),Object(h["a"])(B,i,r,!1,null,"72c01652",null));t["a"]=L.exports},8222:function(e,t,n){},"830f":function(e,t,n){"use strict";n("30b0")},"83b9":function(e,t,n){"use strict";n("50fa")},8608:function(e,t,n){"use strict";n("a7f3")},"863d":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"nav-menu-item",class:{"nav-menu-item--animated":e.animate}},[e._t("default")],2)},r=[],a={name:"NavMenuItemBase",props:{animate:{type:Boolean,default:!0}}},s=a,o=(n("43fe"),n("2877")),l=Object(o["a"])(s,i,r,!1,null,"66cbfe4c",null);t["a"]=l.exports},8649:function(e,t,n){"use strict";t["a"]={objectiveC:{name:"Objective-C",key:{api:"occ",url:"objc"}},swift:{name:"Swift",key:{api:"swift",url:"swift"}}}},"86d8":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.refComponent,{tag:"component",attrs:{url:e.urlWithParams,"is-active":e.isActiveComputed}},[e._t("default")],2)},r=[],a=n("d26a"),s=n("66cd"),o=n("9895"),l=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n("a",{attrs:{href:e.url}},[e._t("default")],2):n("span",[e._t("default")],2)},c=[],u={name:"ReferenceExternal",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},d=u,p=n("2877"),h=Object(p["a"])(d,l,c,!1,null,null,null),m=h.exports,f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ReferenceInternal",e._b({},"ReferenceInternal",e.$props,!1),[n("CodeVoice",[e._t("default")],2)],1)},g=[],b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n("router-link",{attrs:{to:e.url}},[e._t("default")],2):n("span",[e._t("default")],2)},v=[],y={name:"ReferenceInternal",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},w=y,_=Object(p["a"])(w,b,v,!1,null,null,null),x=_.exports,k=n("52e4"),C={name:"ReferenceInternalSymbol",props:x.props,components:{ReferenceInternal:x,CodeVoice:k["a"]}},S=C,j=Object(p["a"])(S,f,g,!1,null,null,null),E=j.exports,O={name:"Reference",computed:{isInternal({url:e}){if(!e.startsWith("/")&&!e.startsWith("#"))return!1;const{resolved:{name:t}={}}=this.$router.resolve(e)||{};return t!==o["b"]},isSymbolReference(){return"symbol"===this.kind&&(this.role===s["a"].symbol||this.role===s["a"].dictionarySymbol)},isDisplaySymbol({isSymbolReference:e,titleStyle:t,ideTitle:n}){return n?e&&"symbol"===t:e},refComponent(){return this.isInternal?this.isDisplaySymbol?E:x:m},urlWithParams({isInternal:e}){return e?Object(a["b"])(this.url,this.$route.query):this.url},isActiveComputed({url:e,isActive:t}){return!(!e||!t)}},props:{url:{type:String,required:!0},kind:{type:String,required:!1},role:{type:String,required:!1},isActive:{type:Boolean,required:!1,default:!0},ideTitle:{type:String,required:!1},titleStyle:{type:String,required:!1}}},I=O,T=Object(p["a"])(I,i,r,!1,null,null,null);t["a"]=T.exports},"8a61":function(e,t,n){"use strict";var i=n("3908");t["a"]={methods:{async scrollToElement(e){await Object(i["b"])(8);const t=this.$router.resolve({hash:e}),{selector:n,offset:r}=await this.$router.options.scrollBehavior(t.route),a=document.querySelector(n);return a?(a.scrollIntoView(),window.scrollY+window.innerHeight`${Object(a["c"])(e.src)} ${e.density}`).join(", "),n=e[0],i={srcSet:t,src:Object(a["c"])(n.src)},{width:r}=n.size||{width:null};return r&&(i.width=r,i.height="auto"),i}var h={name:"ImageAsset",mixins:[s],data:()=>({appState:o["a"].state,fallbackImageSrcSet:null,optimalWidth:null}),computed:{allVariants:({lightVariants:e=[],darkVariants:t=[]})=>e.concat(t),defaultAttributes:({lightVariantAttributes:e,darkVariantAttributes:t})=>e||t,darkVariantAttributes:({darkVariants:e})=>p(e),lightVariantAttributes:({lightVariants:e})=>p(e),loading:({appState:e})=>e.imageLoadingStrategy,preferredColorScheme:({appState:e})=>e.preferredColorScheme,prefersAuto:({preferredColorScheme:e})=>e===l["a"].auto.value,prefersDark:({preferredColorScheme:e})=>e===l["a"].dark.value},props:{alt:{type:String,default:""},variants:{type:Array,required:!0},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},methods:{handleImageLoadError(){this.fallbackImageSrcSet=u.a+" 2x"},async calculateOptimalWidth(){const{$refs:{img:{currentSrc:e}},allVariants:t}=this,{density:n}=t.find(({src:t})=>e.endsWith(t)),i=parseInt(n.match(/\d+/)[0],d),r=await Object(a["b"])(e),s=r.width/i;return s},async optimizeImageSize(){if(!this.defaultAttributes.width&&this.$refs.img)try{this.optimalWidth=await this.calculateOptimalWidth()}catch{console.error("Unable to calculate optimal image width")}}},mounted(){this.shouldCalculateOptimalWidth&&this.$refs.img.addEventListener("load",this.optimizeImageSize)}},m=h,f=n("2877"),g=Object(f["a"])(m,i,r,!1,null,null,null);t["a"]=g.exports},"8c92":function(e,t,n){"use strict";n("80c8")},"8d2d":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"tutorial-icon",attrs:{viewBox:"0 0 14 14",themeId:"tutorial"}},[n("path",{attrs:{d:"M0.933 6.067h3.733v1.867h-3.733v-1.867z"}}),n("path",{attrs:{d:"M0.933 1.867h3.733v1.867h-3.733v-1.867z"}}),n("path",{attrs:{d:"M13.067 1.867v10.267h-7.467v-10.267zM12.133 2.8h-5.6v8.4h5.6z"}}),n("path",{attrs:{d:"M0.933 10.267h3.733v1.867h-3.733v-1.867z"}})])},r=[],a=n("be08"),s={name:"TutorialIcon",components:{SVGIcon:a["a"]}},o=s,l=n("2877"),c=Object(l["a"])(o,i,r,!1,null,null,null);t["a"]=c.exports},"92fe":function(e,t,n){},"95da":function(e,t,n){"use strict";var i=n("0cb0");const r="data-original-",a="aria-hidden",s="tabindex";function o(e,t){const n=r+t;if(e.getAttribute(n))return;const i=e.getAttribute(t)||"";e.setAttribute(n,i)}function l(e,t){const n=r+t;if(!e.hasAttribute(n))return;const i=e.getAttribute(n);e.removeAttribute(n),i.length?e.setAttribute(t,i):e.removeAttribute(t)}function c(e,t){const n=document.body;let i=e,r=e;while(i=i.previousElementSibling)t(i);while(r=r.nextElementSibling)t(r);e.parentElement&&e.parentElement!==n&&c(e.parentElement,t)}const u=e=>{o(e,a),o(e,s),e.setAttribute(a,"true"),e.setAttribute(s,"-1");const t=i["a"].getTabbableElements(e);let n=t.length-1;while(n>=0)o(t[n],s),t[n].setAttribute(s,"-1"),n-=1},d=e=>{l(e,a),l(e,s);const t=e.querySelectorAll(`[${r+s}]`);let n=t.length-1;while(n>=0)l(t[n],s),n-=1};t["a"]={hide(e){c(e,u)},show(e){c(e,d)}}},9649:function(e,t,n){},"97a4":function(e,t,n){},9975:function(e,t,n){"use strict";n("287e")},"9a2b":function(e,t,n){"use strict";n("dce7")},"9b30":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"nav-menu-items",attrs:{"data-previous-menu-children-count":e.previousSiblingChildren}},[e._t("default")],2)},r=[],a={name:"NavMenuItems",props:{previousSiblingChildren:{type:Number,default:0}}},s=a,o=(n("517a"),n("2877")),l=Object(o["a"])(s,i,r,!1,null,"67c1c0a5",null);t["a"]=l.exports},a295:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",themeId:"path"}},[n("path",{attrs:{d:"M0 0.948h2.8v2.8h-2.8z"}}),n("path",{attrs:{d:"M11.2 10.252h2.8v2.8h-2.8z"}}),n("path",{attrs:{d:"M6.533 1.852h0.933v10.267h-0.933z"}}),n("path",{attrs:{d:"M2.8 1.852h4.667v0.933h-4.667z"}}),n("path",{attrs:{d:"M6.533 11.186h4.667v0.933h-4.667z"}})])},r=[],a=n("be08"),s={name:"PathIcon",components:{SVGIcon:a["a"]}},o=s,l=n("2877"),c=Object(l["a"])(o,i,r,!1,null,null,null);t["a"]=c.exports},a7d8:function(e,t,n){},a7f3:function(e,t,n){},a88f:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"swift-file-icon",attrs:{viewBox:"0 0 15 14",themeId:"swift-file"}},[n("path",{attrs:{d:"M14.93,13.56A2.15,2.15,0,0,0,15,13a5.37,5.37,0,0,0-1.27-3.24A6.08,6.08,0,0,0,14,7.91,9.32,9.32,0,0,0,9.21.31a8.51,8.51,0,0,1,1.78,5,6.4,6.4,0,0,1-.41,2.18A45.06,45.06,0,0,1,3.25,1.54,44.57,44.57,0,0,0,7.54,6.9,45.32,45.32,0,0,1,1.47,2.32,35.69,35.69,0,0,0,8.56,9.94a6.06,6.06,0,0,1-3.26.85A9.48,9.48,0,0,1,0,8.91a10,10,0,0,0,8.1,4.72c2.55,0,3.25-1.2,4.72-1.2a2.09,2.09,0,0,1,1.91,1.15C14.79,13.69,14.88,13.75,14.93,13.56Z"}})])},r=[],a=n("be08"),s={name:"SwiftFileIcon",components:{SVGIcon:a["a"]}},o=s,l=(n("c3e5"),n("2877")),c=Object(l["a"])(o,i,r,!1,null,"c01a6890",null);t["a"]=c.exports},a97e:function(e,t,n){"use strict";var i=n("63b8");const r=e=>e?`(max-width: ${e}px)`:"",a=e=>e?`(min-width: ${e}px)`:"";function s({minWidth:e,maxWidth:t}){return["only screen",a(e),r(t)].filter(Boolean).join(" and ")}function o({maxWidth:e,minWidth:t}){return window.matchMedia(s({minWidth:t,maxWidth:e}))}var l,c,u={name:"BreakpointEmitter",constants:{BreakpointAttributes:i["a"],BreakpointName:i["b"],BreakpointScopes:i["c"]},props:{scope:{type:String,default:()=>i["c"].default,validator:e=>e in i["c"]}},render(){return this.$scopedSlots.default?this.$scopedSlots.default({matchingBreakpoint:this.matchingBreakpoint}):null},data:()=>({matchingBreakpoint:null}),methods:{initMediaQuery(e,t){const n=o(t),i=t=>this.handleMediaQueryChange(t,e);n.addListener(i),this.$once("hook:beforeDestroy",()=>{n.removeListener(i)}),i(n)},handleMediaQueryChange(e,t){e.matches&&(this.matchingBreakpoint=t,this.$emit("change",t))}},mounted(){const e=i["a"][this.scope]||{};Object.entries(e).forEach(([e,t])=>{this.initMediaQuery(e,t)})}},d=u,p=n("2877"),h=Object(p["a"])(d,l,c,!1,null,null,null);t["a"]=h.exports},a9f1:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"article-icon",attrs:{viewBox:"0 0 14 14",themeId:"article"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},r=[],a=n("be08"),s={name:"ArticleIcon",components:{SVGIcon:a["a"]}},o=s,l=n("2877"),c=Object(l["a"])(o,i,r,!1,null,null,null);t["a"]=c.exports},aea0:function(e,t,n){},b0f5:function(e,t,n){"use strict";n("49e3")},b37f:function(e,t,n){"use strict";n("97a4")},b392:function(e,t,n){},be08:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("svg",{staticClass:"svg-icon",attrs:{"aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[e.themeOverrideURL?n("use",{attrs:{href:e.themeOverrideURL+"#"+e.themeId,width:"100%",height:"100%"}}):e._t("default")],2)},r=[],a=n("6842"),s={name:"SVGIcon",props:{themeId:{type:String,required:!1},iconUrl:{type:String,default:null}},computed:{themeOverrideURL:({iconUrl:e,themeId:t})=>e||Object(a["c"])(["theme","icons",t],void 0)}},o=s,l=(n("c2c4"),n("2877")),c=Object(l["a"])(o,i,r,!1,null,"33d3200a",null);t["a"]=c.exports},bf08:function(e,t,n){"use strict";var i=n("6842"),r=n("d26a");const a=Object(i["c"])(["meta","title"],"Documentation"),s=({title:e,description:t,url:n})=>[{name:"description",content:t},{property:"og:locale",content:"en_US"},{property:"og:site_name",content:a},{property:"og:type",content:"website"},{property:"og:title",content:e},{property:"og:description",content:t},{property:"og:url",content:n},{property:"og:image",content:Object(r["d"])("/developer-og.jpg")},{name:"twitter:image",content:Object(r["d"])("/developer-og-twitter.jpg")},{name:"twitter:card",content:"summary_large_image"},{name:"twitter:description",content:t},{name:"twitter:title",content:e},{name:"twitter:url",content:n}],o=e=>[e,a].filter(Boolean).join(" | "),l=e=>{const{content:t}=e,n=e.property?"property":"name",i=e[n],r=document.querySelector(`meta[${n}="${i}"]`);if(r&&t)r.setAttribute("content",t);else if(r&&!t)r.remove();else if(t){const t=document.createElement("meta");t.setAttribute(n,e[n]),t.setAttribute("content",e.content),document.getElementsByTagName("head")[0].appendChild(t)}},c=e=>{document.title=e};function u({title:e,description:t,url:n}){const i=o(e);c(i),s({title:i,description:t,url:n}).forEach(e=>l(e))}var d=n("002d"),p=n("5677");t["a"]={methods:{extractFirstParagraphText(e=[]){const t=p["default"].computed.plaintext.bind({...p["default"].methods,content:e})();return Object(d["e"])(t)}},computed:{pagePath:({$route:{path:e="/"}={}})=>e,pageURL:({pagePath:e="/"})=>Object(r["d"])(e)},mounted(){u({title:this.pageTitle,description:this.pageDescription,url:this.pageURL})}}},c081:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.action?n("DestinationDataProvider",{attrs:{destination:e.action},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.url,r=t.title;return n("ButtonLink",{attrs:{url:i,isDark:e.isDark}},[e._v(" "+e._s(r)+" ")])}}],null,!1,1264376715)}):e._e()},r=[],a=n("76ab"),s=n("c7ea"),o={name:"CallToActionButton",components:{DestinationDataProvider:s["a"],ButtonLink:a["a"]},props:{action:{type:Object,required:!0},isDark:{type:Boolean,default:!1}}},l=o,c=n("2877"),u=Object(c["a"])(l,i,r,!1,null,null,null);t["a"]=u.exports},c15f:function(e,t,n){"use strict";n("e67f")},c212:function(e,t,n){},c2c4:function(e,t,n){"use strict";n("161e")},c3da:function(e,t,n){"use strict";n("fda2")},c3e5:function(e,t,n){"use strict";n("aea0")},c4dd:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"play-icon",attrs:{viewBox:"0 0 14 14",themeId:"play"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M10.195 7.010l-5 3v-6l5 3z"}})])},r=[],a=n("be08"),s={name:"PlayIcon",components:{SVGIcon:a["a"]}},o=s,l=n("2877"),c=Object(l["a"])(o,i,r,!1,null,null,null);t["a"]=c.exports},c7ea:function(e,t,n){"use strict";const i={link:"link",reference:"reference",text:"text"};var r,a,s={name:"DestinationDataProvider",props:{destination:{type:Object,required:!0,default:()=>({})}},inject:{references:{default:()=>({})},isTargetIDE:{default:()=>!1}},constants:{DestinationType:i},computed:{isExternal:({reference:e,destination:t})=>e.type===i.link||t.type===i.link,shouldAppendOpensInBrowser:({isExternal:e,isTargetIDE:t})=>e&&t,reference:({references:e,destination:t})=>e[t.identifier]||{},linkUrl:({destination:e,reference:t})=>({[i.link]:e.destination,[i.reference]:t.url,[i.text]:e.text}[e.type]),linkTitle:({reference:e,destination:t})=>({[i.link]:t.title,[i.reference]:t.overridingTitle||e.title,[i.text]:""}[t.type])},methods:{formatAriaLabel(e){return this.shouldAppendOpensInBrowser?e+" (opens in browser)":e}},render(){return this.$scopedSlots.default({url:this.linkUrl||"",title:this.linkTitle||"",formatAriaLabel:this.formatAriaLabel,isExternal:this.isExternal})}},o=s,l=n("2877"),c=Object(l["a"])(o,r,a,!1,null,null,null);t["a"]=c.exports},c942:function(e,t,n){"use strict";n("80c2")},cb92:function(e,t,n){"use strict";n("598a")},cbcf:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("nav",{ref:"nav",staticClass:"nav",class:e.rootClasses,attrs:{role:"navigation"}},[n("div",{ref:"wrapper",staticClass:"nav__wrapper"},[n("div",{staticClass:"nav__background"}),e.hasOverlay?n("div",{staticClass:"nav-overlay",on:{click:e.closeNav}}):e._e(),n("div",{staticClass:"nav-content"},[e._t("pre-title",null,{className:"pre-title"},{closeNav:e.closeNav,inBreakpoint:e.inBreakpoint,currentBreakpoint:e.currentBreakpoint,isOpen:e.isOpen}),e.$slots.default?n("div",{staticClass:"nav-title"},[e._t("default")],2):e._e(),e._t("after-title"),n("div",{staticClass:"nav-menu"},[n("a",{ref:"axToggle",staticClass:"nav-ax-toggle",attrs:{href:"#",role:"button"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n("span",{staticClass:"visuallyhidden"},[e.isOpen?[e._v("Close Menu")]:[e._v("Open Menu")]],2)]),n("div",{ref:"tray",staticClass:"nav-menu-tray",on:{transitionend:function(t){return t.target!==t.currentTarget?null:e.onTransitionEnd.apply(null,arguments)},click:e.handleTrayClick}},[e._t("tray",(function(){return[n("NavMenuItems",[e._t("menu-items")],2)]}),{closeNav:e.closeNav})],2)]),n("div",{staticClass:"nav-actions"},[n("a",{ref:"toggle",staticClass:"nav-menucta",attrs:{href:"#",tabindex:"-1","aria-hidden":"true"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n("span",{staticClass:"nav-menucta-chevron"})])])],2),e._t("after-content")],2),n("BreakpointEmitter",{attrs:{scope:e.BreakpointScopes.nav},on:{change:e.onBreakpointChange}})],1)},r=[],a=n("72e7"),s=n("9b30"),o=n("a97e"),l=n("f2af"),c=n("942d"),u=n("63b8"),d=n("95da"),p=n("3908");const{noClose:h}=c["a"],{BreakpointName:m,BreakpointScopes:f}=o["a"].constants,g=8,b={isDark:"theme-dark",isOpen:"nav--is-open",inBreakpoint:"nav--in-breakpoint-range",isTransitioning:"nav--is-transitioning",isSticking:"nav--is-sticking",hasSolidBackground:"nav--solid-background",hasNoBorder:"nav--noborder",hasFullWidthBorder:"nav--fullwidth-border",isWideFormat:"nav--is-wide-format",noBackgroundTransition:"nav--no-bg-transition"};var v={name:"NavBase",components:{NavMenuItems:s["a"],BreakpointEmitter:o["a"]},constants:{NavStateClasses:b,NoBGTransitionFrames:g},props:{breakpoint:{type:String,default:m.small},hasOverlay:{type:Boolean,default:!0},hasSolidBackground:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},hasFullWidthBorder:{type:Boolean,default:!1},isDark:{type:Boolean,default:!1},isWideFormat:{type:Boolean,default:!1}},mixins:[a["a"]],data(){return{isOpen:!1,isTransitioning:!1,isSticking:!1,noBackgroundTransition:!0,currentBreakpoint:m.large}},computed:{BreakpointScopes:()=>f,inBreakpoint:({currentBreakpoint:e,breakpoint:t})=>!Object(u["d"])(e,t),rootClasses:({isOpen:e,inBreakpoint:t,isTransitioning:n,isSticking:i,hasSolidBackground:r,hasNoBorder:a,hasFullWidthBorder:s,isDark:o,isWideFormat:l,noBackgroundTransition:c})=>({[b.isDark]:o,[b.isOpen]:e,[b.inBreakpoint]:t,[b.isTransitioning]:n,[b.isSticking]:i,[b.hasSolidBackground]:r,[b.hasNoBorder]:a,[b.hasFullWidthBorder]:s,[b.isWideFormat]:l,[b.noBackgroundTransition]:c})},watch:{isOpen(e){this.$emit("change",e),e?this.onExpand():this.onClose()}},async mounted(){window.addEventListener("keydown",this.onEscape),window.addEventListener("popstate",this.closeNav),window.addEventListener("orientationchange",this.closeNav),document.addEventListener("click",this.handleClickOutside),this.handleFlashOnMount(),await this.$nextTick()},beforeDestroy(){window.removeEventListener("keydown",this.onEscape),window.removeEventListener("popstate",this.closeNav),window.removeEventListener("orientationchange",this.closeNav),document.removeEventListener("click",this.handleClickOutside),this.isOpen&&this.toggleScrollLock(!1)},methods:{getIntersectionTargets(){return[document.getElementById(c["e"])||this.$el]},toggleNav(){this.isOpen=!this.isOpen,this.isTransitioning=!0},closeNav(){const e=this.isOpen;return this.isOpen=!1,this.resolveOnceTransitionsEnd(e)},resolveOnceTransitionsEnd(e){return e&&this.inBreakpoint?(this.isTransitioning=!0,new Promise(e=>{const t=this.$watch("isTransitioning",()=>{e(),t()})})):Promise.resolve()},async onTransitionEnd({propertyName:e}){"max-height"===e&&(this.$emit("changed",this.isOpen),this.isTransitioning=!1,this.isOpen?(this.$emit("opened"),this.toggleScrollLock(!0)):this.$emit("closed"))},onBreakpointChange(e){this.currentBreakpoint=e,this.inBreakpoint||this.closeNav()},onIntersect({intersectionRatio:e}){window.scrollY<0||(this.isSticking=1!==e)},onEscape({key:e}){"Escape"===e&&this.isOpen&&(this.closeNav(),this.$refs.axToggle.focus())},handleTrayClick({target:e}){e.href&&!e.classList.contains(h)&&this.closeNav()},handleClickOutside({target:e}){this.$refs.nav.contains(e)||this.closeNav()},toggleScrollLock(e){e?l["a"].lockScroll(this.$refs.tray):l["a"].unlockScroll(this.$refs.tray)},onExpand(){this.$emit("open"),d["a"].hide(this.$refs.wrapper),document.activeElement===this.$refs.toggle&&document.activeElement.blur()},onClose(){this.$emit("close"),this.toggleScrollLock(!1),d["a"].show(this.$refs.wrapper)},async handleFlashOnMount(){await Object(p["b"])(g),this.noBackgroundTransition=!1}}},y=v,w=(n("83b9"),n("2877")),_=Object(w["a"])(y,i,r,!1,null,"0c761cd5",null);t["a"]=_.exports},d34b:function(e,t,n){},d915:function(e,t,n){"use strict";n("e944")},d9a3:function(e,t,n){"use strict";n("92fe")},dce7:function(e,t,n){},e3ab:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("aside",{class:e.kind,attrs:{"aria-label":e.kind}},[n("p",{staticClass:"label"},[e._v(e._s(e.label))]),e._t("default")],2)},r=[];const a={deprecated:"deprecated",experiment:"experiment",important:"important",note:"note",tip:"tip",warning:"warning"};var s={name:"Aside",props:{kind:{type:String,required:!0,validator:e=>Object.prototype.hasOwnProperty.call(a,e)},name:{type:String,required:!1}},computed:{label:({kind:e,name:t})=>t||{[a.deprecated]:"Deprecated",[a.experiment]:"Experiment",[a.important]:"Important",[a.note]:"Note",[a.tip]:"Tip",[a.warning]:"Warning"}[e]}},o=s,l=(n("d915"),n("2877")),c=Object(l["a"])(o,i,r,!1,null,"7696d857",null);t["a"]=c.exports},e67f:function(e,t,n){},e6db:function(e,t,n){"use strict";n("47cc")},e944:function(e,t,n){},ee9e:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"row",class:{"with-columns":e.columns},style:e.style},[e._t("default")],2)},r=[],a=n("63b8"),s={name:"Row",props:{columns:{type:Object,required:!1,validator:e=>Object.entries(e).every(([e,t])=>a["b"][e]&&"number"===typeof t)},gap:{type:Number,required:!1}},computed:{style:({columns:e={},gap:t})=>({"--col-count-large":e.large,"--col-count-medium":e.medium,"--col-count-small":e.small||1,"--col-gap":t&&t+"px"})}},o=s,l=(n("2bdf"),n("2877")),c=Object(l["a"])(o,i,r,!1,null,"7d2946e9",null);t["a"]=c.exports},f12c:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TopicTypeIcon"},[e.imageOverride?n("OverridableAsset",{staticClass:"icon-inline",style:e.styles,attrs:{imageOverride:e.imageOverride,shouldCalculateOptimalWidth:e.shouldCalculateOptimalWidth}}):n(e.icon,e._b({tag:"component",staticClass:"icon-inline",style:e.styles},"component",e.iconProps,!1))],1)},r=[],a=n("a295"),s=n("3024"),o=n("a9f1"),l=n("8d2d"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-func"}},[n("path",{attrs:{d:"M13 1v12h-12v-12zM12.077 1.923h-10.154v10.154h10.154z"}}),n("path",{attrs:{d:"M5.191 9.529c0.044 0.002 0.089 0.004 0.133 0.004 0.108 0 0.196-0.025 0.262-0.074s0.122-0.113 0.166-0.188c0.044-0.077 0.078-0.159 0.103-0.247s0.049-0.173 0.074-0.251l0.598-2.186h-0.709l0.207-0.702h0.702l0.288-1.086c0.083-0.384 0.256-0.667 0.517-0.849s0.591-0.273 0.99-0.273c0.108 0 0.212 0.007 0.314 0.022s0.203 0.027 0.306 0.037l-0.207 0.761c-0.054-0.006-0.106-0.011-0.155-0.018s-0.102-0.011-0.155-0.011c-0.108 0-0.196 0.016-0.262 0.048s-0.122 0.075-0.166 0.129-0.080 0.115-0.107 0.185c-0.028 0.068-0.055 0.14-0.085 0.214l-0.222 0.842h0.768l-0.192 0.702h-0.783l-0.628 2.319c-0.059 0.222-0.129 0.419-0.21 0.594s-0.182 0.322-0.303 0.443-0.269 0.214-0.443 0.281-0.385 0.1-0.631 0.1c-0.084 0-0.168-0.004-0.251-0.011s-0.168-0.014-0.251-0.018l0.207-0.768c0.040 0 0.081 0.001 0.126 0.004z"}})])},u=[],d=n("be08"),p={name:"TopicFuncIcon",components:{SVGIcon:d["a"]}},h=p,m=n("2877"),f=Object(m["a"])(h,c,u,!1,null,null,null),g=f.exports,b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"collection-icon",attrs:{viewBox:"0 0 14 14",themeId:"collection"}},[n("path",{attrs:{d:"m1 1v12h12v-12zm11 11h-10v-10h10z"}}),n("path",{attrs:{d:"m3 4h8v1h-8zm0 2.5h8v1h-8zm0 2.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 4h8v1h-8z"}}),n("path",{attrs:{d:"m3 6.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 9h8v1h-8z"}})])},v=[],y={name:"CollectionIcon",components:{SVGIcon:d["a"]}},w=y,_=Object(m["a"])(w,b,v,!1,null,null,null),x=_.exports,k=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-func-op"}},[n("path",{attrs:{d:"M13 13h-12v-12h12zM1.923 12.077h10.154v-10.154h-10.154z"}}),n("path",{attrs:{d:"M5.098 4.968v-1.477h-0.738v1.477h-1.477v0.738h1.477v1.477h0.738v-1.477h1.477v-0.738z"}}),n("path",{attrs:{d:"M8.030 4.807l-2.031 5.538h0.831l2.031-5.538z"}}),n("path",{attrs:{d:"M8.894 8.805v0.923h2.215v-0.923z"}})])},C=[],S={name:"TopicFuncOpIcon",components:{SVGIcon:d["a"]}},j=S,E=Object(m["a"])(j,k,C,!1,null,null,null),O=E.exports,I=n("3b96"),T=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-subscript"}},[n("path",{attrs:{d:"M13 13h-12v-12h12zM1.923 12.077h10.154v-10.154h-10.154z"}}),n("path",{attrs:{d:"M4.133 3.633v6.738h1.938v-0.831h-0.923v-5.077h0.923v-0.831z"}}),n("path",{attrs:{d:"M9.856 10.371v-6.738h-1.938v0.831h0.923v5.077h-0.923v0.831z"}})])},A=[],B={name:"TopicSubscriptIcon",components:{SVGIcon:d["a"]}},L=B,N=Object(m["a"])(L,T,A,!1,null,null,null),M=N.exports,$=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"two-letter-icon",attrs:{width:"16px",height:"16px",viewBox:"0 0 16 16",themeId:"two-letter"}},[n("g",{attrs:{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[n("g",{attrs:{transform:"translate(1.000000, 1.000000)"}},[n("rect",{attrs:{stroke:"currentColor",x:"0.5",y:"0.5",width:"13",height:"13"}}),n("text",{attrs:{"font-size":"8","font-weight":"bold",fill:"currentColor"}},[n("tspan",{attrs:{x:"8.2",y:"11"}},[e._v(e._s(e.second))])]),n("text",{attrs:{"font-size":"11","font-weight":"bold",fill:"currentColor"}},[n("tspan",{attrs:{x:"1.7",y:"11"}},[e._v(e._s(e.first))])])])])])},R=[],P={name:"TwoLetterSymbolIcon",components:{SVGIcon:d["a"]},props:{first:{type:String,required:!0},second:{type:String,required:!0}}},V=P,D=Object(m["a"])(V,$,R,!1,null,null,null),G=D.exports,z=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"single-letter-icon",attrs:{width:"16px",height:"16px",viewBox:"0 0 16 16",themeId:"single-letter"}},[n("g",{attrs:{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[n("rect",{attrs:{stroke:"currentColor",x:"1",y:"1",width:"14",height:"14"}}),n("text",{attrs:{"font-size":"11","font-weight":"bold",fill:"currentColor",x:"49%",y:"12","text-anchor":"middle"}},[n("tspan",[e._v(e._s(e.symbol))])])])])},q=[],U={name:"SingleLetterSymbolIcon",components:{SVGIcon:d["a"]},props:{symbol:{type:String,required:!0}}},W=U,H=Object(m["a"])(W,z,q,!1,null,null,null),F=H.exports,K=n("31d4"),Z=n("2cae"),Y=n("fdd9");const X={[K["b"].article]:o["a"],[K["b"].associatedtype]:x,[K["b"].buildSetting]:x,[K["b"].class]:F,[K["b"].collection]:x,[K["b"].dictionarySymbol]:F,[K["b"].container]:x,[K["b"].enum]:F,[K["b"].extension]:G,[K["b"].func]:g,[K["b"].op]:O,[K["b"].httpRequest]:F,[K["b"].languageGroup]:x,[K["b"].learn]:a["a"],[K["b"].method]:F,[K["b"].macro]:F,[K["b"].module]:s["a"],[K["b"].overview]:a["a"],[K["b"].protocol]:G,[K["b"].property]:F,[K["b"].propertyListKey]:F,[K["b"].resources]:a["a"],[K["b"].sampleCode]:I["a"],[K["b"].struct]:F,[K["b"].subscript]:M,[K["b"].symbol]:x,[K["b"].tutorial]:l["a"],[K["b"].typealias]:F,[K["b"].union]:F,[K["b"].var]:F},J={[K["b"].class]:{symbol:"C"},[K["b"].dictionarySymbol]:{symbol:"O"},[K["b"].enum]:{symbol:"E"},[K["b"].extension]:{first:"E",second:"x"},[K["b"].httpRequest]:{symbol:"E"},[K["b"].method]:{symbol:"M"},[K["b"].macro]:{symbol:"#"},[K["b"].protocol]:{first:"P",second:"r"},[K["b"].property]:{symbol:"P"},[K["b"].propertyListKey]:{symbol:"K"},[K["b"].struct]:{symbol:"S"},[K["b"].typealias]:{symbol:"T"},[K["b"].union]:{symbol:"U"},[K["b"].var]:{symbol:"V"}};var Q={name:"TopicTypeIcon",components:{OverridableAsset:Y["a"],SVGIcon:d["a"],SingleLetterSymbolIcon:F},constants:{TopicTypeIcons:X,TopicTypeProps:J},props:{type:{type:String,required:!0},withColors:{type:Boolean,default:!1},imageOverride:{type:Object,default:null},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},computed:{normalisedType:({type:e})=>K["a"][e]||e,icon:({normalisedType:e})=>X[e]||x,iconProps:({normalisedType:e})=>J[e]||{},color:({normalisedType:e})=>Z["b"][e],styles:({color:e,withColors:t})=>t&&e?{color:`var(--color-type-icon-${e})`}:{}}},ee=Q,te=(n("b37f"),Object(m["a"])(ee,i,r,!1,null,"c8b8711e",null));t["a"]=te.exports},f2af:function(e,t,n){"use strict";let i=!1,r=-1,a=0;const s=()=>window.navigator&&window.navigator.platform&&(/iP(ad|hone|od)/.test(window.navigator.platform)||"MacIntel"===window.navigator.platform&&window.navigator.maxTouchPoints>1);function o(e){e.touches.length>1||e.preventDefault()}const l=e=>!!e&&e.scrollHeight-e.scrollTop<=e.clientHeight;function c(){a=document.body.getBoundingClientRect().top,document.body.style.overflow="hidden scroll",document.body.style.top=a+"px",document.body.style.position="fixed",document.body.style.width="100%"}function u(e){e&&(e.ontouchstart=null,e.ontouchmove=null),document.removeEventListener("touchmove",o)}function d(e,t){const n=e.targetTouches[0].clientY-r;return 0===t.scrollTop&&n>0||l(t)&&n<0?o(e):(e.stopPropagation(),!0)}function p(e){document.addEventListener("touchmove",o,{passive:!1}),e&&(e.ontouchstart=e=>{1===e.targetTouches.length&&(r=e.targetTouches[0].clientY)},e.ontouchmove=t=>{1===t.targetTouches.length&&d(t,e)})}t["a"]={lockScroll(e){i||(s()?p(e):c(),i=!0)},unlockScroll(e){i&&(s()?u(e):(document.body.style.removeProperty("overflow"),document.body.style.removeProperty("top"),document.body.style.removeProperty("position"),document.body.style.removeProperty("width"),window.scrollTo(0,Math.abs(a))),i=!1)}}},f785:function(e,t,n){"use strict";n("690a")},f9e6:function(e,t,n){"use strict";n("661b")},fb8e:function(e,t,n){"use strict";n("6058")},fda2:function(e,t,n){},fdd9:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.shouldUseAsset?n("ImageAsset",e._b({},"ImageAsset",{variants:e.variants,loading:null,shouldCalculateOptimalWidth:e.shouldCalculateOptimalWidth},!1)):n("SVGIcon",{attrs:{"icon-url":e.iconUrl,themeId:e.themeId}})},r=[],a=n("8bd9"),s=n("be08"),o={name:"OverridableAsset",components:{SVGIcon:s["a"],ImageAsset:a["a"]},props:{imageOverride:{type:Object,default:null},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},computed:{variants:({imageOverride:e})=>e?e.variants:[],firstVariant:({variants:e})=>e[0],iconUrl:({firstVariant:e})=>e&&e.url,themeId:({firstVariant:e})=>e&&e.svgID,isSameOrigin:({iconUrl:e,sameOrigin:t})=>t(e),shouldUseAsset:({isSameOrigin:e,themeId:t})=>!e||!t},methods:{sameOrigin(e){if(!e)return!1;const t=new URL(e,window.location),n=new URL(window.location);return t.origin===n.origin}}},l=o,c=n("2877"),u=Object(c["a"])(l,i,r,!1,null,null,null);t["a"]=u.exports},fe08:function(e,t,n){"use strict";n("a7d8")}}]); \ No newline at end of file diff --git a/docs/js/documentation-topic~topic~tutorials-overview.90c61522.js b/docs/js/documentation-topic~topic~tutorials-overview.90c61522.js new file mode 100644 index 0000000..ab75cfe --- /dev/null +++ b/docs/js/documentation-topic~topic~tutorials-overview.90c61522.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["documentation-topic~topic~tutorials-overview"],{"007b":function(e,t,n){},"0444":function(e,t,n){},"05a1":function(e,t,n){},"0939":function(e,t,n){"use strict";n("9034")},"0caf":function(e,t,n){"use strict";t["a"]={inject:{performanceMetricsEnabled:{default:!1},isTargetIDE:{default:!1}},methods:{newContentMounted(){let e;this.performanceMetricsEnabled&&(e=Math.round(window.performance.now()),window.renderedTimes||(window.renderedTimes=[]),window.renderedTimes.push(e)),this.$bridge.send({type:"rendered",data:{time:e}})},handleContentUpdateFromBridge(e){this.topicData=e}}}},"0cb0":function(e,t,n){"use strict";const i=["input","select","textarea","button","optgroup","option","menuitem","fieldset","object","a[href]","*[tabindex]","*[contenteditable]"],a=i.join(",");t["a"]={getTabbableElements(e){const t=e.querySelectorAll(a),n=t.length;let i;const r=[];for(i=0;i=0},isFocusableElement(e){const t=e.nodeName.toLowerCase(),n=i.includes(t);return!("a"!==t||!e.getAttribute("href"))||(n?!e.disabled:"true"===e.getAttribute("contenteditable")||!Number.isNaN(parseFloat(e.getAttribute("tabindex"))))}}},"0cf0":function(e,t,n){},"0da1":function(e,t,n){"use strict";n("5c97")},"0eaa":function(e,t,n){},"0f00":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"row"},[e._t("default")],2)},a=[],r={name:"GridRow"},s=r,o=(n("2224"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"be73599c",null);t["a"]=c.exports},1020:function(e,t){var n={exports:{}};function i(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((function(t){var n=e[t];"object"!=typeof n||Object.isFrozen(n)||i(n)})),e}n.exports=i,n.exports.default=i;var a=n.exports;class r{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function s(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function o(e,...t){const n=Object.create(null);for(const i in e)n[i]=e[i];return t.forEach((function(e){for(const t in e)n[t]=e[t]})),n}const c="",l=e=>!!e.kind,u=(e,{prefix:t})=>{if(e.includes(".")){const n=e.split(".");return[`${t}${n.shift()}`,...n.map((e,t)=>`${e}${"_".repeat(t+1)}`)].join(" ")}return`${t}${e}`};class d{constructor(e,t){this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=s(e)}openNode(e){if(!l(e))return;let t=e.kind;t=e.sublanguage?"language-"+t:u(t,{prefix:this.classPrefix}),this.span(t)}closeNode(e){l(e)&&(this.buffer+=c)}value(){return this.buffer}span(e){this.buffer+=``}}class p{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){while(this.closeNode());}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return"string"===typeof t?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(t=>this._walk(e,t)),e.closeNode(t)),e}static _collapse(e){"string"!==typeof e&&e.children&&(e.children.every(e=>"string"===typeof e)?e.children=[e.children.join("")]:e.children.forEach(e=>{p._collapse(e)}))}}class h extends p{constructor(e){super(),this.options=e}addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){const e=new d(this,this.options);return e.value()}finalize(){return!0}}function m(e){return e?"string"===typeof e?e:e.source:null}function f(e){return v("(?=",e,")")}function g(e){return v("(?:",e,")*")}function b(e){return v("(?:",e,")?")}function v(...e){const t=e.map(e=>m(e)).join("");return t}function y(e){const t=e[e.length-1];return"object"===typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function w(...e){const t=y(e),n="("+(t.capture?"":"?:")+e.map(e=>m(e)).join("|")+")";return n}function _(e){return new RegExp(e.toString()+"|").exec("").length-1}function x(e,t){const n=e&&e.exec(t);return n&&0===n.index}const k=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function C(e,{joinWith:t}){let n=0;return e.map(e=>{n+=1;const t=n;let i=m(e),a="";while(i.length>0){const e=k.exec(i);if(!e){a+=i;break}a+=i.substring(0,e.index),i=i.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?a+="\\"+String(Number(e[1])+t):(a+=e[0],"("===e[0]&&n++)}return a}).map(e=>`(${e})`).join(t)}const S=/\b\B/,E="[a-zA-Z]\\w*",O="[a-zA-Z_]\\w*",I="\\b\\d+(\\.\\d+)?",j="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",T="\\b(0b[01]+)",A="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",L=(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=v(t,/.*\b/,e.binary,/\b.*/)),o({scope:"meta",begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},B={begin:"\\\\[\\s\\S]",relevance:0},$={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[B]},N={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[B]},M={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},P=function(e,t,n={}){const i=o({scope:"comment",begin:e,end:t,contains:[]},n);i.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const a=w("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return i.contains.push({begin:v(/[ ]+/,"(",a,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i},R=P("//","$"),V=P("/\\*","\\*/"),D=P("#","$"),G={scope:"number",begin:I,relevance:0},z={scope:"number",begin:j,relevance:0},q={scope:"number",begin:T,relevance:0},F={begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[B,{begin:/\[/,end:/\]/,relevance:0,contains:[B]}]}]},U={scope:"title",begin:E,relevance:0},W={scope:"title",begin:O,relevance:0},H={begin:"\\.\\s*"+O,relevance:0},K=function(e){return Object.assign(e,{"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})};var Z=Object.freeze({__proto__:null,MATCH_NOTHING_RE:S,IDENT_RE:E,UNDERSCORE_IDENT_RE:O,NUMBER_RE:I,C_NUMBER_RE:j,BINARY_NUMBER_RE:T,RE_STARTERS_RE:A,SHEBANG:L,BACKSLASH_ESCAPE:B,APOS_STRING_MODE:$,QUOTE_STRING_MODE:N,PHRASAL_WORDS_MODE:M,COMMENT:P,C_LINE_COMMENT_MODE:R,C_BLOCK_COMMENT_MODE:V,HASH_COMMENT_MODE:D,NUMBER_MODE:G,C_NUMBER_MODE:z,BINARY_NUMBER_MODE:q,REGEXP_MODE:F,TITLE_MODE:U,UNDERSCORE_TITLE_MODE:W,METHOD_GUARD:H,END_SAME_AS_BEGIN:K});function Y(e,t){const n=e.input[e.index-1];"."===n&&t.ignoreMatch()}function X(e,t){void 0!==e.className&&(e.scope=e.className,delete e.className)}function J(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=Y,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function Q(e,t){Array.isArray(e.illegal)&&(e.illegal=w(...e.illegal))}function ee(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function te(e,t){void 0===e.relevance&&(e.relevance=1)}const ne=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const n=Object.assign({},e);Object.keys(e).forEach(t=>{delete e[t]}),e.keywords=n.keywords,e.begin=v(n.beforeMatch,f(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},ie=["of","and","for","in","not","or","if","then","parent","list","value"],ae="keyword";function re(e,t,n=ae){const i=Object.create(null);return"string"===typeof e?a(n,e.split(" ")):Array.isArray(e)?a(n,e):Object.keys(e).forEach((function(n){Object.assign(i,re(e[n],t,n))})),i;function a(e,n){t&&(n=n.map(e=>e.toLowerCase())),n.forEach((function(t){const n=t.split("|");i[n[0]]=[e,se(n[0],n[1])]}))}}function se(e,t){return t?Number(t):oe(e)?0:1}function oe(e){return ie.includes(e.toLowerCase())}const ce={},le=e=>{console.error(e)},ue=(e,...t)=>{console.log("WARN: "+e,...t)},de=(e,t)=>{ce[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),ce[`${e}/${t}`]=!0)},pe=new Error;function he(e,t,{key:n}){let i=0;const a=e[n],r={},s={};for(let o=1;o<=t.length;o++)s[o+i]=a[o],r[o+i]=!0,i+=_(t[o-1]);e[n]=s,e[n]._emit=r,e[n]._multi=!0}function me(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw le("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),pe;if("object"!==typeof e.beginScope||null===e.beginScope)throw le("beginScope must be object"),pe;he(e,e.begin,{key:"beginScope"}),e.begin=C(e.begin,{joinWith:""})}}function fe(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw le("skip, excludeEnd, returnEnd not compatible with endScope: {}"),pe;if("object"!==typeof e.endScope||null===e.endScope)throw le("endScope must be object"),pe;he(e,e.end,{key:"endScope"}),e.end=C(e.end,{joinWith:""})}}function ge(e){e.scope&&"object"===typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,delete e.scope)}function be(e){ge(e),"string"===typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),"string"===typeof e.endScope&&(e.endScope={_wrap:e.endScope}),me(e),fe(e)}function ve(e){function t(t,n){return new RegExp(m(t),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(n?"g":""))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=_(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=t(C(e,{joinWith:"|"}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const n=t.findIndex((e,t)=>t>0&&void 0!==e),i=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,i)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n;return this.rules.slice(e).forEach(([e,n])=>t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n&&(this.regexIndex+=n.position+1,this.regexIndex===this.count&&this.considerAll()),n}}function a(e){const t=new i;return e.contains.forEach(e=>t.addRule(e.begin,{rule:e,type:"begin"})),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end"}),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t}function r(n,i){const s=n;if(n.isCompiled)return s;[X,ee,be,ne].forEach(e=>e(n,i)),e.compilerExtensions.forEach(e=>e(n,i)),n.__beforeBegin=null,[J,Q,te].forEach(e=>e(n,i)),n.isCompiled=!0;let o=null;return"object"===typeof n.keywords&&n.keywords.$pattern&&(n.keywords=Object.assign({},n.keywords),o=n.keywords.$pattern,delete n.keywords.$pattern),o=o||/\w+/,n.keywords&&(n.keywords=re(n.keywords,e.case_insensitive)),s.keywordPatternRe=t(o,!0),i&&(n.begin||(n.begin=/\B|\b/),s.beginRe=t(s.begin),n.end||n.endsWithParent||(n.end=/\B|\b/),n.end&&(s.endRe=t(s.end)),s.terminatorEnd=m(s.end)||"",n.endsWithParent&&i.terminatorEnd&&(s.terminatorEnd+=(n.end?"|":"")+i.terminatorEnd)),n.illegal&&(s.illegalRe=t(n.illegal)),n.contains||(n.contains=[]),n.contains=[].concat(...n.contains.map((function(e){return we("self"===e?n:e)}))),n.contains.forEach((function(e){r(e,s)})),n.starts&&r(n.starts,i),s.matcher=a(s),s}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=o(e.classNameAliases||{}),r(e)}function ye(e){return!!e&&(e.endsWithParent||ye(e.starts))}function we(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return o(e,{variants:null},t)}))),e.cachedVariants?e.cachedVariants:ye(e)?o(e,{starts:e.starts?o(e.starts):null}):Object.isFrozen(e)?o(e):e}var _e="11.3.1";class xe extends Error{constructor(e,t){super(e),this.name="HTMLInjectionError",this.html=t}}const ke=s,Ce=o,Se=Symbol("nomatch"),Ee=7,Oe=function(e){const t=Object.create(null),n=Object.create(null),i=[];let s=!0;const o="Could not find the language '{}', did you forget to load/include a language module?",c={disableAutodetect:!0,name:"Plain text",contains:[]};let l={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:h};function u(e){return l.noHighlightRe.test(e)}function d(e){let t=e.className+" ";t+=e.parentNode?e.parentNode.className:"";const n=l.languageDetectRe.exec(t);if(n){const t=$(n[1]);return t||(ue(o.replace("{}",n[1])),ue("Falling back to no-highlight mode for this block.",e)),t?n[1]:"no-highlight"}return t.split(/\s+/).find(e=>u(e)||$(e))}function p(e,t,n){let i="",a="";"object"===typeof t?(i=e,n=t.ignoreIllegals,a=t.language):(de("10.7.0","highlight(lang, code, ...args) has been deprecated."),de("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),a=e,i=t),void 0===n&&(n=!0);const r={code:i,language:a};V("before:highlight",r);const s=r.result?r.result:m(r.language,r.code,n);return s.code=r.code,V("after:highlight",s),s}function m(e,n,i,a){const c=Object.create(null);function u(e,t){return e.keywords[t]}function d(){if(!j.keywords)return void A.addText(L);let e=0;j.keywordPatternRe.lastIndex=0;let t=j.keywordPatternRe.exec(L),n="";while(t){n+=L.substring(e,t.index);const i=E.case_insensitive?t[0].toLowerCase():t[0],a=u(j,i);if(a){const[e,r]=a;if(A.addText(n),n="",c[i]=(c[i]||0)+1,c[i]<=Ee&&(B+=r),e.startsWith("_"))n+=t[0];else{const n=E.classNameAliases[e]||e;A.addKeyword(t[0],n)}}else n+=t[0];e=j.keywordPatternRe.lastIndex,t=j.keywordPatternRe.exec(L)}n+=L.substr(e),A.addText(n)}function p(){if(""===L)return;let e=null;if("string"===typeof j.subLanguage){if(!t[j.subLanguage])return void A.addText(L);e=m(j.subLanguage,L,!0,T[j.subLanguage]),T[j.subLanguage]=e._top}else e=_(L,j.subLanguage.length?j.subLanguage:null);j.relevance>0&&(B+=e.relevance),A.addSublanguage(e._emitter,e.language)}function h(){null!=j.subLanguage?p():d(),L=""}function f(e,t){let n=1;while(void 0!==t[n]){if(!e._emit[n]){n++;continue}const i=E.classNameAliases[e[n]]||e[n],a=t[n];i?A.addKeyword(a,i):(L=a,d(),L=""),n++}}function g(e,t){return e.scope&&"string"===typeof e.scope&&A.openNode(E.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(A.addKeyword(L,E.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),L=""):e.beginScope._multi&&(f(e.beginScope,t),L="")),j=Object.create(e,{parent:{value:j}}),j}function b(e,t,n){let i=x(e.endRe,n);if(i){if(e["on:end"]){const n=new r(e);e["on:end"](t,n),n.isMatchIgnored&&(i=!1)}if(i){while(e.endsParent&&e.parent)e=e.parent;return e}}if(e.endsWithParent)return b(e.parent,t,n)}function v(e){return 0===j.matcher.regexIndex?(L+=e[0],1):(P=!0,0)}function y(e){const t=e[0],n=e.rule,i=new r(n),a=[n.__beforeBegin,n["on:begin"]];for(const r of a)if(r&&(r(e,i),i.isMatchIgnored))return v(t);return n.skip?L+=t:(n.excludeBegin&&(L+=t),h(),n.returnBegin||n.excludeBegin||(L=t)),g(n,e),n.returnBegin?0:t.length}function w(e){const t=e[0],i=n.substr(e.index),a=b(j,e,i);if(!a)return Se;const r=j;j.endScope&&j.endScope._wrap?(h(),A.addKeyword(t,j.endScope._wrap)):j.endScope&&j.endScope._multi?(h(),f(j.endScope,e)):r.skip?L+=t:(r.returnEnd||r.excludeEnd||(L+=t),h(),r.excludeEnd&&(L=t));do{j.scope&&A.closeNode(),j.skip||j.subLanguage||(B+=j.relevance),j=j.parent}while(j!==a.parent);return a.starts&&g(a.starts,e),r.returnEnd?0:t.length}function k(){const e=[];for(let t=j;t!==E;t=t.parent)t.scope&&e.unshift(t.scope);e.forEach(e=>A.openNode(e))}let C={};function S(t,a){const r=a&&a[0];if(L+=t,null==r)return h(),0;if("begin"===C.type&&"end"===a.type&&C.index===a.index&&""===r){if(L+=n.slice(a.index,a.index+1),!s){const t=new Error(`0 width match regex (${e})`);throw t.languageName=e,t.badRule=C.rule,t}return 1}if(C=a,"begin"===a.type)return y(a);if("illegal"===a.type&&!i){const e=new Error('Illegal lexeme "'+r+'" for mode "'+(j.scope||"")+'"');throw e.mode=j,e}if("end"===a.type){const e=w(a);if(e!==Se)return e}if("illegal"===a.type&&""===r)return 1;if(M>1e5&&M>3*a.index){const e=new Error("potential infinite loop, way more iterations than matches");throw e}return L+=r,r.length}const E=$(e);if(!E)throw le(o.replace("{}",e)),new Error('Unknown language: "'+e+'"');const O=ve(E);let I="",j=a||O;const T={},A=new l.__emitter(l);k();let L="",B=0,N=0,M=0,P=!1;try{for(j.matcher.considerAll();;){M++,P?P=!1:j.matcher.considerAll(),j.matcher.lastIndex=N;const e=j.matcher.exec(n);if(!e)break;const t=n.substring(N,e.index),i=S(t,e);N=e.index+i}return S(n.substr(N)),A.closeAllNodes(),A.finalize(),I=A.toHTML(),{language:e,value:I,relevance:B,illegal:!1,_emitter:A,_top:j}}catch(R){if(R.message&&R.message.includes("Illegal"))return{language:e,value:ke(n),illegal:!0,relevance:0,_illegalBy:{message:R.message,index:N,context:n.slice(N-100,N+100),mode:R.mode,resultSoFar:I},_emitter:A};if(s)return{language:e,value:ke(n),illegal:!1,relevance:0,errorRaised:R,_emitter:A,_top:j};throw R}}function y(e){const t={value:ke(e),illegal:!1,relevance:0,_top:c,_emitter:new l.__emitter(l)};return t._emitter.addText(e),t}function _(e,n){n=n||l.languages||Object.keys(t);const i=y(e),a=n.filter($).filter(M).map(t=>m(t,e,!1));a.unshift(i);const r=a.sort((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if($(e.language).supersetOf===t.language)return 1;if($(t.language).supersetOf===e.language)return-1}return 0}),[s,o]=r,c=s;return c.secondBest=o,c}function k(e,t,i){const a=t&&n[t]||i;e.classList.add("hljs"),e.classList.add("language-"+a)}function C(e){let t=null;const n=d(e);if(u(n))return;if(V("before:highlightElement",{el:e,language:n}),e.children.length>0&&(l.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/issues/2886"),console.warn(e)),l.throwUnescapedHTML)){const t=new xe("One of your code blocks includes unescaped HTML.",e.innerHTML);throw t}t=e;const i=t.textContent,a=n?p(i,{language:n,ignoreIllegals:!0}):_(i);e.innerHTML=a.value,k(e,n,a.language),e.result={language:a.language,re:a.relevance,relevance:a.relevance},a.secondBest&&(e.secondBest={language:a.secondBest.language,relevance:a.secondBest.relevance}),V("after:highlightElement",{el:e,result:a,text:i})}function S(e){l=Ce(l,e)}const E=()=>{j(),de("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")};function O(){j(),de("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")}let I=!1;function j(){if("loading"===document.readyState)return void(I=!0);const e=document.querySelectorAll(l.cssSelector);e.forEach(C)}function T(){I&&j()}function A(n,i){let a=null;try{a=i(e)}catch(r){if(le("Language definition for '{}' could not be registered.".replace("{}",n)),!s)throw r;le(r),a=c}a.name||(a.name=n),t[n]=a,a.rawDefinition=i.bind(null,e),a.aliases&&N(a.aliases,{languageName:n})}function L(e){delete t[e];for(const t of Object.keys(n))n[t]===e&&delete n[t]}function B(){return Object.keys(t)}function $(e){return e=(e||"").toLowerCase(),t[e]||t[n[e]]}function N(e,{languageName:t}){"string"===typeof e&&(e=[e]),e.forEach(e=>{n[e.toLowerCase()]=t})}function M(e){const t=$(e);return t&&!t.disableAutodetect}function P(e){e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{e["before:highlightBlock"](Object.assign({block:t.el},t))}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{e["after:highlightBlock"](Object.assign({block:t.el},t))})}function R(e){P(e),i.push(e)}function V(e,t){const n=e;i.forEach((function(e){e[n]&&e[n](t)}))}function D(e){return de("10.7.0","highlightBlock will be removed entirely in v12.0"),de("10.7.0","Please use highlightElement now."),C(e)}"undefined"!==typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",T,!1),Object.assign(e,{highlight:p,highlightAuto:_,highlightAll:j,highlightElement:C,highlightBlock:D,configure:S,initHighlighting:E,initHighlightingOnLoad:O,registerLanguage:A,unregisterLanguage:L,listLanguages:B,getLanguage:$,registerAliases:N,autoDetection:M,inherit:Ce,addPlugin:R}),e.debugMode=function(){s=!1},e.safeMode=function(){s=!0},e.versionString=_e,e.regex={concat:v,lookahead:f,either:w,optional:b,anyNumberOfTimes:g};for(const r in Z)"object"===typeof Z[r]&&a(Z[r]);return Object.assign(e,Z),e};var Ie=Oe({});e.exports=Ie,Ie.HighlightJS=Ie,Ie.default=Ie},"12b1":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i={list:"list",compactGrid:"compactGrid",detailedGrid:"detailedGrid",hidden:"hidden"}},1417:function(e,t,n){var i={"./markdown":["84cb","highlight-js-custom-markdown"],"./markdown.js":["84cb","highlight-js-custom-markdown"],"./swift":["81c8","highlight-js-custom-swift"],"./swift.js":["81c8","highlight-js-custom-swift"]};function a(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],a=t[0];return n.e(t[1]).then((function(){return n(a)}))}a.keys=function(){return Object.keys(i)},a.id="1417",e.exports=a},"146e":function(e,t,n){"use strict";var i=n("e425"),a=n("dd18"),r=n("8a61");function s(e){return new Promise((t,n)=>{e.complete?t():(e.addEventListener("load",t,{once:!0}),e.addEventListener("error",n,{once:!0}))})}function o(){return Promise.allSettled([...document.getElementsByTagName("img")].map(s))}t["a"]={mixins:[r["a"]],mounted(){this.scrollToElementIfAnchorPresent()},updated(){this.scrollToElementIfAnchorPresent()},methods:{async scrollToElementIfAnchorPresent(){const{hash:e}=this.$route;if(!e)return;const{imageLoadingStrategy:t}=i["a"].state;i["a"].setImageLoadingStrategy(a["a"].eager),await this.$nextTick(),await o(),this.scrollToElement(e),i["a"].setImageLoadingStrategy(t)}}}},"159b":function(e,t,n){"use strict";n("2d6f")},"17a4":function(e,t,n){"use strict";n("bbe1")},"19cc":function(e,t,n){},"1f39":function(e,t,n){"use strict";n("007b")},2224:function(e,t,n){"use strict";n("b392")},"25a9":function(e,t,n){"use strict";n.d(t,"c",(function(){return d})),n.d(t,"e",(function(){return p})),n.d(t,"b",(function(){return h})),n.d(t,"a",(function(){return m})),n.d(t,"d",(function(){return f}));var i=n("748c"),a=n("d26a"),r=n("3bdd");class s extends Error{constructor({location:e,response:t}){super("Request redirected"),this.location=e,this.response=t}}class o extends Error{constructor(e){super("Unable to fetch data"),this.route=e}}async function c(e,t={},n={}){function i(e){return("ide"!==Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET||0!==e.status)&&!e.ok}const o=Object(a["c"])(e),c=Object(a["d"])(t);c&&(o.search=c);const l=await fetch(o.href,n);if(i(l))throw l;if(l.redirected)throw new s({location:l.url,response:l});const u=await l.json();return Object(r["c"])(u.schemaVersion),u}function l(e){const t=e.replace(/\/$/,"");return Object(i["c"])(["/data",t])+".json"}function u(e){const{pathname:t,search:n}=new URL(e),i=/\/data(\/.*).json$/,a=i.exec(t);return a?a[1]+n:t+n}async function d(e,t,n){const i=l(e.path);let a;try{a=await c(i,e.query)}catch(r){if("ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET)throw console.error(r),!1;if(r instanceof s)throw u(r.location);r.status&&404===r.status?n({name:"not-found",params:[e.path]}):n(new o(e))}return a}function p(e,t){return!Object(a["a"])(e,t)}async function h(e,t={}){const n=l(e);return c(n,{},t)}function m(e){return JSON.parse(JSON.stringify(e))}async function f({slug:e}){const t=Object(a["c"])(["/index/",e,"index.json"]);return c(t)}},"2cae":function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return s}));var i=n("31d4"),a=n("66cd");const r={blue:"blue",teal:"teal",orange:"orange",purple:"purple",green:"green",sky:"sky",pink:"pink"},s={[i["b"].article]:r.teal,[i["b"].init]:r.blue,[i["b"].case]:r.orange,[i["b"].class]:r.purple,[i["b"].collection]:r.pink,[a["a"].collectionGroup]:r.teal,[i["b"].dictionarySymbol]:r.purple,[i["b"].enum]:r.orange,[i["b"].extension]:r.orange,[i["b"].func]:r.green,[i["b"].op]:r.green,[i["b"].httpRequest]:r.green,[i["b"].module]:r.sky,[i["b"].method]:r.blue,[i["b"].macro]:r.pink,[i["b"].protocol]:r.purple,[i["b"].property]:r.teal,[i["b"].propertyListKey]:r.green,[i["b"].propertyListKeyReference]:r.green,[i["b"].sampleCode]:r.purple,[i["b"].struct]:r.purple,[i["b"].subscript]:r.blue,[i["b"].typealias]:r.orange,[i["b"].union]:r.purple,[i["b"].var]:r.purple}},"2d6f":function(e,t,n){},"2f34":function(e,t,n){"use strict";t["a"]={inject:{store:{default:()=>({state:{references:{}},setReferences(){},reset(){}})}},computed:{references:({store:e})=>e.state.references}}},3024:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"technology-icon",attrs:{viewBox:"0 0 14 14",themeId:"technology"}},[n("path",{attrs:{d:"M3.39,9l3.16,1.84.47.28.47-.28L10.61,9l.45.26,1.08.63L7,12.91l-5.16-3,1.08-.64L3.39,9M7,0,0,4.1,2.47,5.55,0,7,2.47,8.44,0,9.9,7,14l7-4.1L11.53,8.45,14,7,11.53,5.56,14,4.1ZM7,7.12,5.87,6.45l-1.54-.9L3.39,5,1.85,4.1,7,1.08l5.17,3L10.6,5l-.93.55-1.54.91ZM7,10,3.39,7.9,1.85,7,3.4,6.09,4.94,7,7,8.2,9.06,7,10.6,6.1,12.15,7l-1.55.9Z"}})])},a=[],r=n("be08"),s={name:"TechnologyIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},"308e":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"column",style:e.style},[e._t("default")],2)},a=[],r={name:"Column",props:{span:{type:Number,default:null}},computed:{style:({span:e})=>({"--col-span":e})}},s=r,o=(n("fe08"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"0f654188",null);t["a"]=c.exports},"31d4":function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return a}));const i={article:"article",associatedtype:"associatedtype",buildSetting:"buildSetting",case:"case",collection:"collection",class:"class",container:"container",dictionarySymbol:"dictionarySymbol",enum:"enum",extension:"extension",func:"func",groupMarker:"groupMarker",httpRequest:"httpRequest",init:"init",languageGroup:"languageGroup",learn:"learn",macro:"macro",method:"method",module:"module",op:"op",overview:"overview",project:"project",property:"property",propertyListKey:"propertyListKey",propertyListKeyReference:"propertyListKeyReference",protocol:"protocol",resources:"resources",root:"root",sampleCode:"sampleCode",section:"section",struct:"struct",subscript:"subscript",symbol:"symbol",tutorial:"tutorial",typealias:"typealias",union:"union",var:"var"},a={[i.init]:i.method,[i.case]:i.enum,[i.propertyListKeyReference]:i.propertyListKey,[i.project]:i.tutorial}},"3b75":function(e,t,n){},"3b96":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"curly-brackets-icon",attrs:{viewBox:"0 0 14 14",themeId:"curly-brackets"}},[n("path",{attrs:{d:"M9.987 14h-0.814v-0.916h0.36c0.137 0 0.253-0.038 0.349-0.116 0.099-0.080 0.179-0.188 0.239-0.318 0.064-0.134 0.11-0.298 0.139-0.483 0.031-0.186 0.045-0.38 0.045-0.58v-2.115c0-0.417 0.046-0.781 0.139-1.083 0.092-0.3 0.2-0.554 0.322-0.754 0.127-0.203 0.246-0.353 0.366-0.458 0.087-0.076 0.155-0.131 0.207-0.169-0.052-0.037-0.12-0.093-0.207-0.167-0.12-0.105-0.239-0.255-0.366-0.459-0.122-0.2-0.23-0.453-0.322-0.754-0.093-0.3-0.139-0.665-0.139-1.082v-2.13c0-0.199-0.014-0.392-0.045-0.572-0.029-0.182-0.076-0.345-0.139-0.483-0.060-0.137-0.141-0.246-0.239-0.328-0.095-0.076-0.212-0.115-0.349-0.115h-0.36v-0.916h0.814c0.442 0 0.788 0.18 1.030 0.538 0.238 0.352 0.358 0.826 0.358 1.407v2.236c0 0.3 0.015 0.597 0.044 0.886 0.030 0.287 0.086 0.544 0.164 0.765 0.077 0.216 0.184 0.392 0.318 0.522 0.129 0.124 0.298 0.188 0.503 0.188h0.058v0.916h-0.058c-0.206 0-0.374 0.064-0.503 0.188-0.134 0.129-0.242 0.305-0.318 0.521-0.078 0.223-0.134 0.48-0.164 0.766-0.029 0.288-0.044 0.587-0.044 0.884v2.236c0 0.582-0.12 1.055-0.358 1.409-0.242 0.358-0.588 0.538-1.030 0.538z"}}),n("path",{attrs:{d:"M4.827 14h-0.814c-0.442 0-0.788-0.18-1.030-0.538-0.238-0.352-0.358-0.825-0.358-1.409v-2.221c0-0.301-0.015-0.599-0.045-0.886-0.029-0.287-0.085-0.544-0.163-0.764-0.077-0.216-0.184-0.393-0.318-0.522-0.131-0.127-0.296-0.188-0.503-0.188h-0.058v-0.916h0.058c0.208 0 0.373-0.063 0.503-0.188 0.135-0.129 0.242-0.304 0.318-0.522 0.078-0.22 0.134-0.477 0.163-0.765 0.030-0.286 0.045-0.585 0.045-0.886v-2.251c0-0.582 0.12-1.055 0.358-1.407 0.242-0.358 0.588-0.538 1.030-0.538h0.814v0.916h-0.36c-0.138 0-0.252 0.038-0.349 0.116-0.099 0.079-0.179 0.189-0.239 0.327-0.064 0.139-0.11 0.302-0.141 0.483-0.029 0.18-0.044 0.373-0.044 0.572v2.13c0 0.417-0.046 0.782-0.138 1.082-0.092 0.302-0.201 0.556-0.324 0.754-0.123 0.201-0.246 0.356-0.366 0.459-0.086 0.074-0.153 0.13-0.206 0.167 0.052 0.038 0.12 0.093 0.206 0.169 0.12 0.103 0.243 0.258 0.366 0.458s0.232 0.453 0.324 0.754c0.092 0.302 0.138 0.666 0.138 1.083v2.115c0 0.2 0.015 0.394 0.044 0.58 0.030 0.186 0.077 0.349 0.139 0.482 0.062 0.132 0.142 0.239 0.241 0.32 0.096 0.079 0.21 0.116 0.349 0.116h0.36z"}})])},a=[],r=n("be08"),s={name:"CurlyBracketsIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},"3ba9":function(e,t,n){},"3bdd":function(e,t,n){"use strict";n.d(t,"a",(function(){return a})),n.d(t,"b",(function(){return s})),n.d(t,"c",(function(){return d}));const i={major:0,minor:3,patch:0};function a({major:e,minor:t,patch:n}){return[e,t,n].join(".")}function r(e){const[t=0,n=0,i=0]=e.split(".");return[Number(t),Number(n),Number(i)]}function s(e,t){const n=r(e),i=r(t);for(let a=0;ai[a])return 1;if(n[a]`[Swift-DocC-Render] The render node version for this page (${e}) has a different major version component than Swift-DocC-Render supports (${o}). Compatibility is not guaranteed.`;function u(e){const{major:t,minor:n}=e,{major:r,minor:s}=i;return t!==r?l(a(e)):n>s?c(a(e)):""}function d(e){if(!e)return;const t=u(e);t&&console.warn(t)}},"43fe":function(e,t,n){"use strict";n("4573")},4573:function(e,t,n){},"47cc":function(e,t,n){},"49e3":function(e,t,n){},"517a":function(e,t,n){"use strict";n("8222")},5201:function(e,t,n){"use strict";n("0cf0")},"52e4":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("WordBreak",{attrs:{tag:"code"}},[e._t("default")],2)},a=[],r=n("7b1f"),s={name:"CodeVoice",components:{WordBreak:r["a"]}},o=s,c=(n("8c92"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"05f4a5b7",null);t["a"]=l.exports},5416:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"device-frame",class:e.classes,style:e.styles,attrs:{"data-device":e.device}},[n("div",{staticClass:"device-screen",class:{"with-device":e.currentDeviceAttrs}},[e._t("default")],2),n("div",{staticClass:"device"})])},a=[],r={},s=n("6842");const o=e=>e&&e!==1/0,c=(e,t=4)=>o(e)?+`${Math.round(`${e}e+${t}`)}e-${t}`:null;var l={name:"DeviceFrame",props:{device:{type:String,required:!0}},provide:{insideDeviceFrame:!0},computed:{currentDeviceAttrs:({device:e})=>Object(s["c"])(["theme","device-frames",e],r[e]),styles:({toPixel:e,toUrl:t,toPct:n,currentDeviceAttrs:i={}})=>{const{screenTop:a,screenLeft:r,screenWidth:s,frameWidth:o,lightUrl:l,darkUrl:u,screenHeight:d,frameHeight:p}=i;return{"--screen-top":n(a/p),"--screen-left":n(r/o),"--screen-width":n(s/o),"--screen-height":n(d/p),"--screen-aspect":c(s/d)||null,"--frame-width":e(o),"--frame-aspect":c(o/p)||null,"--device-light-url":t(l),"--device-dark-url":t(u)}},classes:({currentDeviceAttrs:e})=>({"no-device":!e})},methods:{toPixel:e=>o(e)?e+"px":null,toUrl:e=>o(e)?`url(${e})`:null,toPct:e=>o(e)?c(100*e)+"%":null}},u=l,d=(n("b2da"),n("2877")),p=Object(d["a"])(u,i,a,!1,null,"28ae8fd3",null);t["a"]=p.exports},5677:function(e,t,n){"use strict";n.r(t),n.d(t,"BlockType",(function(){return Ct}));var i=n("2f34"),a=n("e3ab"),r=n("7b69"),s=n("5dcc"),o=n("52e4"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"DictionaryExample"},[e._t("default"),n("CollapsibleCodeListing",{attrs:{content:e.example.content,showLineNumbers:""}})],2)},l=[],u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"collapsible-code-listing",class:{"single-line":1===e.content[0].code.length}},[n("pre",[n("CodeBlock",e._l(this.content,(function(t,i){return n("div",{key:i,class:["container-general",{collapsible:!0===t.collapsible},{collapsed:!0===t.collapsible&&e.collapsed}]},e._l(t.code,(function(t,i){return n("div",{key:i,staticClass:"code-line-container"},[e._v("\n "),n("div",{directives:[{name:"show",rawName:"v-show",value:e.showLineNumbers,expression:"showLineNumbers"}],staticClass:"code-number"}),e._v("\n "),n("div",{staticClass:"code-line"},[e._v(e._s(t))]),e._v("\n ")])})),0)})),0)],1)])},d=[],p=n("800b"),h={name:"CollapsibleCodeListing",components:{CodeBlock:p["a"]},props:{collapsed:{type:Boolean,required:!1},content:{type:Array,required:!0},showLineNumbers:{type:Boolean,default:()=>!0}}},m=h,f=(n("efc1"),n("2877")),g=Object(f["a"])(m,u,d,!1,null,"25a17a0e",null),b=g.exports,v={name:"DictionaryExample",components:{CollapsibleCodeListing:b},props:{example:{type:Object,required:!0}}},y=v,w=Object(f["a"])(y,c,l,!1,null,null,null),_=w.exports,x=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",{staticClass:"endpoint-example"},[n("Column",{staticClass:"example-code"},[e._t("default"),n("Tabnav",{model:{value:e.currentTab,callback:function(t){e.currentTab=t},expression:"currentTab"}},[n("TabnavItem",{attrs:{value:e.Tab.request}},[e._v(e._s(e.$t("tab.request")))]),n("TabnavItem",{attrs:{value:e.Tab.response}},[e._v(e._s(e.$t("tab.response")))])],1),n("div",{staticClass:"output"},[e.isCurrent(e.Tab.request)?n("div",{staticClass:"code"},[n("CollapsibleCodeListing",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:""}},"CollapsibleCodeListing",e.request,!1))],1):e._e(),e.isCurrent(e.Tab.response)?n("div",{staticClass:"code"},[n("CollapsibleCodeListing",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:""}},"CollapsibleCodeListing",e.response,!1))],1):e._e()]),e.isCollapsible?n("div",{staticClass:"controls"},[e.isCollapsed?n("a",{staticClass:"toggle",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.showMore.apply(null,arguments)}}},[n("InlinePlusCircleSolidIcon",{staticClass:"control-icon icon-inline"}),e._v(" "+e._s(e.$t("more"))+" ")],1):n("a",{staticClass:"toggle",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.showLess.apply(null,arguments)}}},[n("InlineMinusCircleSolidIcon",{staticClass:"control-icon icon-inline"}),e._v(" "+e._s(e.$t("less"))+" ")],1)]):e._e()],2)],1)},k=[],C=n("0f00"),S=n("620a"),E=function(){var e,t=this,n=t.$createElement,i=t._self._c||n;return i("nav",{staticClass:"tabnav",class:(e={},e["tabnav--"+t.position]=t.position,e["tabnav--vertical"]=t.vertical,e)},[i("ul",{staticClass:"tabnav-items"},[t._t("default")],2)])},O=[];const I="tabnavData";var j={name:"Tabnav",constants:{ProvideKey:I},provide(){const e={selectTab:this.selectTab};return Object.defineProperty(e,"activeTab",{enumerable:!0,get:()=>this.value}),{[I]:e}},props:{position:{type:String,required:!1,validator:e=>new Set(["start","center","end"]).has(e)},vertical:{type:Boolean,default:!1},value:{type:[String,Number],required:!0}},methods:{selectTab(e){this.$emit("input",e)}}},T=j,A=(n("fb8e"),Object(f["a"])(T,E,O,!1,null,"5283512a",null)),L=A.exports,B=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"tabnav-item"},[n("a",{staticClass:"tabnav-link",class:{active:e.isActive},attrs:{href:"#","aria-current":e.isActive?"true":"false"},on:{click:function(t){return t.preventDefault(),e.tabnavData.selectTab(e.value)}}},[e._t("default")],2)])},$=[],N={name:"TabnavItem",inject:{tabnavData:{default:{activeTab:null,selectTab:()=>{}}}},props:{value:{type:[String,Number],default:null}},computed:{isActive({tabnavData:e,value:t}){return e.activeTab===t}}},M=N,P=(n("6869"),Object(f["a"])(M,B,$,!1,null,"6aa9882a",null)),R=P.exports,V=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-plus-circle-solid-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-plus-circle-solid"}},[n("path",{attrs:{d:"M7.005 0.5h-0.008c-1.791 0.004-3.412 0.729-4.589 1.9l0-0c-1.179 1.177-1.908 2.803-1.908 4.6 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.587-2.906-6.496-6.492-6.5h-0zM4.005 7.52v-1h2.5v-2.51h1v2.51h2.5v1h-2.501v2.49h-1v-2.49z"}})])},D=[],G=n("be08"),z={name:"InlinePlusCircleSolidIcon",components:{SVGIcon:G["a"]}},q=z,F=Object(f["a"])(q,V,D,!1,null,null,null),U=F.exports,W=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-minus-circle-solid-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-minus-circle-solid"}},[n("path",{attrs:{d:"m6.98999129.48999129c3.58985091 0 6.50000001 2.91014913 6.50000001 6.5 0 3.58985091-2.9101491 6.50000001-6.50000001 6.50000001-3.58985087 0-6.5-2.9101491-6.5-6.50000001 0-3.58985087 2.91014913-6.5 6.5-6.5zm3 6.02001742h-6v1h6z","fill-rule":"evenodd"}})])},H=[],K={name:"InlineMinusCircleSolidIcon",components:{SVGIcon:G["a"]}},Z=K,Y=Object(f["a"])(Z,W,H,!1,null,null,null),X=Y.exports;const J={request:"Request",response:"Response"};var Q={name:"EndpointExample",components:{InlineMinusCircleSolidIcon:X,InlinePlusCircleSolidIcon:U,TabnavItem:R,Tabnav:L,CollapsibleCodeListing:b,Row:C["a"],Column:S["a"]},constants:{Tab:J},props:{request:{type:Object,required:!0},response:{type:Object,required:!0}},data(){return{isCollapsed:!0,currentTab:J.request}},computed:{Tab:()=>J,isCollapsible:({response:e,request:t,currentTab:n})=>{const i={[J.request]:t.content,[J.response]:e.content}[n]||[];return i.some(({collapsible:e})=>e)}},methods:{isCurrent(e){return this.currentTab===e},showMore(){this.isCollapsed=!1},showLess(){this.isCollapsed=!0}}},ee=Q,te=(n("b0e7"),Object(f["a"])(ee,x,k,!1,null,"c84e62a6",null)),ne=te.exports,ie=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("figure",{attrs:{id:e.anchor}},[e._t("default")],2)},ae=[],re={name:"Figure",props:{anchor:{type:String,required:!1}}},se=re,oe=Object(f["a"])(se,ie,ae,!1,null,null,null),ce=oe.exports,le=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.tag,{tag:"component",staticClass:"caption",class:{trailing:e.trailing}},[e.title?[n("strong",[e._v(e._s(e.title))]),e._v(" "),e._t("default")]:[e._t("default")]],2)},ue=[];const de={caption:"caption",figcaption:"figcaption"},pe={leading:"leading",trailing:"trailing"};var he={name:"Caption",constants:{CaptionPosition:pe,CaptionTag:de},props:{title:{type:String,required:!1},tag:{type:String,required:!0,validator:e=>Object.hasOwnProperty.call(de,e)},position:{type:String,default:()=>pe.leading,validator:e=>Object.hasOwnProperty.call(pe,e)}},computed:{trailing:({position:e})=>e===pe.trailing}},me=he,fe=(n("6209"),Object(f["a"])(me,le,ue,!1,null,"1b76f4e0",null)),ge=fe.exports,be=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ImageAsset",{attrs:{alt:e.alt,variants:e.variants}})},ve=[],ye=n("8bd9"),we={name:"InlineImage",components:{ImageAsset:ye["a"]},props:{alt:{type:String,default:""},variants:{type:Array,required:!0}}},_e=we,xe=(n("cb92"),Object(f["a"])(_e,be,ve,!1,null,"3a939631",null)),ke=xe.exports,Ce=n("86d8"),Se=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"table-wrapper"},[n("table",{class:{spanned:e.spanned}},[e._t("default")],2)])},Ee=[],Oe={name:"Table",props:{spanned:{type:Boolean,default:!1}}},Ie=Oe,je=(n("ec71"),Object(f["a"])(Ie,Se,Ee,!1,null,"5ed73c89",null)),Te=je.exports,Ae=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("s",{attrs:{"data-before-text":e.$t("accessibility.strike.start"),"data-after-text":e.$t("accessibility.strike.end")}},[e._t("default")],2)},Le=[],Be={name:"StrikeThrough"},$e=Be,Ne=(n("d0da"),Object(f["a"])($e,Ae,Le,!1,null,"7fc51673",null)),Me=Ne.exports,Pe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("small",[e._t("default")],2)},Re=[],Ve={name:"Small"},De=Ve,Ge=(n("b0f5"),Object(f["a"])(De,Pe,Re,!1,null,"77035f61",null)),ze=Ge.exports,qe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Asset",{attrs:{identifier:e.identifier,"video-autoplays":!1,"video-muted":!1,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,deviceFrame:e.deviceFrame}})},Fe=[],Ue=n("80e4"),We=n("7689"),He={name:"BlockVideo",mixins:[We["a"]],components:{Asset:Ue["a"]},props:{identifier:{type:String,required:!0},deviceFrame:{type:String,required:!1}}},Ke=He,Ze=(n("fe1c"),Object(f["a"])(Ke,qe,Fe,!1,null,"035a093f",null)),Ye=Ze.exports,Xe=n("308e"),Je=n("ee9e"),Qe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TabNavigator",class:[{"tabs--vertical":e.vertical}]},[n("Tabnav",e._b({model:{value:e.currentTitle,callback:function(t){e.currentTitle=t},expression:"currentTitle"}},"Tabnav",{position:e.position,vertical:e.vertical},!1),e._l(e.titles,(function(t){return n("TabnavItem",{key:t,attrs:{value:t}},[e._v(" "+e._s(t)+" ")])})),1),n("div",{staticClass:"tabs-content"},[n("div",{staticClass:"tabs-content-container"},[n("transition-group",{attrs:{name:"fade"}},[e._l(e.titles,(function(t){return[n("div",{directives:[{name:"show",rawName:"v-show",value:t===e.currentTitle,expression:"title === currentTitle"}],key:t,staticClass:"tab-container",class:{active:t===e.currentTitle}},[e._t(t)],2)]}))],2)],1)])],1)},et=[],tt={name:"TabNavigator",components:{TabnavItem:R,Tabnav:L},props:{vertical:{type:Boolean,default:!1},position:{type:String,default:"start",validator:e=>new Set(["start","center","end"]).has(e)},titles:{type:Array,required:!0,default:()=>[]}},data(){return{currentTitle:this.titles[0]}},watch:{titles(e,t){if(e.length!t.includes(e));this.currentTitle=n||this.currentTitle}}}},nt=tt,it=(n("9ed5"),Object(f["a"])(nt,Qe,et,!1,null,"e671a734",null)),at=it.exports,rt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"tasklist"},e._l(e.tasks,(function(t,i){return n("li",{key:i},[e.showCheckbox(t)?n("input",{attrs:{type:"checkbox",disabled:""},domProps:{checked:t.checked}}):e._e(),e._t("task",null,{task:t})],2)})),0)},st=[];const ot="checked",ct=e=>Object.hasOwnProperty.call(e,ot);var lt={name:"TaskList",props:{tasks:{required:!0,type:Array,validator:e=>e.some(ct)}},methods:{showCheckbox:ct}},ut=lt,dt=(n("c3da"),Object(f["a"])(ut,rt,st,!1,null,"6a56a858",null)),pt=dt.exports,ht=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isListStyle?n("div",{staticClass:"links-block"},e._l(e.items,(function(e){return n("TopicsLinkBlock",{key:e.identifier,staticClass:"topic-link-block",attrs:{topic:e}})})),1):n("TopicsLinkCardGrid",{staticClass:"links-block",attrs:{items:e.items,"topic-style":e.blockStyle}})},mt=[],ft=n("70fb"),gt=n("12b1"),bt={name:"LinksBlock",mixins:[i["a"]],components:{TopicsLinkBlock:()=>n.e("chunk-c0335d80").then(n.bind(null,"2a18")),TopicsLinkCardGrid:ft["a"]},props:{identifiers:{type:Array,required:!0},blockStyle:{type:String,default:gt["a"].compactGrid}},computed:{isListStyle:({blockStyle:e})=>e===gt["a"].list,items:({identifiers:e,references:t})=>e.reduce((e,n)=>t[n]?e.concat(t[n]):e,[])}},vt=bt,yt=(n("6e71"),Object(f["a"])(vt,ht,mt,!1,null,"ce6f87f6",null)),wt=yt.exports,_t=n("5416");const{CaptionPosition:xt,CaptionTag:kt}=ge.constants,Ct={aside:"aside",codeListing:"codeListing",endpointExample:"endpointExample",heading:"heading",orderedList:"orderedList",paragraph:"paragraph",table:"table",termList:"termList",unorderedList:"unorderedList",dictionaryExample:"dictionaryExample",small:"small",video:"video",row:"row",tabNavigator:"tabNavigator",links:"links"},St={codeVoice:"codeVoice",emphasis:"emphasis",image:"image",inlineHead:"inlineHead",link:"link",newTerm:"newTerm",reference:"reference",strong:"strong",text:"text",superscript:"superscript",subscript:"subscript",strikethrough:"strikethrough"},Et={both:"both",column:"column",none:"none",row:"row"},Ot={left:"left",right:"right",center:"center",unset:"unset"},It=7;function jt(e,t){const n=n=>n.map(jt(e,t)),i=t=>t.map(t=>e("li",{},n(t.content))),c=(t,i,a,r,s,o,c)=>{const{colspan:l,rowspan:u}=o[`${s}_${r}`]||{};if(0===l||0===u)return null;const d=c[r]||Ot.unset;let p=null;return d!==Ot.unset&&(p=d+"-cell"),e(t,{attrs:{...i,colspan:l,rowspan:u},class:p},n(a))},l=(t,n=Et.none,i={},a=[])=>{switch(n){case Et.both:{const[n,...r]=t;return[e("thead",{},[e("tr",{},n.map((e,t)=>c("th",{scope:"col"},e,t,0,i,a)))]),e("tbody",{},r.map(([t,...n],r)=>e("tr",{},[c("th",{scope:"row"},t,0,r+1,i,a),...n.map((e,t)=>c("td",{},e,t+1,r+1,i,a))])))]}case Et.column:return[e("tbody",{},t.map(([t,...n],r)=>e("tr",{},[c("th",{scope:"row"},t,0,r,i,a),...n.map((e,t)=>c("td",{},e,t+1,r,i,a))])))];case Et.row:{const[n,...r]=t;return[e("thead",{},[e("tr",{},n.map((e,t)=>c("th",{scope:"col"},e,t,0,i,a)))]),e("tbody",{},r.map((t,n)=>e("tr",{},t.map((e,t)=>c("td",{},e,t,n+1,i,a)))))]}default:return[e("tbody",{},t.map((t,n)=>e("tr",{},t.map((e,t)=>c("td",{},e,t,n,i,a)))))]}},u=({metadata:{abstract:t=[],anchor:i,title:a,...r},...s})=>{const o={...s,metadata:r},c=[n([o])];if(a&&t.length||t.length){const i=a?xt.leading:xt.trailing,r=i===xt.trailing?1:0,s=kt.figcaption;c.splice(r,0,e(ge,{props:{title:a,position:i,tag:s}},n(t)))}return e(ce,{props:{anchor:i}},c)},d=({metadata:{deviceFrame:t},...i})=>e(_t["a"],{props:{device:t}},n([i]));return function(c){switch(c.type){case Ct.aside:{const t={kind:c.style,name:c.name};return e(a["a"],{props:t},n(c.content))}case Ct.codeListing:{if(c.metadata&&c.metadata.anchor)return u(c);const t={syntax:c.syntax,fileType:c.fileType,content:c.code,showLineNumbers:c.showLineNumbers};return e(r["a"],{props:t})}case Ct.endpointExample:{const t={request:c.request,response:c.response};return e(ne,{props:t},n(c.summary||[]))}case Ct.heading:{const t={anchor:c.anchor,level:c.level};return e(s["a"],{props:t},c.text)}case Ct.orderedList:return e("ol",{attrs:{start:c.start}},i(c.items));case Ct.paragraph:{const t=1===c.inlineContent.length&&c.inlineContent[0].type===St.image,i=t?{class:["inline-image-container"]}:{};return e("p",i,n(c.inlineContent))}case Ct.table:{const t=l(c.rows,c.header,c.extendedData,c.alignments);if(c.metadata&&c.metadata.abstract){const{title:i}=c.metadata,a=i?xt.leading:xt.trailing,r=kt.caption;t.unshift(e(ge,{props:{title:i,position:a,tag:r}},n(c.metadata.abstract)))}return e(Te,{attrs:{id:c.metadata&&c.metadata.anchor},props:{spanned:!!c.extendedData}},t)}case Ct.termList:return e("dl",{},c.items.map(({term:t,definition:i})=>[e("dt",{},n(t.inlineContent)),e("dd",{},n(i.content))]));case Ct.unorderedList:{const t=e=>pt.props.tasks.validator(e.items);return t(c)?e(pt,{props:{tasks:c.items},scopedSlots:{task:e=>n(e.task.content)}}):e("ul",{},i(c.items))}case Ct.dictionaryExample:{const t={example:c.example};return e(_,{props:t},n(c.summary||[]))}case Ct.small:return e("p",{},[e(ze,{},n(c.inlineContent))]);case Ct.video:{if(c.metadata&&c.metadata.abstract)return u(c);if(!t[c.identifier])return null;const{deviceFrame:n}=c.metadata||{};return e(Ye,{props:{identifier:c.identifier,deviceFrame:n}})}case Ct.row:{const t=c.numberOfColumns?{large:c.numberOfColumns}:void 0;return e(Je["a"],{props:{columns:t}},c.columns.map(t=>e(Xe["a"],{props:{span:t.size}},n(t.content))))}case Ct.tabNavigator:{const t=c.tabs.length>It,i=c.tabs.map(e=>e.title),a=c.tabs.reduce((e,t)=>({...e,[t.title]:()=>n(t.content)}),{});return e(at,{props:{titles:i,vertical:t},scopedSlots:a})}case Ct.links:return e(wt,{props:{blockStyle:c.style,identifiers:c.items}});case St.codeVoice:return e(o["a"],{},c.code);case St.emphasis:case St.newTerm:return e("em",n(c.inlineContent));case St.image:{if(c.metadata&&(c.metadata.anchor||c.metadata.abstract))return u(c);const n=t[c.identifier];return n?c.metadata&&c.metadata.deviceFrame?d(c):e(ke,{props:{alt:n.alt,variants:n.variants}}):null}case St.link:return e("a",{attrs:{href:c.destination}},c.title);case St.reference:{const i=t[c.identifier];if(!i)return null;const a=c.overridingTitleInlineContent||i.titleInlineContent,r=c.overridingTitle||i.title;return e(Ce["a"],{props:{url:i.url,kind:i.kind,role:i.role,isActive:c.isActive,ideTitle:i.ideTitle,titleStyle:i.titleStyle,hasInlineFormatting:!!a}},a?n(a):r)}case St.strong:case St.inlineHead:return e("strong",n(c.inlineContent));case St.text:return"\n"===c.text?e("br"):c.text;case St.superscript:return e("sup",n(c.inlineContent));case St.subscript:return e("sub",n(c.inlineContent));case St.strikethrough:return e(Me,n(c.inlineContent));default:return null}}}var Tt,At,Lt={name:"ContentNode",constants:{TableHeaderStyle:Et,TableColumnAlignments:Ot},mixins:[i["a"]],render:function(e){return e(this.tag,{class:"content"},this.content.map(jt(e,this.references),this))},props:{content:{type:Array,required:!0},tag:{type:String,default:()=>"div"}},methods:{map(e){function t(n=[]){return n.map(n=>{switch(n.type){case Ct.aside:return e({...n,content:t(n.content)});case Ct.dictionaryExample:return e({...n,summary:t(n.summary)});case Ct.paragraph:case St.emphasis:case St.strong:case St.inlineHead:case St.superscript:case St.subscript:case St.strikethrough:case St.newTerm:return e({...n,inlineContent:t(n.inlineContent)});case Ct.orderedList:case Ct.unorderedList:return e({...n,items:n.items.map(e=>({...e,content:t(e.content)}))});case Ct.table:return e({...n,rows:n.rows.map(e=>e.map(t))});case Ct.termList:return e({...n,items:n.items.map(e=>({...e,term:{inlineContent:t(e.term.inlineContent)},definition:{content:t(e.definition.content)}}))});default:return e(n)}})}return t(this.content)},forEach(e){function t(n=[]){n.forEach(n=>{switch(e(n),n.type){case Ct.aside:t(n.content);break;case Ct.paragraph:case St.emphasis:case St.strong:case St.inlineHead:case St.newTerm:case St.superscript:case St.subscript:case St.strikethrough:t(n.inlineContent);break;case Ct.orderedList:case Ct.unorderedList:n.items.forEach(e=>t(e.content));break;case Ct.dictionaryExample:t(n.summary);break;case Ct.table:n.rows.forEach(e=>{e.forEach(t)});break;case Ct.termList:n.items.forEach(e=>{t(e.term.inlineContent),t(e.definition.content)});break}})}return t(this.content)},reduce(e,t){let n=t;return this.forEach(t=>{n=e(n,t)}),n}},computed:{plaintext(){return this.reduce((e,t)=>t.type===Ct.paragraph?e+"\n":t.type===St.text?`${e}${t.text}`:e,"").trim()}},BlockType:Ct,InlineType:St},Bt=Lt,$t=Object(f["a"])(Bt,Tt,At,!1,null,null,null);t["default"]=$t.exports},"598a":function(e,t,n){},"5c97":function(e,t,n){},"5da3":function(e,t,n){e.exports=n.p+"img/no-image@2x.df2a0a50.png"},"5dcc":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("h"+e.level,{tag:"component",attrs:{id:e.anchor}},[e.shouldLink?n("router-link",{staticClass:"header-anchor",attrs:{to:{hash:"#"+e.anchor}},on:{click:function(t){return e.handleFocusAndScroll(e.anchor)}}},[e._t("default"),n("span",{staticClass:"visuallyhidden"},[e._v(e._s(e.$t("accessibility.in-page-link")))]),n("LinkIcon",{staticClass:"icon",attrs:{"aria-hidden":"true"}})],2):[e._t("default")]],2)},a=[],r=n("8a61"),s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"link-icon",attrs:{viewBox:"0 0 20 20"}},[n("path",{attrs:{d:"M19.34,4.88L15.12,.66c-.87-.87-2.3-.87-3.17,0l-3.55,3.56-1.38,1.38-1.4,1.4c-.47,.47-.68,1.09-.64,1.7,.02,.29,.09,.58,.21,.84,.11,.23,.24,.44,.43,.63l4.22,4.22h0l.53-.53,.53-.53h0l-4.22-4.22c-.29-.29-.29-.77,0-1.06l1.4-1.4,.91-.91,.58-.58,.55-.55,2.9-2.9c.29-.29,.77-.29,1.06,0l4.22,4.22c.29,.29,.29,.77,0,1.06l-2.9,2.9c.14,.24,.24,.49,.31,.75,.08,.32,.11,.64,.09,.96l3.55-3.55c.87-.87,.87-2.3,0-3.17Z"}}),n("path",{attrs:{d:"M14.41,9.82s0,0,0,0l-4.22-4.22h0l-.53,.53-.53,.53h0l4.22,4.22c.29,.29,.29,.77,0,1.06l-1.4,1.4-.91,.91-.58,.58-.55,.55h0l-2.9,2.9c-.29,.29-.77,.29-1.06,0L1.73,14.04c-.29-.29-.29-.77,0-1.06l2.9-2.9c-.14-.24-.24-.49-.31-.75-.08-.32-.11-.64-.09-.97L.68,11.93c-.87,.87-.87,2.3,0,3.17l4.22,4.22c.87,.87,2.3,.87,3.17,0l3.55-3.55,1.38-1.38,1.4-1.4c.47-.47,.68-1.09,.64-1.7-.02-.29-.09-.58-.21-.84-.11-.22-.24-.44-.43-.62Z"}})])},o=[],c=n("be08"),l={name:"LinkIcon",components:{SVGIcon:c["a"]}},u=l,d=n("2877"),p=Object(d["a"])(u,s,o,!1,null,null,null),h=p.exports,m={name:"LinkableHeading",mixins:[r["a"]],components:{LinkIcon:h},props:{anchor:{type:String,required:!1},level:{type:Number,default:()=>2,validator:e=>e>=1&&e<=6}},inject:{enableMinimized:{default:()=>!1},isTargetIDE:{default:()=>!1}},computed:{shouldLink:({anchor:e,enableMinimized:t,isTargetIDE:n})=>!!e&&!t&&!n}},f=m,g=(n("bbf6"),Object(d["a"])(f,i,a,!1,null,"6007a8a4",null));t["a"]=g.exports},6058:function(e,t,n){},6209:function(e,t,n){"use strict";n("0eaa")},"620a":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"col",class:e.classes},[e._t("default")],2)},a=[];const r=0,s=12,o=new Set(["large","medium","small"]),c=e=>({type:Object,default:()=>({}),validator:t=>Object.keys(t).every(n=>o.has(n)&&e(t[n]))}),l=c(e=>"boolean"===typeof e),u=c(e=>"number"===typeof e&&e>=r&&e<=s);var d={name:"GridColumn",props:{isCentered:l,isUnCentered:l,span:{...u,default:()=>({large:s})}},computed:{classes:function(){return{["large-"+this.span.large]:void 0!==this.span.large,["medium-"+this.span.medium]:void 0!==this.span.medium,["small-"+this.span.small]:void 0!==this.span.small,"large-centered":!!this.isCentered.large,"medium-centered":!!this.isCentered.medium,"small-centered":!!this.isCentered.small,"large-uncentered":!!this.isUnCentered.large,"medium-uncentered":!!this.isUnCentered.medium,"small-uncentered":!!this.isUnCentered.small}}}},p=d,h=(n("6e4a"),n("2877")),m=Object(h["a"])(p,i,a,!1,null,"2ee3ad8b",null);t["a"]=m.exports},"636c":function(e,t,n){},"63e6":function(e,t,n){},"64b5":function(e,t,n){},6667:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"diagonal-arrow",attrs:{viewBox:"0 0 14 14",themeId:"diagonal-arrow"}},[n("path",{attrs:{d:"M0.010 12.881l10.429-10.477-3.764 0.824-0.339-1.549 7.653-1.679-1.717 7.622-1.546-0.349 0.847-3.759-10.442 10.487z"}})])},a=[],r=n("be08"),s={name:"DiagonalArrowIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},"66cd":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i={article:"article",codeListing:"codeListing",collection:"collection",collectionGroup:"collectionGroup",containerSymbol:"containerSymbol",devLink:"devLink",dictionarySymbol:"dictionarySymbol",generic:"generic",link:"link",media:"media",pseudoCollection:"pseudoCollection",pseudoSymbol:"pseudoSymbol",restRequestSymbol:"restRequestSymbol",sampleCode:"sampleCode",symbol:"symbol",table:"table",learn:"learn",overview:"overview",project:"project",tutorial:"tutorial",resources:"resources"}},6869:function(e,t,n){"use strict";n("9649")},"6e4a":function(e,t,n){"use strict";n("05a1")},"6e71":function(e,t,n){"use strict";n("3ba9")},"70fb":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TopicsLinkCardGrid"},[n("Row",{attrs:{columns:{large:e.compactCards?3:2,medium:2}}},e._l(e.items,(function(t){return n("Column",{key:t.title},[n("TopicsLinkCardGridItem",{attrs:{item:t,compact:e.compactCards}})],1)})),1)],1)},a=[],r=n("ee9e"),s=n("308e"),o=n("12b1"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Card",{staticClass:"reference-card-grid-item",attrs:{url:e.item.url,image:e.imageReferences.card,title:e.item.title,"floating-style":"",size:e.cardSize,"link-text":e.compact?"":e.$t(e.linkText)},scopedSlots:e._u([e.imageReferences.card?null:{key:"cover",fn:function(t){var i=t.classes;return[n("div",{staticClass:"reference-card-grid-item__image",class:i},[n("TopicTypeIcon",{staticClass:"reference-card-grid-item__icon",attrs:{type:e.item.role,"image-override":e.references[e.imageReferences.icon]}})],1)]}}],null,!0)},[e.compact?e._e():n("ContentNode",{attrs:{content:e.item.abstract}})],1)},l=[],u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Reference",e._b({staticClass:"card",class:e.classes,attrs:{url:e.url}},"Reference",e.linkAriaTags,!1),[n("CardCover",{attrs:{variants:e.imageVariants,rounded:e.floatingStyle,alt:e.imageReference.alt,"aria-hidden":"true"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._t("cover",null,null,t)]}}],null,!0)}),n("div",{staticClass:"details",attrs:{"aria-hidden":"true"}},[e.eyebrow?n("div",{staticClass:"eyebrow",attrs:{id:e.eyebrowId,"aria-label":e.formatAriaLabel("- "+e.eyebrow)}},[e._v(" "+e._s(e.eyebrow)+" ")]):e._e(),n("div",{staticClass:"title",attrs:{id:e.titleId}},[e._v(" "+e._s(e.title)+" ")]),e.$slots.default?n("div",{staticClass:"card-content",attrs:{id:e.contentId}},[e._t("default")],2):e._e(),e.linkText?n(e.hasButton?"ButtonLink":"div",{tag:"component",staticClass:"link"},[e._v(" "+e._s(e.linkText)+" "),e.showExternalLinks?n("DiagonalArrowIcon",{staticClass:"icon-inline link-icon"}):e.hasButton?e._e():n("InlineChevronRightIcon",{staticClass:"icon-inline link-icon"})],1):e._e()],1)],1)},d=[],p=n("76ab"),h=n("34b0"),m=n("6667"),f=n("86d8"),g={small:"small",large:"large"},b=n("2f34"),v=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"card-cover-wrap",class:{rounded:e.rounded}},[e._t("default",(function(){return[n("ImageAsset",{staticClass:"card-cover",attrs:{variants:e.variants,alt:e.alt}})]}),{classes:"card-cover"})],2)},y=[],w=n("8bd9"),_={name:"CardCover",components:{ImageAsset:w["a"]},props:{variants:{type:Array,required:!0},rounded:{type:Boolean,default:!1},alt:{type:String,default:null}}},x=_,k=(n("850e"),n("2877")),C=Object(k["a"])(x,v,y,!1,null,"0c1c40a1",null),S=C.exports,E={name:"Card",components:{Reference:f["a"],DiagonalArrowIcon:m["a"],InlineChevronRightIcon:h["a"],CardCover:S,ButtonLink:p["a"]},constants:{CardSize:g},mixins:[b["a"]],computed:{titleId:({_uid:e})=>"card_title_"+e,contentId:({_uid:e})=>"card_content_"+e,eyebrowId:({_uid:e})=>"card_eyebrow_"+e,linkAriaTags:({titleId:e,eyebrowId:t,contentId:n,eyebrow:i,$slots:a})=>({"aria-labelledby":e.concat(i?" "+t:""),"aria-describedby":a.default?""+n:null}),classes:({size:e,floatingStyle:t})=>[e,{"floating-style":t}],imageReference:({image:e,references:t})=>t[e]||{},imageVariants:({imageReference:e})=>e.variants||[]},props:{linkText:{type:String,required:!1},url:{type:String,required:!1,default:""},eyebrow:{type:String,required:!1},image:{type:String,required:!1},size:{type:String,validator:e=>Object.prototype.hasOwnProperty.call(g,e)},title:{type:String,required:!0},hasButton:{type:Boolean,default:()=>!1},floatingStyle:{type:Boolean,default:!1},showExternalLinks:{type:Boolean,default:!1},formatAriaLabel:{type:Function,default:e=>e}}},O=E,I=(n("0939"),Object(k["a"])(O,u,d,!1,null,"328d568a",null)),j=I.exports,T=n("f12c"),A=n("66cd");const L={[A["a"].article]:"documentation.card.read-article",[A["a"].overview]:"documentation.card.start-tutorial",[A["a"].collection]:"documentation.card.view-api",[A["a"].symbol]:"documentation.card.view-symbol",[A["a"].sampleCode]:"documentation.card.view-sample-code"};var B={name:"TopicsLinkCardGridItem",components:{TopicTypeIcon:T["a"],Card:j,ContentNode:()=>Promise.resolve().then(n.bind(null,"5677"))},mixins:[b["a"]],props:{item:{type:Object,required:!0},compact:{type:Boolean,default:!0}},computed:{imageReferences:({item:e})=>(e.images||[]).reduce((e,t)=>(e[t.type]=t.identifier,e),{icon:null,card:null}),linkText:({item:e})=>L[e.role]||"documentation.card.learn-more",cardSize:({compact:e})=>e?void 0:g.large}},$=B,N=(n("8f26"),Object(k["a"])($,c,l,!1,null,"08a5e3f8",null)),M=N.exports,P={name:"TopicsLinkCardGrid",components:{TopicsLinkCardGridItem:M,Column:s["a"],Row:r["a"]},props:{items:{type:Array,required:!0},topicStyle:{type:String,default:o["a"].compactGrid,validator:e=>e===o["a"].compactGrid||e===o["a"].detailedGrid}},computed:{compactCards:({topicStyle:e})=>e===o["a"].compactGrid}},R=P,V=Object(k["a"])(R,i,a,!1,null,null,null);t["a"]=V.exports},"72e7":function(e,t,n){"use strict";const i={up:"up",down:"down"};t["a"]={constants:{IntersectionDirections:i},data(){return{intersectionObserver:null,intersectionPreviousScrollY:0,intersectionScrollDirection:i.down}},computed:{intersectionThreshold(){const e=[];for(let t=0;t<=1;t+=.01)e.push(t);return e},intersectionRoot(){return null},intersectionRootMargin(){return"0px 0px 0px 0px"},intersectionObserverOptions(){return{root:this.intersectionRoot,rootMargin:this.intersectionRootMargin,threshold:this.intersectionThreshold}}},async mounted(){await n.e("chunk-2d0d3105").then(n.t.bind(null,"5abe",7)),this.intersectionObserver=new IntersectionObserver(e=>{this.detectIntersectionScrollDirection();const t=this.onIntersect;t?e.forEach(t):console.warn("onIntersect not implemented")},this.intersectionObserverOptions),this.getIntersectionTargets().forEach(e=>{this.intersectionObserver.observe(e)})},beforeDestroy(){this.intersectionObserver&&this.intersectionObserver.disconnect()},methods:{getIntersectionTargets(){return[this.$el]},detectIntersectionScrollDirection(){window.scrollYthis.intersectionPreviousScrollY&&(this.intersectionScrollDirection=i.up),this.intersectionPreviousScrollY=window.scrollY}}}},"74ea":function(e,t,n){"use strict";n("636c")},7689:function(e,t,n){"use strict";t["a"]={computed:{isClientMobile(){let e=!1;return e="maxTouchPoints"in navigator||"msMaxTouchPoints"in navigator?Boolean(navigator.maxTouchPoints||navigator.msMaxTouchPoints):window.matchMedia?window.matchMedia("(pointer:coarse)").matches:"orientation"in window,e}}}},"76ab":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.resolvedComponent,e._b({tag:"component",staticClass:"button-cta",class:{"is-dark":e.isDark}},"component",e.componentProps,!1),[e._t("default")],2)},a=[],r=n("86d8"),s={name:"ButtonLink",components:{Reference:r["a"]},props:{url:{type:String,required:!1},isDark:{type:Boolean,default:!1}},computed:{resolvedComponent:({url:e})=>e?r["a"]:"button",componentProps:({url:e})=>e?{url:e}:{}}},o=s,c=(n("0da1"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"c9c81868",null);t["a"]=l.exports},"7b1f":function(e,t,n){"use strict";var i,a,r={functional:!0,name:"WordBreak",render(e,{props:t,slots:n,data:i}){const a=n().default||[],r=a.filter(e=>e.text&&!e.tag);if(0===r.length||r.length!==a.length)return e(t.tag,i,a);const s=r.map(({text:e})=>e).join(),o=[];let c=null,l=0;while(null!==(c=t.safeBoundaryPattern.exec(s))){const t=c.index+1;o.push(s.slice(l,t)),o.push(e("wbr",{key:c.index})),l=t}return o.push(s.slice(l,s.length)),e(t.tag,i,o)},props:{safeBoundaryPattern:{type:RegExp,default:()=>/([a-z](?=[A-Z])|(:)\w|\w(?=[._]\w))/g},tag:{type:String,default:()=>"span"}}},s=r,o=n("2877"),c=Object(o["a"])(s,i,a,!1,null,null,null);t["a"]=c.exports},"7b69":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"code-listing",class:{"single-line":1===e.syntaxHighlightedLines.length},attrs:{"data-syntax":e.syntaxNameNormalized}},[e.fileName?n("Filename",{attrs:{isActionable:e.isFileNameActionable,fileType:e.fileType},on:{click:function(t){return e.$emit("file-name-click")}}},[e._v(e._s(e.fileName)+" ")]):e._e(),n("div",{staticClass:"container-general"},[n("pre",[n("CodeBlock",[e._l(e.syntaxHighlightedLines,(function(t,i){return[n("span",{key:i,class:["code-line-container",{highlighted:e.isHighlighted(i)}]},[e.showLineNumbers?n("span",{staticClass:"code-number",attrs:{"data-line-number":e.lineNumberFor(i)}}):e._e(),n("span",{staticClass:"code-line",domProps:{innerHTML:e._s(t)}})]),e._v("\n")]}))],2)],1)])],1)},a=[],r=n("002d"),s=n("8649"),o=n("800b"),c=n("1020"),l=n.n(c);const u={objectivec:["objective-c"]},d={bash:["sh","zsh"],c:["h"],cpp:["cc","c++","h++","hpp","hh","hxx","cxx"],css:[],diff:["patch"],http:["https"],java:["jsp"],javascript:["js","jsx","mjs","cjs"],json:[],llvm:[],markdown:["md","mkdown","mkd"],objectivec:["mm","objc","obj-c"].concat(u.objectivec),perl:["pl","pm"],php:[],python:["py","gyp","ipython"],ruby:["rb","gemspec","podspec","thor","irb"],scss:[],shell:["console","shellsession"],swift:[],xml:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],...Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_HLJS_LANGUAGES?Object.fromEntries(Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_HLJS_LANGUAGES.split(",").map(e=>[e,[]])):void 0},p=new Set(["markdown","swift"]),h=Object.entries(d),m=new Set(Object.keys(d)),f=new Map;async function g(e){const t=[e];try{return await t.reduce(async(e,t)=>{let i;await e,i=p.has(t)?await n("1417")("./"+t):await n("b7b0")("./"+t),l.a.registerLanguage(t,i.default)},Promise.resolve()),!0}catch(i){return console.error(`Could not load ${e} file`),!1}}function b(e){if(m.has(e))return e;const t=h.find(([,t])=>t.includes(e));return t?t[0]:null}function v(e){if(f.has(e))return f.get(e);const t=b(e);return f.set(e,t),t}l.a.configure({classPrefix:"syntax-",languages:[...m]});const y=async e=>{const t=v(e);return!(!t||l.a.listLanguages().includes(t))&&g(t)},w=/\r\n|\r|\n/g,_=/syntax-/;function x(e){return 0===e.length?[]:e.split(w)}function k(e){return(e.trim().match(w)||[]).length}function C(e){const t=document.createElement("template");return t.innerHTML=e,t.content.childNodes}function S(e){const{className:t}=e;if(!_.test(t))return null;const n=x(e.innerHTML).reduce((e,n)=>`${e}${n}\n`,"");return C(n.trim())}function E(e){return Array.from(e.childNodes).forEach(e=>{if(k(e.textContent))try{const t=e.childNodes.length?E(e):S(e);t&&e.replaceWith(...t)}catch(t){console.error(t)}}),S(e)}function O(e,t){const n=b(t);if(!l.a.getLanguage(n))throw new Error("Unsupported language for syntax highlighting: "+t);return l.a.highlight(e,{language:n,ignoreIllegals:!0}).value}function I(e,t){const n=e.join("\n"),i=O(n,t),a=document.createElement("code");return a.innerHTML=i,E(a),x(a.innerHTML)}var j=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"filename"},[e.isActionable?n("a",{attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[n("FileIcon",{attrs:{fileType:e.fileType}}),e._t("default")],2):n("span",[n("FileIcon",{attrs:{fileType:e.fileType}}),e._t("default")],2)])},T=[],A=function(){var e=this,t=e.$createElement,n=e._self._c||t;return"swift"===e.fileType?n("SwiftFileIcon",{staticClass:"file-icon"}):n("GenericFileIcon",{staticClass:"file-icon"})},L=[],B=n("a88f"),$=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"generic-file-icon",attrs:{viewBox:"0 0 14 14",themeId:"generic-file"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},N=[],M=n("be08"),P={name:"GenericFileIcon",components:{SVGIcon:M["a"]}},R=P,V=n("2877"),D=Object(V["a"])(R,$,N,!1,null,null,null),G=D.exports,z={name:"CodeListingFileIcon",components:{SwiftFileIcon:B["a"],GenericFileIcon:G},props:{fileType:String}},q=z,F=(n("e6db"),Object(V["a"])(q,A,L,!1,null,"7c381064",null)),U=F.exports,W={name:"CodeListingFilename",components:{FileIcon:U},props:{isActionable:{type:Boolean,default:()=>!1},fileType:String}},H=W,K=(n("8608"),Object(V["a"])(H,j,T,!1,null,"c8c40662",null)),Z=K.exports,Y={name:"CodeListing",components:{Filename:Z,CodeBlock:o["a"]},data(){return{syntaxHighlightedLines:[]}},props:{fileName:String,isFileNameActionable:{type:Boolean,default:()=>!1},syntax:String,fileType:String,content:{type:Array,required:!0},startLineNumber:{type:Number,default:()=>1},highlights:{type:Array,default:()=>[]},showLineNumbers:{type:Boolean,default:()=>!1}},computed:{escapedContent:({content:e})=>e.map(r["c"]),highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},syntaxNameNormalized(){const e={occ:s["a"].objectiveC.key.url};return e[this.syntax]||this.syntax}},watch:{content:{handler:"syntaxHighlightLines",immediate:!0}},methods:{isHighlighted(e){return this.highlightedLineNumbers.has(this.lineNumberFor(e))},lineNumberFor(e){return this.startLineNumber+e},async syntaxHighlightLines(){let e;try{await y(this.syntaxNameNormalized),e=I(this.content,this.syntaxNameNormalized)}catch(t){e=this.escapedContent}this.syntaxHighlightedLines=e.map(e=>""===e?"\n":e)}}},X=Y,J=(n("7e3a"),Object(V["a"])(X,i,a,!1,null,"59f42f5b",null));t["a"]=J.exports},"7e3a":function(e,t,n){"use strict";n("f030")},"800b":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("code",{attrs:{tabindex:"0","data-before-code":e.$t("accessibility.code.start"),"data-after-code":e.$t("accessibility.code.end")}},[e._t("default")],2)},a=[],r={name:"CodeBlock"},s=r,o=(n("159b"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"08295b2f",null);t["a"]=c.exports},"80c8":function(e,t,n){},"80e4":function(e,t,n){"use strict";var i,a,r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"asset"},[n(e.assetComponent,e._g(e._b({tag:"component"},"component",e.assetProps,!1),e.assetListeners))],1)},s=[],o=n("8bd9"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ConditionalWrapper",{ref:"wrapper",attrs:{tag:e.DeviceFrameComponent,"should-wrap":!!e.deviceFrame,device:e.deviceFrame}},[n("video",{ref:"video",attrs:{controls:e.showsControls,autoplay:e.autoplays,poster:e.normalisedPosterPath,width:e.optimalWidth,playsinline:""},domProps:{muted:e.muted},on:{playing:function(t){return e.$emit("playing")},pause:function(t){return e.$emit("pause")},ended:function(t){return e.$emit("ended")}}},[n("source",{attrs:{src:e.normalizePath(e.videoAttributes.url)}})])])},l=[],u=n("748c"),d=n("e425"),p=n("821b"),h={functional:!0,name:"ConditionalWrapper",props:{tag:[Object,String],shouldWrap:Boolean},render(e,t){return t.props.shouldWrap?e(t.props.tag,t.data,t.children):t.children}},m=h,f=n("2877"),g=Object(f["a"])(m,i,a,!1,null,null,null),b=g.exports,v=n("5416"),y={name:"VideoAsset",components:{ConditionalWrapper:b},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},posterVariants:{type:Array,required:!1,default:()=>[]},muted:{type:Boolean,default:!0},deviceFrame:{type:String,required:!1}},data:()=>({appState:d["a"].state,optimalWidth:null}),computed:{DeviceFrameComponent:()=>v["a"],preferredColorScheme:({appState:e})=>e.preferredColorScheme,systemColorScheme:({appState:e})=>e.systemColorScheme,userPrefersDark:({preferredColorScheme:e,systemColorScheme:t})=>e===p["a"].dark||e===p["a"].auto&&t===p["a"].dark,shouldShowDarkVariant:({darkVideoVariantAttributes:e,userPrefersDark:t})=>e&&t,defaultVideoAttributes(){return this.videoVariantsGroupedByAppearance.light[0]||this.darkVideoVariantAttributes||{}},darkVideoVariantAttributes(){return this.videoVariantsGroupedByAppearance.dark[0]},videoVariantsGroupedByAppearance(){return Object(u["e"])(this.variants)},posterVariantsGroupedByAppearance(){const{light:e,dark:t}=Object(u["e"])(this.posterVariants);return{light:Object(u["a"])(e),dark:Object(u["a"])(t)}},defaultPosterAttributes:({posterVariantsGroupedByAppearance:e,userPrefersDark:t})=>t&&e.dark.length?e.dark[0]:e.light[0]||{},normalisedPosterPath:({defaultPosterAttributes:e})=>Object(u["c"])(e.src),videoAttributes:({darkVideoVariantAttributes:e,defaultVideoAttributes:t,shouldShowDarkVariant:n})=>n?e:t},watch:{normalisedPosterPath:{immediate:!0,handler:"getPosterDimensions"}},methods:{normalizePath:u["c"],async getPosterDimensions(e){if(!e)return void(this.optimalWidth=null);const{density:t}=this.defaultPosterAttributes,n=parseInt(t.match(/\d+/)[0],10),{width:i}=await Object(u["b"])(e);this.optimalWidth=i/n}}},w=y,_=Object(f["a"])(w,c,l,!1,null,null,null),x=_.exports,k=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"video-replay-container"},[n("VideoAsset",{ref:"asset",attrs:{variants:e.variants,autoplays:e.autoplays,showsControls:e.showsControls,muted:e.muted,posterVariants:e.posterVariants,deviceFrame:e.deviceFrame},on:{pause:e.onPause,playing:e.onVideoPlaying,ended:e.onVideoEnd}}),e.showsControls?e._e():n("a",{staticClass:"control-button",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.togglePlayStatus.apply(null,arguments)}}},[e._v(" "+e._s(e.text)+" "),e.videoEnded?n("InlineReplayIcon",{staticClass:"control-icon icon-inline"}):e.isPlaying?n("PauseIcon",{staticClass:"control-icon icon-inline"}):n("PlayIcon",{staticClass:"control-icon icon-inline"})],1)],1)},C=[],S=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-replay-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-replay"}},[n("path",{attrs:{d:"M2.254 10.201c-1.633-2.613-0.838-6.056 1.775-7.689 2.551-1.594 5.892-0.875 7.569 1.592l0.12 0.184-0.848 0.53c-1.34-2.145-4.166-2.797-6.311-1.457s-2.797 4.166-1.457 6.311 4.166 2.797 6.311 1.457c1.006-0.629 1.71-1.603 2.003-2.723l0.056-0.242 0.98 0.201c-0.305 1.487-1.197 2.792-2.51 3.612-2.613 1.633-6.056 0.838-7.689-1.775z"}}),n("path",{attrs:{d:"M10.76 1.355l0.984-0.18 0.851 4.651-4.56-1.196 0.254-0.967 3.040 0.796z"}})])},E=[],O=n("be08"),I={name:"InlineReplayIcon",components:{SVGIcon:O["a"]}},j=I,T=Object(f["a"])(j,S,E,!1,null,null,null),A=T.exports,L=n("c4dd"),B=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"pause-icon",attrs:{viewBox:"0 0 14 14",themeId:"pause"}},[n("path",{attrs:{d:"M5 4h1v6h-1z"}}),n("path",{attrs:{d:"M8 4h1v6h-1z"}}),n("path",{attrs:{d:"M7 0.5c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5-2.9-6.5-6.5-6.5zM7 12.5c-3 0-5.5-2.5-5.5-5.5s2.5-5.5 5.5-5.5 5.5 2.5 5.5 5.5-2.5 5.5-5.5 5.5z"}})])},$=[],N={name:"PauseIcon",components:{SVGIcon:O["a"]}},M=N,P=Object(f["a"])(M,B,$,!1,null,null,null),R=P.exports,V={name:"ReplayableVideoAsset",components:{PauseIcon:R,PlayIcon:L["a"],InlineReplayIcon:A,VideoAsset:x},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},muted:{type:Boolean,default:!0},posterVariants:{type:Array,default:()=>[]},deviceFrame:{type:String,required:!1}},computed:{text(){return this.videoEnded?this.$t("video.replay"):this.isPlaying?this.$t("video.pause"):this.$t("video.play")}},data(){return{isPlaying:!1,videoEnded:!1}},methods:{async togglePlayStatus(){const e=this.$refs.asset.$refs.video;e&&(this.isPlaying&&!this.videoEnded?await e.pause():await e.play())},onVideoEnd(){this.isPlaying=!1,this.videoEnded=!0},onVideoPlaying(){const{video:e}=this.$refs.asset.$refs;this.isPlaying=!e.paused,this.videoEnded=e.ended},onPause(){const{video:e}=this.$refs.asset.$refs;!this.showsControls&&this.isPlaying&&(this.isPlaying=!1),this.videoEnded=e.ended}}},D=V,G=(n("74ea"),Object(f["a"])(D,k,C,!1,null,"7653dfd0",null)),z=G.exports,q=n("2f34");const F={video:"video",image:"image"};var U={name:"Asset",components:{ImageAsset:o["a"],VideoAsset:x},constants:{AssetTypes:F},mixins:[q["a"]],props:{identifier:{type:String,required:!0},showsReplayButton:{type:Boolean,default:()=>!1},showsVideoControls:{type:Boolean,default:()=>!0},videoAutoplays:{type:Boolean,default:()=>!0},videoMuted:{type:Boolean,default:!0},deviceFrame:{type:String,required:!1}},computed:{rawAsset(){return this.references[this.identifier]||{}},isRawAssetVideo:({rawAsset:e})=>e.type===F.video,videoPoster(){return this.isRawAssetVideo&&this.references[this.rawAsset.poster]},asset(){return this.isRawAssetVideo&&this.prefersReducedMotion&&this.videoPoster||this.rawAsset},assetComponent(){switch(this.asset.type){case F.image:return o["a"];case F.video:return this.showsReplayButton?z:x;default:return}},prefersReducedMotion(){return window.matchMedia("(prefers-reduced-motion)").matches},assetProps(){return{[F.image]:this.imageProps,[F.video]:this.videoProps}[this.asset.type]},imageProps(){return{alt:this.asset.alt,variants:this.asset.variants}},videoProps(){return{variants:this.asset.variants,showsControls:this.showsVideoControls,muted:this.videoMuted,autoplays:!this.prefersReducedMotion&&this.videoAutoplays,posterVariants:this.videoPoster?this.videoPoster.variants:[],deviceFrame:this.deviceFrame}},assetListeners(){return{[F.image]:null,[F.video]:{ended:()=>this.$emit("videoEnded")}}[this.asset.type]}}},W=U,H=(n("5201"),Object(f["a"])(W,r,s,!1,null,"dcbc7b38",null));t["a"]=H.exports},"81c0":function(e,t,n){},8222:function(e,t,n){},"850e":function(e,t,n){"use strict";n("88d2")},8608:function(e,t,n){"use strict";n("a7f3")},"863d":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"nav-menu-item",class:{"nav-menu-item--animated":e.animate}},[e._t("default")],2)},a=[],r={name:"NavMenuItemBase",props:{animate:{type:Boolean,default:!0}}},s=r,o=(n("43fe"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"66cbfe4c",null);t["a"]=c.exports},8649:function(e,t,n){"use strict";t["a"]={objectiveC:{name:"Objective-C",key:{api:"occ",url:"objc"}},swift:{name:"Swift",key:{api:"swift",url:"swift"}}}},"86d8":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.refComponent,{tag:"component",attrs:{url:e.urlWithParams,"is-active":e.isActiveComputed}},[e._t("default")],2)},a=[],r=n("d26a"),s=n("66cd"),o=n("9895"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n("a",{attrs:{href:e.url}},[e._t("default")],2):n("span",[e._t("default")],2)},l=[],u={name:"ReferenceExternal",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},d=u,p=n("2877"),h=Object(p["a"])(d,c,l,!1,null,null,null),m=h.exports,f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ReferenceInternal",e._b({},"ReferenceInternal",e.$props,!1),[n("CodeVoice",[e._t("default")],2)],1)},g=[],b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n("router-link",{attrs:{to:e.url}},[e._t("default")],2):n("span",[e._t("default")],2)},v=[],y={name:"ReferenceInternal",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},w=y,_=Object(p["a"])(w,b,v,!1,null,null,null),x=_.exports,k=n("52e4"),C={name:"ReferenceInternalSymbol",props:x.props,components:{ReferenceInternal:x,CodeVoice:k["a"]}},S=C,E=Object(p["a"])(S,f,g,!1,null,null,null),O=E.exports,I={name:"Reference",computed:{isInternal({url:e}){if(!e.startsWith("/")&&!e.startsWith("#"))return!1;const{resolved:{name:t}={}}=this.$router.resolve(e)||{};return t!==o["b"]},isSymbolReference(){return"symbol"===this.kind&&!this.hasInlineFormatting&&(this.role===s["a"].symbol||this.role===s["a"].dictionarySymbol)},isDisplaySymbol({isSymbolReference:e,titleStyle:t,ideTitle:n}){return n?e&&"symbol"===t:e},refComponent(){return this.isInternal?this.isDisplaySymbol?O:x:m},urlWithParams({isInternal:e}){return e?Object(r["b"])(this.url,this.$route.query):this.url},isActiveComputed({url:e,isActive:t}){return!(!e||!t)}},props:{url:{type:String,required:!0},kind:{type:String,required:!1},role:{type:String,required:!1},isActive:{type:Boolean,required:!1,default:!0},ideTitle:{type:String,required:!1},titleStyle:{type:String,required:!1},hasInlineFormatting:{type:Boolean,default:!1}}},j=I,T=Object(p["a"])(j,i,a,!1,null,null,null);t["a"]=T.exports},"88d2":function(e,t,n){},"8a61":function(e,t,n){"use strict";var i=n("3908");t["a"]={methods:{async scrollToElement(e){await Object(i["b"])(8);const t=this.$router.resolve({hash:e}),{selector:n,offset:a}=await this.$router.options.scrollBehavior(t.route),r=document.querySelector(n);return r?(r.scrollIntoView(),window.scrollY+window.innerHeight`${Object(r["c"])(e.src)} ${e.density}`).join(", "),n=e[0],i={srcSet:t,src:Object(r["c"])(n.src)},{width:a}=n.size||{width:null};return a&&(i.width=a,i.height="auto"),i}var h={name:"ImageAsset",mixins:[s],inject:{imageLoadingStrategy:{default:null}},data:()=>({appState:o["a"].state,fallbackImageSrcSet:null,optimalWidth:null}),computed:{allVariants:({lightVariants:e=[],darkVariants:t=[]})=>e.concat(t),defaultAttributes:({lightVariantAttributes:e,darkVariantAttributes:t})=>e||t,darkVariantAttributes:({darkVariants:e})=>p(e),lightVariantAttributes:({lightVariants:e})=>p(e),loading:({appState:e,imageLoadingStrategy:t})=>t||e.imageLoadingStrategy,preferredColorScheme:({appState:e})=>e.preferredColorScheme,prefersAuto:({preferredColorScheme:e})=>e===c["a"].auto,prefersDark:({preferredColorScheme:e})=>e===c["a"].dark},props:{alt:{type:String,default:""},variants:{type:Array,required:!0},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},methods:{handleImageLoadError(){this.fallbackImageSrcSet=u.a+" 2x"},async calculateOptimalWidth(){const{$refs:{img:{currentSrc:e}},allVariants:t}=this,{density:n}=t.find(({src:t})=>e.endsWith(t)),i=parseInt(n.match(/\d+/)[0],d),a=await Object(r["b"])(e),s=a.width/i;return s},async optimizeImageSize(){if(!this.defaultAttributes.width&&this.$refs.img)try{this.optimalWidth=await this.calculateOptimalWidth()}catch{console.error("Unable to calculate optimal image width")}}},mounted(){this.shouldCalculateOptimalWidth&&this.$refs.img.addEventListener("load",this.optimizeImageSize)}},m=h,f=n("2877"),g=Object(f["a"])(m,i,a,!1,null,null,null);t["a"]=g.exports},"8c92":function(e,t,n){"use strict";n("80c8")},"8d2d":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"tutorial-icon",attrs:{viewBox:"0 0 14 14",themeId:"tutorial"}},[n("path",{attrs:{d:"M0.933 6.067h3.733v1.867h-3.733v-1.867z"}}),n("path",{attrs:{d:"M0.933 1.867h3.733v1.867h-3.733v-1.867z"}}),n("path",{attrs:{d:"M13.067 1.867v10.267h-7.467v-10.267zM12.133 2.8h-5.6v8.4h5.6z"}}),n("path",{attrs:{d:"M0.933 10.267h3.733v1.867h-3.733v-1.867z"}})])},a=[],r=n("be08"),s={name:"TutorialIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},"8d90":function(e,t,n){},"8f26":function(e,t,n){"use strict";n("0444")},9034:function(e,t,n){},"95da":function(e,t,n){"use strict";var i=n("0cb0");const a="data-original-",r="aria-hidden",s="tabindex";function o(e,t){const n=a+t;if(e.getAttribute(n))return;const i=e.getAttribute(t)||"";e.setAttribute(n,i)}function c(e,t){const n=a+t;if(!e.hasAttribute(n))return;const i=e.getAttribute(n);e.removeAttribute(n),i.length?e.setAttribute(t,i):e.removeAttribute(t)}function l(e,t){const n=document.body;let i=e,a=e;while(i=i.previousElementSibling)t(i);while(a=a.nextElementSibling)t(a);e.parentElement&&e.parentElement!==n&&l(e.parentElement,t)}const u=e=>{o(e,r),o(e,s),e.setAttribute(r,"true"),e.setAttribute(s,"-1");const t=i["a"].getTabbableElements(e);let n=t.length-1;while(n>=0)o(t[n],s),t[n].setAttribute(s,"-1"),n-=1},d=e=>{c(e,r),c(e,s);const t=e.querySelectorAll(`[${a+s}]`);let n=t.length-1;while(n>=0)c(t[n],s),n-=1};t["a"]={hide(e){l(e,u)},show(e){l(e,d)}}},9649:function(e,t,n){},"9a61":function(e,t,n){"use strict";n("19cc")},"9b30":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"nav-menu-items",attrs:{"data-previous-menu-children-count":e.previousSiblingChildren}},[e._t("default")],2)},a=[],r={name:"NavMenuItems",props:{previousSiblingChildren:{type:Number,default:0}}},s=r,o=(n("517a"),n("2877")),c=Object(o["a"])(s,i,a,!1,null,"67c1c0a5",null);t["a"]=c.exports},"9ed5":function(e,t,n){"use strict";n("a5f5")},a295:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",themeId:"path"}},[n("path",{attrs:{d:"M0 0.948h2.8v2.8h-2.8z"}}),n("path",{attrs:{d:"M11.2 10.252h2.8v2.8h-2.8z"}}),n("path",{attrs:{d:"M6.533 1.852h0.933v10.267h-0.933z"}}),n("path",{attrs:{d:"M2.8 1.852h4.667v0.933h-4.667z"}}),n("path",{attrs:{d:"M6.533 11.186h4.667v0.933h-4.667z"}})])},a=[],r=n("be08"),s={name:"PathIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},a4f0:function(e,t,n){},a5f5:function(e,t,n){},a7a5:function(e,t,n){},a7d8:function(e,t,n){},a7f3:function(e,t,n){},a88f:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"swift-file-icon",attrs:{viewBox:"0 0 15 14",themeId:"swift-file"}},[n("path",{attrs:{d:"M14.93,13.56A2.15,2.15,0,0,0,15,13a5.37,5.37,0,0,0-1.27-3.24A6.08,6.08,0,0,0,14,7.91,9.32,9.32,0,0,0,9.21.31a8.51,8.51,0,0,1,1.78,5,6.4,6.4,0,0,1-.41,2.18A45.06,45.06,0,0,1,3.25,1.54,44.57,44.57,0,0,0,7.54,6.9,45.32,45.32,0,0,1,1.47,2.32,35.69,35.69,0,0,0,8.56,9.94a6.06,6.06,0,0,1-3.26.85A9.48,9.48,0,0,1,0,8.91a10,10,0,0,0,8.1,4.72c2.55,0,3.25-1.2,4.72-1.2a2.09,2.09,0,0,1,1.91,1.15C14.79,13.69,14.88,13.75,14.93,13.56Z"}})])},a=[],r=n("be08"),s={name:"SwiftFileIcon",components:{SVGIcon:r["a"]}},o=s,c=(n("c3e5"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"c01a6890",null);t["a"]=l.exports},a97e:function(e,t,n){"use strict";var i=n("63b8");const a=e=>e?`(max-width: ${e}px)`:"",r=e=>e?`(min-width: ${e}px)`:"";function s({minWidth:e,maxWidth:t}){return["only screen",r(e),a(t)].filter(Boolean).join(" and ")}function o({maxWidth:e,minWidth:t}){return window.matchMedia(s({minWidth:t,maxWidth:e}))}var c,l,u={name:"BreakpointEmitter",constants:{BreakpointAttributes:i["a"],BreakpointName:i["b"],BreakpointScopes:i["c"]},props:{scope:{type:String,default:()=>i["c"].default,validator:e=>e in i["c"]}},render(){return this.$scopedSlots.default?this.$scopedSlots.default({matchingBreakpoint:this.matchingBreakpoint}):null},data:()=>({matchingBreakpoint:null}),methods:{initMediaQuery(e,t){const n=o(t),i=t=>this.handleMediaQueryChange(t,e);n.addListener(i),this.$once("hook:beforeDestroy",()=>{n.removeListener(i)}),i(n)},handleMediaQueryChange(e,t){e.matches&&(this.matchingBreakpoint=t,this.$emit("change",t))}},mounted(){const e=i["a"][this.scope]||{};Object.entries(e).forEach(([e,t])=>{this.initMediaQuery(e,t)})}},d=u,p=n("2877"),h=Object(p["a"])(d,c,l,!1,null,null,null);t["a"]=h.exports},a9f1:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"article-icon",attrs:{viewBox:"0 0 14 14",themeId:"article"}},[n("path",{attrs:{d:"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z"}}),n("path",{attrs:{d:"M7 1h1v4h-1z"}}),n("path",{attrs:{d:"M7 5h5v1h-5z"}})])},a=[],r=n("be08"),s={name:"ArticleIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},aea0:function(e,t,n){},b0e7:function(e,t,n){"use strict";n("8d90")},b0f5:function(e,t,n){"use strict";n("49e3")},b2da:function(e,t,n){"use strict";n("e529")},b392:function(e,t,n){},b7b0:function(e,t,n){var i={"./bash":["f0f8","highlight-js-bash"],"./c":["1fe5","highlight-js-c"],"./cpp":["0209","highlight-js-cpp"],"./css":["ee8c","highlight-js-css"],"./diff":["48b8","highlight-js-diff"],"./http":["c01d","highlight-js-http"],"./java":["332f","highlight-js-java"],"./javascript":["4dd1","highlight-js-javascript"],"./json":["5ad2","highlight-js-json"],"./llvm":["7c30","highlight-js-llvm"],"./markdown":["04b0","highlight-js-markdown"],"./objectivec":["9bf2","highlight-js-objectivec"],"./perl":["6a51","highlight-js-perl"],"./php":["2907","highlight-js-php"],"./python":["9510","highlight-js-python"],"./ruby":["82cb","highlight-js-ruby"],"./scss":["6113","highlight-js-scss"],"./shell":["b65b","highlight-js-shell"],"./swift":["2a39","highlight-js-swift"],"./xml":["8dcb","highlight-js-xml"]};function a(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],a=t[0];return n.e(t[1]).then((function(){return n.t(a,7)}))}a.keys=function(){return Object.keys(i)},a.id="b7b0",e.exports=a},b8f2:function(e,t,n){"use strict";n("a7a5")},bbe1:function(e,t,n){},bbf6:function(e,t,n){"use strict";n("63e6")},bf08:function(e,t,n){"use strict";var i=n("2788"),a=n("002d"),r=n("d26a"),s=n("5677");t["a"]={methods:{extractFirstParagraphText(e=[]){const t=s["default"].computed.plaintext.bind({...s["default"].methods,content:e})();return Object(a["e"])(t)}},computed:{pagePath:({$route:{path:e="/"}={}})=>e,pageURL:({pagePath:e="/"})=>Object(r["e"])(e),disableMetadata:()=>!1},mounted(){this.disableMetadata||Object(i["a"])({title:this.pageTitle,description:this.pageDescription,url:this.pageURL,currentLocale:this.$i18n.locale})}}},c081:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.action?n("DestinationDataProvider",{attrs:{destination:e.action},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.url,a=t.title;return n("ButtonLink",{attrs:{url:i,isDark:e.isDark}},[e._v(" "+e._s(a)+" ")])}}],null,!1,1264376715)}):e._e()},a=[],r=n("76ab"),s=n("c7ea"),o={name:"CallToActionButton",components:{DestinationDataProvider:s["a"],ButtonLink:r["a"]},props:{action:{type:Object,required:!0},isDark:{type:Boolean,default:!1}}},c=o,l=n("2877"),u=Object(l["a"])(c,i,a,!1,null,null,null);t["a"]=u.exports},c3da:function(e,t,n){"use strict";n("fda2")},c3e5:function(e,t,n){"use strict";n("aea0")},c4dd:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"play-icon",attrs:{viewBox:"0 0 14 14",themeId:"play"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M10.195 7.010l-5 3v-6l5 3z"}})])},a=[],r=n("be08"),s={name:"PlayIcon",components:{SVGIcon:r["a"]}},o=s,c=n("2877"),l=Object(c["a"])(o,i,a,!1,null,null,null);t["a"]=l.exports},c7ea:function(e,t,n){"use strict";var i=n("2f34");const a={link:"link",reference:"reference",text:"text"};var r,s,o={name:"DestinationDataProvider",mixins:[i["a"]],props:{destination:{type:Object,required:!0,default:()=>({})}},inject:{isTargetIDE:{default:()=>!1}},constants:{DestinationType:a},computed:{isExternal:({reference:e,destination:t})=>e.type===a.link||t.type===a.link,shouldAppendOpensInBrowser:({isExternal:e,isTargetIDE:t})=>e&&t,reference:({references:e,destination:t})=>e[t.identifier]||{},linkUrl:({destination:e,reference:t})=>({[a.link]:e.destination,[a.reference]:t.url,[a.text]:e.text}[e.type]),linkTitle:({reference:e,destination:t})=>({[a.link]:t.title,[a.reference]:t.overridingTitle||e.title,[a.text]:""}[t.type])},methods:{formatAriaLabel(e){return this.shouldAppendOpensInBrowser?e+" (opens in browser)":e}},render(){return this.$scopedSlots.default({url:this.linkUrl||"",title:this.linkTitle||"",formatAriaLabel:this.formatAriaLabel,isExternal:this.isExternal})}},c=o,l=n("2877"),u=Object(l["a"])(c,r,s,!1,null,null,null);t["a"]=u.exports},cb92:function(e,t,n){"use strict";n("598a")},cbcf:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("nav",{ref:"nav",staticClass:"nav",class:e.rootClasses,attrs:{role:"navigation"}},[n("div",{ref:"wrapper",staticClass:"nav__wrapper"},[n("div",{staticClass:"nav__background"}),e.hasOverlay?n("div",{staticClass:"nav-overlay",on:{click:e.closeNav}}):e._e(),n("div",{staticClass:"nav-content"},[e._t("pre-title",null,{className:"pre-title"},{closeNav:e.closeNav,inBreakpoint:e.inBreakpoint,currentBreakpoint:e.currentBreakpoint,isOpen:e.isOpen}),e.$slots.default?n("div",{staticClass:"nav-title"},[e._t("default")],2):e._e(),e._t("after-title"),n("div",{staticClass:"nav-menu"},[n("a",{ref:"axToggle",staticClass:"nav-ax-toggle",attrs:{href:"#",role:"button"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n("span",{staticClass:"visuallyhidden"},[e.isOpen?[e._v(" "+e._s(e.$t("documentation.nav.close-menu"))+" ")]:[e._v(" "+e._s(e.$t("documentation.nav.open-menu"))+" ")]],2)]),n("div",{ref:"tray",staticClass:"nav-menu-tray",on:{transitionend:function(t){return t.target!==t.currentTarget?null:e.onTransitionEnd.apply(null,arguments)},click:e.handleTrayClick}},[e._t("tray",(function(){return[n("NavMenuItems",[e._t("menu-items")],2)]}),{closeNav:e.closeNav})],2)]),n("div",{staticClass:"nav-actions"},[n("a",{ref:"toggle",staticClass:"nav-menucta",attrs:{href:"#",tabindex:"-1","aria-hidden":"true"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n("span",{staticClass:"nav-menucta-chevron"})])])],2),e._t("after-content")],2),n("BreakpointEmitter",{attrs:{scope:e.BreakpointScopes.nav},on:{change:e.onBreakpointChange}})],1)},a=[],r=n("72e7"),s=n("9b30"),o=n("a97e"),c=n("f2af"),l=n("942d"),u=n("63b8"),d=n("95da"),p=n("3908");const{noClose:h}=l["a"],{BreakpointName:m,BreakpointScopes:f}=o["a"].constants,g=8,b={isDark:"theme-dark",isOpen:"nav--is-open",inBreakpoint:"nav--in-breakpoint-range",isTransitioning:"nav--is-transitioning",isSticking:"nav--is-sticking",hasSolidBackground:"nav--solid-background",hasNoBorder:"nav--noborder",hasFullWidthBorder:"nav--fullwidth-border",isWideFormat:"nav--is-wide-format",noBackgroundTransition:"nav--no-bg-transition"};var v={name:"NavBase",components:{NavMenuItems:s["a"],BreakpointEmitter:o["a"]},constants:{NavStateClasses:b,NoBGTransitionFrames:g},props:{breakpoint:{type:String,default:m.small},hasOverlay:{type:Boolean,default:!0},hasSolidBackground:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},hasFullWidthBorder:{type:Boolean,default:!1},isDark:{type:Boolean,default:!1},isWideFormat:{type:Boolean,default:!1}},mixins:[r["a"]],data(){return{isOpen:!1,isTransitioning:!1,isSticking:!1,noBackgroundTransition:!0,currentBreakpoint:m.large}},computed:{BreakpointScopes:()=>f,inBreakpoint:({currentBreakpoint:e,breakpoint:t})=>!Object(u["d"])(e,t),rootClasses:({isOpen:e,inBreakpoint:t,isTransitioning:n,isSticking:i,hasSolidBackground:a,hasNoBorder:r,hasFullWidthBorder:s,isDark:o,isWideFormat:c,noBackgroundTransition:l})=>({[b.isDark]:o,[b.isOpen]:e,[b.inBreakpoint]:t,[b.isTransitioning]:n,[b.isSticking]:i,[b.hasSolidBackground]:a,[b.hasNoBorder]:r,[b.hasFullWidthBorder]:s,[b.isWideFormat]:c,[b.noBackgroundTransition]:l})},watch:{isOpen(e){this.$emit("change",e),e?this.onExpand():this.onClose()}},async mounted(){window.addEventListener("keydown",this.onEscape),window.addEventListener("popstate",this.closeNav),window.addEventListener("orientationchange",this.closeNav),document.addEventListener("click",this.handleClickOutside),this.handleFlashOnMount(),await this.$nextTick()},beforeDestroy(){window.removeEventListener("keydown",this.onEscape),window.removeEventListener("popstate",this.closeNav),window.removeEventListener("orientationchange",this.closeNav),document.removeEventListener("click",this.handleClickOutside),this.isOpen&&this.toggleScrollLock(!1)},methods:{getIntersectionTargets(){return[document.getElementById(l["e"])||this.$el]},toggleNav(){this.isOpen=!this.isOpen,this.isTransitioning=!0},closeNav(){const e=this.isOpen;return this.isOpen=!1,this.resolveOnceTransitionsEnd(e)},resolveOnceTransitionsEnd(e){return e&&this.inBreakpoint?(this.isTransitioning=!0,new Promise(e=>{const t=this.$watch("isTransitioning",()=>{e(),t()})})):Promise.resolve()},async onTransitionEnd({propertyName:e}){"max-height"===e&&(this.$emit("changed",this.isOpen),this.isTransitioning=!1,this.isOpen?(this.$emit("opened"),this.toggleScrollLock(!0)):this.$emit("closed"))},onBreakpointChange(e){this.currentBreakpoint=e,this.inBreakpoint||this.closeNav()},onIntersect({intersectionRatio:e}){window.scrollY<0||(this.isSticking=1!==e)},onEscape({key:e}){"Escape"===e&&this.isOpen&&(this.closeNav(),this.$refs.axToggle.focus())},handleTrayClick({target:e}){e.href&&!e.classList.contains(h)&&this.closeNav()},handleClickOutside({target:e}){this.$refs.nav.contains(e)||this.closeNav()},toggleScrollLock(e){e?c["b"].lockScroll(this.$refs.tray):c["b"].unlockScroll(this.$refs.tray)},onExpand(){this.$emit("open"),d["a"].hide(this.$refs.wrapper),document.activeElement===this.$refs.toggle&&document.activeElement.blur()},onClose(){this.$emit("close"),this.toggleScrollLock(!1),d["a"].show(this.$refs.wrapper)},async handleFlashOnMount(){await Object(p["b"])(g),this.noBackgroundTransition=!1}}},y=v,w=(n("1f39"),n("2877")),_=Object(w["a"])(y,i,a,!1,null,"5c0521d3",null);t["a"]=_.exports},d0da:function(e,t,n){"use strict";n("64b5")},e3ab:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("aside",{class:e.kind,attrs:{"aria-label":e.kind}},[n("p",{staticClass:"label"},[e._v(e._s(e.name||e.$t(e.label)))]),e._t("default")],2)},a=[];const r={deprecated:"deprecated",experiment:"experiment",important:"important",note:"note",tip:"tip",warning:"warning"};var s={name:"Aside",props:{kind:{type:String,required:!0,validator:e=>Object.prototype.hasOwnProperty.call(r,e)},name:{type:String,required:!1}},computed:{label:({kind:e})=>"aside-kind."+e}},o=s,c=(n("b8f2"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"3ccce809",null);t["a"]=l.exports},e529:function(e,t,n){},e6db:function(e,t,n){"use strict";n("47cc")},ec71:function(e,t,n){"use strict";n("a4f0")},ee9e:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"row",class:{"with-columns":e.columns},style:e.style},[e._t("default")],2)},a=[],r=n("63b8"),s={name:"Row",props:{columns:{type:Object,required:!1,validator:e=>Object.entries(e).every(([e,t])=>r["b"][e]&&"number"===typeof t)},gap:{type:Number,required:!1}},computed:{style:({columns:e={},gap:t})=>({"--col-count-large":e.large,"--col-count-medium":e.medium,"--col-count-small":e.small||1,"--col-gap":t&&t+"px"})}},o=s,c=(n("17a4"),n("2877")),l=Object(c["a"])(o,i,a,!1,null,"1bcb2d0f",null);t["a"]=l.exports},efc1:function(e,t,n){"use strict";n("3b75")},f030:function(e,t,n){},f12c:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"TopicTypeIcon",style:e.styles},[e.imageOverride?n("OverridableAsset",{staticClass:"icon-inline",attrs:{imageOverride:e.imageOverride,shouldCalculateOptimalWidth:e.shouldCalculateOptimalWidth}}):n(e.icon,e._b({tag:"component",staticClass:"icon-inline"},"component",e.iconProps,!1))],1)},a=[],r=n("a295"),s=n("3024"),o=n("a9f1"),c=n("8d2d"),l=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-func"}},[n("path",{attrs:{d:"M13 1v12h-12v-12zM12.077 1.923h-10.154v10.154h10.154z"}}),n("path",{attrs:{d:"M5.191 9.529c0.044 0.002 0.089 0.004 0.133 0.004 0.108 0 0.196-0.025 0.262-0.074s0.122-0.113 0.166-0.188c0.044-0.077 0.078-0.159 0.103-0.247s0.049-0.173 0.074-0.251l0.598-2.186h-0.709l0.207-0.702h0.702l0.288-1.086c0.083-0.384 0.256-0.667 0.517-0.849s0.591-0.273 0.99-0.273c0.108 0 0.212 0.007 0.314 0.022s0.203 0.027 0.306 0.037l-0.207 0.761c-0.054-0.006-0.106-0.011-0.155-0.018s-0.102-0.011-0.155-0.011c-0.108 0-0.196 0.016-0.262 0.048s-0.122 0.075-0.166 0.129-0.080 0.115-0.107 0.185c-0.028 0.068-0.055 0.14-0.085 0.214l-0.222 0.842h0.768l-0.192 0.702h-0.783l-0.628 2.319c-0.059 0.222-0.129 0.419-0.21 0.594s-0.182 0.322-0.303 0.443-0.269 0.214-0.443 0.281-0.385 0.1-0.631 0.1c-0.084 0-0.168-0.004-0.251-0.011s-0.168-0.014-0.251-0.018l0.207-0.768c0.040 0 0.081 0.001 0.126 0.004z"}})])},u=[],d=n("be08"),p={name:"TopicFuncIcon",components:{SVGIcon:d["a"]}},h=p,m=n("2877"),f=Object(m["a"])(h,l,u,!1,null,null,null),g=f.exports,b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"collection-icon",attrs:{viewBox:"0 0 14 14",themeId:"collection"}},[n("path",{attrs:{d:"m1 1v12h12v-12zm11 11h-10v-10h10z"}}),n("path",{attrs:{d:"m3 4h8v1h-8zm0 2.5h8v1h-8zm0 2.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 4h8v1h-8z"}}),n("path",{attrs:{d:"m3 6.5h8v1h-8z"}}),n("path",{attrs:{d:"m3 9h8v1h-8z"}})])},v=[],y={name:"CollectionIcon",components:{SVGIcon:d["a"]}},w=y,_=Object(m["a"])(w,b,v,!1,null,null,null),x=_.exports,k=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-func-op"}},[n("path",{attrs:{d:"M13 13h-12v-12h12zM1.923 12.077h10.154v-10.154h-10.154z"}}),n("path",{attrs:{d:"M5.098 4.968v-1.477h-0.738v1.477h-1.477v0.738h1.477v1.477h0.738v-1.477h1.477v-0.738z"}}),n("path",{attrs:{d:"M8.030 4.807l-2.031 5.538h0.831l2.031-5.538z"}}),n("path",{attrs:{d:"M8.894 8.805v0.923h2.215v-0.923z"}})])},C=[],S={name:"TopicFuncOpIcon",components:{SVGIcon:d["a"]}},E=S,O=Object(m["a"])(E,k,C,!1,null,null,null),I=O.exports,j=n("3b96"),T=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{attrs:{viewBox:"0 0 14 14",height:"14",themeId:"topic-subscript"}},[n("path",{attrs:{d:"M13 13h-12v-12h12zM1.923 12.077h10.154v-10.154h-10.154z"}}),n("path",{attrs:{d:"M4.133 3.633v6.738h1.938v-0.831h-0.923v-5.077h0.923v-0.831z"}}),n("path",{attrs:{d:"M9.856 10.371v-6.738h-1.938v0.831h0.923v5.077h-0.923v0.831z"}})])},A=[],L={name:"TopicSubscriptIcon",components:{SVGIcon:d["a"]}},B=L,$=Object(m["a"])(B,T,A,!1,null,null,null),N=$.exports,M=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"two-letter-icon",attrs:{width:"16px",height:"16px",viewBox:"0 0 16 16",themeId:"two-letter"}},[n("g",{attrs:{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[n("g",{attrs:{transform:"translate(1.000000, 1.000000)"}},[n("rect",{attrs:{stroke:"currentColor",x:"0.5",y:"0.5",width:"13",height:"13"}}),n("text",{attrs:{"font-size":"8","font-weight":"bold",fill:"currentColor"}},[n("tspan",{attrs:{x:"8.2",y:"11"}},[e._v(e._s(e.second))])]),n("text",{attrs:{"font-size":"11","font-weight":"bold",fill:"currentColor"}},[n("tspan",{attrs:{x:"1.7",y:"11"}},[e._v(e._s(e.first))])])])])])},P=[],R={name:"TwoLetterSymbolIcon",components:{SVGIcon:d["a"]},props:{first:{type:String,required:!0},second:{type:String,required:!0}}},V=R,D=Object(m["a"])(V,M,P,!1,null,null,null),G=D.exports,z=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"single-letter-icon",attrs:{width:"16px",height:"16px",viewBox:"0 0 16 16",themeId:"single-letter"}},[n("g",{attrs:{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[n("rect",{attrs:{stroke:"currentColor",x:"1",y:"1",width:"14",height:"14"}}),n("text",{attrs:{"font-size":"11","font-weight":"bold",fill:"currentColor",x:"49%",y:"12","text-anchor":"middle"}},[n("tspan",[e._v(e._s(e.symbol))])])])])},q=[],F={name:"SingleLetterSymbolIcon",components:{SVGIcon:d["a"]},props:{symbol:{type:String,required:!0}}},U=F,W=Object(m["a"])(U,z,q,!1,null,null,null),H=W.exports,K=n("31d4"),Z=n("2cae"),Y=n("fdd9");const X={[K["b"].article]:o["a"],[K["b"].associatedtype]:x,[K["b"].buildSetting]:x,[K["b"].class]:H,[K["b"].collection]:x,[K["b"].dictionarySymbol]:H,[K["b"].container]:x,[K["b"].enum]:H,[K["b"].extension]:G,[K["b"].func]:g,[K["b"].op]:I,[K["b"].httpRequest]:H,[K["b"].languageGroup]:x,[K["b"].learn]:r["a"],[K["b"].method]:H,[K["b"].macro]:H,[K["b"].module]:s["a"],[K["b"].overview]:r["a"],[K["b"].protocol]:G,[K["b"].property]:H,[K["b"].propertyListKey]:H,[K["b"].resources]:r["a"],[K["b"].sampleCode]:j["a"],[K["b"].struct]:H,[K["b"].subscript]:N,[K["b"].symbol]:x,[K["b"].tutorial]:c["a"],[K["b"].typealias]:H,[K["b"].union]:H,[K["b"].var]:H},J={[K["b"].class]:{symbol:"C"},[K["b"].dictionarySymbol]:{symbol:"O"},[K["b"].enum]:{symbol:"E"},[K["b"].extension]:{first:"E",second:"x"},[K["b"].httpRequest]:{symbol:"E"},[K["b"].method]:{symbol:"M"},[K["b"].macro]:{symbol:"#"},[K["b"].protocol]:{first:"P",second:"r"},[K["b"].property]:{symbol:"P"},[K["b"].propertyListKey]:{symbol:"K"},[K["b"].struct]:{symbol:"S"},[K["b"].typealias]:{symbol:"T"},[K["b"].union]:{symbol:"U"},[K["b"].var]:{symbol:"V"}};var Q={name:"TopicTypeIcon",components:{OverridableAsset:Y["a"],SVGIcon:d["a"],SingleLetterSymbolIcon:H},constants:{TopicTypeIcons:X,TopicTypeProps:J},props:{type:{type:String,required:!0},withColors:{type:Boolean,default:!1},imageOverride:{type:Object,default:null},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},computed:{normalisedType:({type:e})=>K["a"][e]||e,icon:({normalisedType:e})=>X[e]||x,iconProps:({normalisedType:e})=>J[e]||{},color:({normalisedType:e})=>Z["b"][e],styles:({color:e,withColors:t})=>t&&e?{"--icon-color":`var(--color-type-icon-${e})`}:{}}},ee=Q,te=(n("9a61"),Object(m["a"])(ee,i,a,!1,null,"18b61706",null));t["a"]=te.exports},f2af:function(e,t,n){"use strict";n.d(t,"a",(function(){return s}));let i=!1,a=-1,r=0;const s="data-scroll-lock-disable",o=()=>window.navigator&&window.navigator.platform&&(/iP(ad|hone|od)/.test(window.navigator.platform)||"MacIntel"===window.navigator.platform&&window.navigator.maxTouchPoints>1);function c(e){e.touches.length>1||e.preventDefault()}const l=e=>!!e&&e.scrollHeight-e.scrollTop<=e.clientHeight;function u(){r=document.body.getBoundingClientRect().top,document.body.style.overflow="hidden scroll",document.body.style.top=r+"px",document.body.style.position="fixed",document.body.style.width="100%"}function d(e){e&&(e.ontouchstart=null,e.ontouchmove=null),document.removeEventListener("touchmove",c)}function p(e,t){const n=e.targetTouches[0].clientY-a,i=e.target.closest(`[${s}]`)||t;return 0===i.scrollTop&&n>0||l(i)&&n<0?c(e):(e.stopPropagation(),!0)}function h(e){document.addEventListener("touchmove",c,{passive:!1}),e&&(e.ontouchstart=e=>{1===e.targetTouches.length&&(a=e.targetTouches[0].clientY)},e.ontouchmove=t=>{1===t.targetTouches.length&&p(t,e)})}t["b"]={lockScroll(e){i||(o()?h(e):u(),i=!0)},unlockScroll(e){i&&(o()?d(e):(document.body.style.removeProperty("overflow"),document.body.style.removeProperty("top"),document.body.style.removeProperty("position"),document.body.style.removeProperty("width"),window.scrollTo(0,Math.abs(r))),i=!1)}}},fb8e:function(e,t,n){"use strict";n("6058")},fda2:function(e,t,n){},fdd9:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.shouldUseAsset?n("ImageAsset",e._b({},"ImageAsset",{variants:e.variants,loading:null,shouldCalculateOptimalWidth:e.shouldCalculateOptimalWidth,alt:e.alt},!1)):n("SVGIcon",{attrs:{"icon-url":e.iconUrl,themeId:e.themeId}})},a=[],r=n("8bd9"),s=n("be08"),o={name:"OverridableAsset",components:{SVGIcon:s["a"],ImageAsset:r["a"]},props:{imageOverride:{type:Object,default:null},shouldCalculateOptimalWidth:{type:Boolean,default:!0}},computed:{variants:({imageOverride:e})=>e?e.variants:[],alt:({imageOverride:e})=>e.alt,firstVariant:({variants:e})=>e[0],iconUrl:({firstVariant:e})=>e&&e.url,themeId:({firstVariant:e})=>e&&e.svgID,isSameOrigin:({iconUrl:e,sameOrigin:t})=>t(e),shouldUseAsset:({isSameOrigin:e,themeId:t})=>!e||!t},methods:{sameOrigin(e){if(!e)return!1;const t=new URL(e,window.location),n=new URL(window.location);return t.origin===n.origin}}},c=o,l=n("2877"),u=Object(l["a"])(c,i,a,!1,null,null,null);t["a"]=u.exports},fe08:function(e,t,n){"use strict";n("a7d8")},fe1c:function(e,t,n){"use strict";n("81c0")}}]); \ No newline at end of file diff --git a/docs/js/index.aa320932.js b/docs/js/index.aa320932.js deleted file mode 100644 index ae697ac..0000000 --- a/docs/js/index.aa320932.js +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */(function(e){function t(t){for(var n,i,c=t[0],a=t[1],h=t[2],l=0,u=[];l])/g,i=/^-+/,r=/["'&<>]/g;function s(e){return e.trim().replace(n,"-").replace(i,"").toLowerCase()}function c(e){const t=e=>({'"':""","'":"'","&":"&","<":"<",">":">"}[e]||e);return e.replace(r,t)}const a={zero:"zero",one:"one",two:"two",few:"few",many:"many",other:"other"},h={cardinal:"cardinal",ordinal:"ordinal"};function l(e,t){const{cardinal:o}=h,{one:n,other:i}=a,r="en",s=1===t?n:i;if(!e[r]||!e[r][s])throw new Error("No default choices provided to pluralize using default locale "+r);let c=r,l=s;if("Intl"in window&&"PluralRules"in window.Intl){const n=navigator.languages?navigator.languages:[navigator.language],i=new Intl.PluralRules(n,{type:o}),r=i.select(t),s=i.resolvedOptions().locale;e[s]&&e[s][r]&&(c=s,l=r)}return e[c][l]}function u(e){return e.replace(/#(.*)/,(e,t)=>"#"+CSS.escape(t))}function d(e){return e.replace(/[.*+\-?^${}()|[\]\\]/g,"\\$&")}function g(e){let t,o;const n="\\s*",i=" ",r=e.trim(),s=r.length;if(!s)return i;const c=[];for(t=0;t{t=e});return requestAnimationFrame((function e(){o-=1,o<=0?t():requestAnimationFrame(e)})),n}function i(e){return new Promise(t=>{setTimeout(t,e)})}o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return i}))},4009:function(e,t,o){"use strict";o.d(t,"a",(function(){return n}));const n="app-top"},"48b1":function(e,t,o){"use strict";o("e487")},"5c0b":function(e,t,o){"use strict";o("9c0c")},"5d2d":function(e,t,o){"use strict";o.d(t,"a",(function(){return s})),o.d(t,"c",(function(){return a})),o.d(t,"b",(function(){return h}));const n="developer.setting.";function i(e=localStorage){return{getItem:t=>{try{return e.getItem(t)}catch(o){return null}},setItem:(t,o)=>{try{e.setItem(t,o)}catch(n){}},removeItem:t=>{try{e.removeItem(t)}catch(o){}}}}function r(e){return{get:(t,o)=>{const i=JSON.parse(e.getItem(n+t));return null!==i?i:o},set:(t,o)=>e.setItem(n+t,JSON.stringify(o)),remove:t=>e.removeItem(n+t)}}const s=i(window.localStorage),c=i(window.sessionStorage),a=r(s),h=r(c)},6131:function(e,t,o){"use strict";o("f8ba")},"613f":function(e,t,o){},"63b8":function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"c",(function(){return i})),o.d(t,"a",(function(){return r})),o.d(t,"d",(function(){return c}));const n={large:"large",medium:"medium",small:"small"},i={default:"default",nav:"nav"},r={[i.default]:{[n.large]:{minWidth:1069,contentWidth:980},[n.medium]:{minWidth:736,maxWidth:1068,contentWidth:692},[n.small]:{minWidth:320,maxWidth:735,contentWidth:280}},[i.nav]:{[n.large]:{minWidth:1024},[n.medium]:{minWidth:768,maxWidth:1023},[n.small]:{minWidth:320,maxWidth:767}}},s={[n.small]:0,[n.medium]:1,[n.large]:2};function c(e,t){return s[e]>s[t]}},6842:function(e,t,o){"use strict";function n(e,t,o){let n,i=e,r=t;for("string"===typeof r&&(r=[r]),n=0;ne.json()).catch(()=>({}))}const c=(e,t)=>n(i,e,t)},7138:function(e,t,o){"use strict";o("813c")},"748c":function(e,t,o){"use strict";o.d(t,"e",(function(){return i})),o.d(t,"a",(function(){return r})),o.d(t,"d",(function(){return s})),o.d(t,"c",(function(){return c})),o.d(t,"f",(function(){return a})),o.d(t,"b",(function(){return h}));var n=o("6842");function i(e){return e.reduce((e,t)=>(t.traits.includes("dark")?e.dark.push(t):e.light.push(t),e),{light:[],dark:[]})}function r(e){const t=["1x","2x","3x"];return t.reduce((t,o)=>{const n=e.find(e=>e.traits.includes(o));return n?t.concat({density:o,src:n.url,size:n.size}):t},[])}function s(e){const t="/",o=new RegExp(t+"+","g");return e.join(t).replace(o,t)}function c(e){return e&&"string"===typeof e&&!e.startsWith(n["a"])&&e.startsWith("/")?s([n["a"],e]):e}function a(e){return e?`url('${c(e)}')`:void 0}function h(e){return new Promise((t,o)=>{const n=new Image;n.src=e,n.onerror=o,n.onload=()=>t({width:n.width,height:n.height})})}},"813c":function(e,t,o){},"821b":function(e,t,o){"use strict";t["a"]={auto:{label:"Auto",value:"auto"},dark:{label:"Dark",value:"dark"},light:{label:"Light",value:"light"}}},"942d":function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"c",(function(){return i})),o.d(t,"e",(function(){return r})),o.d(t,"d",(function(){return s})),o.d(t,"a",(function(){return c}));const n=52,i=48,r="nav-sticky-anchor",s="nav-open-navigator",c={noClose:"noclose"}},9895:function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return i}));const n="not-found",i="documentation-topic"},"9c0c":function(e,t,o){},a5c6:function(e,t,o){"use strict";o("613f")},d26a:function(e,t,o){"use strict";o.d(t,"c",(function(){return r})),o.d(t,"b",(function(){return s})),o.d(t,"a",(function(){return c})),o.d(t,"d",(function(){return a}));var n=o("748c"),i={input:"input",tags:"tags"};function r(e={}){return Object.entries(e).reduce((e,[t,o])=>o?e.concat(`${encodeURIComponent(t)}=${encodeURIComponent(o)}`):e,[]).join("&")}function s(e,{changes:t,language:o,context:n}={}){const[i,s]=e.split("#"),c=i.match(/\?.*/),a=r({changes:t,language:o,context:n}),h=c?"&":"?",l=s?i:e,u=a?`${h}${a}`:"",d=s?"#"+s:"";return`${l}${u}${d}`}function c(e,t){const{query:{changes:o,[i.input]:n,[i.tags]:r,...s}={}}=e,{query:{changes:c,[i.input]:a,[i.tags]:h,...l}={}}=t;return e.name===t.name&&JSON.stringify({path:e.path,query:s})===JSON.stringify({path:t.path,query:l})}function a(e,t=window.location.origin){return new URL(Object(n["c"])(e),t).href}},d369:function(e,t,o){"use strict";var n=o("5d2d");const i={preferredColorScheme:"developer.setting.preferredColorScheme",preferredLanguage:"docs.setting.preferredLanguage"},r={preferredColorScheme:"docs.setting.preferredColorScheme"};t["a"]=Object.defineProperties({},Object.keys(i).reduce((e,t)=>({...e,[t]:{get:()=>{const e=r[t],o=n["a"].getItem(i[t]);return e?o||n["a"].getItem(e):o},set:e=>n["a"].setItem(i[t],e)}}),{}))},dd18:function(e,t,o){"use strict";t["a"]={eager:"eager",lazy:"lazy"}},e425:function(e,t,o){"use strict";var n=o("821b"),i=o("dd18"),r=o("d369");const s="undefined"!==typeof window.matchMedia&&[n["a"].light.value,n["a"].dark.value,"no-preference"].some(e=>window.matchMedia(`(prefers-color-scheme: ${e})`).matches),c=s?n["a"].auto:n["a"].light;t["a"]={state:{imageLoadingStrategy:i["a"].lazy,preferredColorScheme:r["a"].preferredColorScheme||c.value,supportsAutoColorScheme:s,systemColorScheme:n["a"].light.value},setImageLoadingStrategy(e){this.state.imageLoadingStrategy=e},setPreferredColorScheme(e){this.state.preferredColorScheme=e,r["a"].preferredColorScheme=e},setSystemColorScheme(e){this.state.systemColorScheme=e},syncPreferredColorScheme(){r["a"].preferredColorScheme&&r["a"].preferredColorScheme!==this.state.preferredColorScheme&&(this.state.preferredColorScheme=r["a"].preferredColorScheme)}}},e487:function(e,t,o){},ed96:function(e,t,o){o.p=window.baseUrl},f161:function(e,t,o){"use strict";o.r(t);o("ed96");var n=o("2b0e"),i=o("8c4f"),r=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{class:{fromkeyboard:e.fromKeyboard,hascustomheader:e.hasCustomHeader},attrs:{id:"app"}},[o("div",{attrs:{id:e.AppTopID}}),o("a",{attrs:{href:"#main",id:"skip-nav"}},[e._v("Skip Navigation")]),o("InitialLoadingPlaceholder"),e._t("header",(function(){return[e.hasCustomHeader?o("custom-header",{attrs:{"data-color-scheme":e.preferredColorScheme}}):e._e()]}),{isTargetIDE:e.isTargetIDE}),o("div",{attrs:{id:e.baseNavStickyAnchorId}}),e._t("default",(function(){return[o("router-view",{staticClass:"router-content"}),e.hasCustomFooter?o("custom-footer",{attrs:{"data-color-scheme":e.preferredColorScheme}}):e.isTargetIDE?e._e():o("Footer")]}),{isTargetIDE:e.isTargetIDE}),e._t("footer",null,{isTargetIDE:e.isTargetIDE})],2)},s=[],c=o("e425"),a=o("821b"),h=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("footer",{staticClass:"footer"},[o("div",{staticClass:"row"},[o("ColorSchemeToggle")],1)])},l=[],u=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"color-scheme-toggle",attrs:{"aria-label":"Select a color scheme preference",role:"radiogroup"}},e._l(e.options,(function(t){return o("label",{key:t.value},[o("input",{attrs:{type:"radio"},domProps:{checked:t.value==e.preferredColorScheme,value:t.value},on:{input:e.setPreferredColorScheme}}),o("div",{staticClass:"text"},[e._v(e._s(t.label))])])})),0)},d=[],g={name:"ColorSchemeToggle",data:()=>({appState:c["a"].state}),computed:{options:({supportsAutoColorScheme:e})=>[a["a"].light,a["a"].dark,...e?[a["a"].auto]:[]],preferredColorScheme:({appState:e})=>e.preferredColorScheme,supportsAutoColorScheme:({appState:e})=>e.supportsAutoColorScheme},methods:{setPreferredColorScheme:e=>{c["a"].setPreferredColorScheme(e.target.value)}},watch:{preferredColorScheme:{immediate:!0,handler(e){document.body.dataset.colorScheme=e}}}},f=g,m=(o("6131"),o("2877")),p=Object(m["a"])(f,u,d,!1,null,"8890c4d6",null),j=p.exports,v={name:"Footer",components:{ColorSchemeToggle:j}},w=v,b=(o("2de0"),Object(m["a"])(w,h,l,!1,null,"72f2e2dc",null)),y=b.exports,S=function(){var e=this,t=e.$createElement,o=e._self._c||t;return e.loaded?e._e():o("div",{staticClass:"InitialLoadingPlaceholder",attrs:{id:"loading-placeholder"}})},E=[],C={name:"InitialLoadingPlaceholder",data(){return{loaded:!1}},created(){const e=()=>{this.loaded=!0};this.$router.onReady(e,e)}},_=C,P=(o("48b1"),Object(m["a"])(_,S,E,!1,null,"35c356b6",null)),T=P.exports,k=o("942d"),O=o("6842");function A(e,t){return e&&"object"===typeof e&&Object.prototype.hasOwnProperty.call(e,t)&&"string"===typeof e[t]}function I(e,t,o,n){if(!t||"object"!==typeof t||n&&(A(t,"light")||A(t,"dark"))){let i=t;if(A(t,n)&&(i=t[n]),"object"===typeof i)return;o[e]=i}else Object.entries(t).forEach(([t,i])=>{const r=[e,t].join("-");I(r,i,o,n)})}function L(e,t="light"){const o={},n=e||{};return I("-",n,o,t),o}var x=o("4009"),D={name:"CoreApp",components:{Footer:y,InitialLoadingPlaceholder:T},provide(){return{isTargetIDE:this.isTargetIDE,performanceMetricsEnabled:"true"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_PERFORMANCE_ENABLED}},data(){return{AppTopID:x["a"],appState:c["a"].state,fromKeyboard:!1,isTargetIDE:"ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET,themeSettings:O["d"],baseNavStickyAnchorId:k["e"]}},computed:{currentColorScheme:({appState:e})=>e.systemColorScheme,preferredColorScheme:({appState:e})=>e.preferredColorScheme,CSSCustomProperties:({currentColorScheme:e,preferredColorScheme:t,themeSettings:o})=>L(o.theme,t===a["a"].auto.value?e:t),hasCustomHeader:()=>!!window.customElements.get("custom-header"),hasCustomFooter:()=>!!window.customElements.get("custom-footer")},props:{enableThemeSettings:{type:Boolean,default:!0}},watch:{CSSCustomProperties:{immediate:!0,handler(e){this.detachStylesFromRoot(e),this.attachStylesToRoot(e)}}},async created(){window.addEventListener("keydown",this.onKeyDown),this.$bridge.on("navigation",this.handleNavigationRequest),this.enableThemeSettings&&Object.assign(this.themeSettings,await Object(O["b"])()),window.addEventListener("pageshow",this.syncPreferredColorScheme),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("pageshow",this.syncPreferredColorScheme)})},mounted(){(document.querySelector(".footer-current-year")||{}).innerText=(new Date).getFullYear(),this.attachColorSchemeListeners()},beforeDestroy(){this.fromKeyboard?window.removeEventListener("mousedown",this.onMouseDown):window.removeEventListener("keydown",this.onKeyDown),this.$bridge.off("navigation",this.handleNavigationRequest),this.detachStylesFromRoot(this.CSSCustomProperties)},methods:{onKeyDown(){this.fromKeyboard=!0,window.addEventListener("mousedown",this.onMouseDown),window.removeEventListener("keydown",this.onKeyDown)},onMouseDown(){this.fromKeyboard=!1,window.addEventListener("keydown",this.onKeyDown),window.removeEventListener("mousedown",this.onMouseDown)},handleNavigationRequest(e){this.$router.push(e)},attachColorSchemeListeners(){if(!window.matchMedia)return;const e=window.matchMedia("(prefers-color-scheme: dark)");e.addListener(this.onColorSchemePreferenceChange),this.$once("hook:beforeDestroy",()=>{e.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(e)},onColorSchemePreferenceChange({matches:e}){const t=e?a["a"].dark:a["a"].light;c["a"].setSystemColorScheme(t.value)},attachStylesToRoot(e){const t=document.body;Object.entries(e).filter(([,e])=>Boolean(e)).forEach(([e,o])=>{t.style.setProperty(e,o)})},detachStylesFromRoot(e){const t=document.body;Object.entries(e).forEach(([e])=>{t.style.removeProperty(e)})},syncPreferredColorScheme(){c["a"].syncPreferredColorScheme()}}},$=D,N=(o("5c0b"),o("a5c6"),Object(m["a"])($,r,s,!1,null,"0a4c340a",null)),R=N.exports;class U{constructor(){this.$send=()=>{}}send(e){this.$send(e)}}class M{constructor(){const{webkit:{messageHandlers:{bridge:e={}}={}}={}}=window;this.bridge=e;const{postMessage:t=(()=>{})}=e;this.$send=t.bind(e)}send(e){this.$send(e)}}class B{constructor(e=new U){this.backend=e,this.listeners={}}send(e){this.backend.send(e)}receive(e){this.emit(e.type,e.data)}emit(e,t){this.listeners[e]&&this.listeners[e].forEach(e=>e(t))}on(e,t){this.listeners[e]||(this.listeners[e]=new Set),this.listeners[e].add(t)}off(e,t){this.listeners[e]&&this.listeners[e].delete(t)}}var W={install(e,t){let o;o=t.performanceMetricsEnabled||"ide"===t.appTarget?new M:new U,e.prototype.$bridge=new B(o)}};function V(e){return"custom-"+e}function q(e){return class extends HTMLElement{constructor(){super();const t=this.attachShadow({mode:"open"}),o=e.content.cloneNode(!0);t.appendChild(o)}}}function F(e){const t=V(e),o=document.getElementById(t);o&&window.customElements.define(t,q(o))}function H(e,t={names:["header","footer"]}){const{names:o}=t;e.config.ignoredElements=/^custom-/,o.forEach(F)}function K(e,t){const{value:o=!1}=t;e.style.display=o?"none":""}var G={hide:K};function z(e,{performanceMetrics:t=!1}={}){e.config.productionTip=!1,e.use(H),e.directive("hide",G.hide),e.use(W,{appTarget:Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET,performanceMetricsEnabled:t}),window.bridge=e.prototype.$bridge,e.config.performance=t}var J=o("9895"),Y=o("63b8"),X=o("3908"),Q=o("002d"),Z=o("d26a");const ee=10;function te(e){const{name:t}=e,o=t.includes(J["a"]);return o?ee:0}function oe(){const{location:e}=window;return e.pathname+e.search+e.hash}function ne(){const e=Math.max(document.documentElement.clientWidth||0,window.innerWidth||0);return ePromise.all([o.e("documentation-topic~topic~tutorials-overview"),o.e("tutorials-overview")]).then(o.bind(null,"f025"))},{path:"/tutorials/:id/*",name:"topic",component:()=>Promise.all([o.e("documentation-topic~topic~tutorials-overview"),o.e("documentation-topic~topic"),o.e("topic")]).then(o.bind(null,"3213"))},{path:"/documentation/*",name:J["a"],component:()=>Promise.all([o.e("documentation-topic~topic~tutorials-overview"),o.e("chunk-384ef189"),o.e("documentation-topic~topic"),o.e("documentation-topic")]).then(o.bind(null,"f8ac"))},{path:"*",name:J["b"],component:Ce},{path:"*",name:"server-error",component:ve}];function Pe(e={}){const t=new i["a"]({mode:"history",base:O["a"],scrollBehavior:ie,...e,routes:e.routes||_e});return t.onReady(()=>{"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual"),re()}),"ide"!==Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET&&t.onError(e=>{const{route:o={path:"/"}}=e;t.replace({name:"server-error",params:[o.path]})}),window.addEventListener("unload",se),t}n["default"].use(z),n["default"].use(i["a"]),new n["default"]({router:Pe(),render:e=>e(R)}).$mount("#app")},f8ba:function(e,t,o){},fb1e:function(e,t,o){}}); \ No newline at end of file diff --git a/docs/js/index.e8a5d294.js b/docs/js/index.e8a5d294.js new file mode 100644 index 0000000..f24cc9e --- /dev/null +++ b/docs/js/index.e8a5d294.js @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */(function(e){function t(t){for(var i,o,s=t[0],c=t[1],l=t[2],u=0,h=[];u])/g,o=/^-+/,r=/["'&<>]/g;function a(e){return e.trim().replace(i,"-").replace(o,"").toLowerCase()}function s(e){const t=e=>({'"':""","'":"'","&":"&","<":"<",">":">"}[e]||e);return e.replace(r,t)}function c(e){return e.replace(/#(.*)/,(e,t)=>"#"+CSS.escape(t))}function l(e){return e.replace(/[.*+\-?^${}()|[\]\\]/g,"\\$&")}function u(e){let t,n;const i="\\s*",o=" ",r=e.trim(),a=r.length;if(!a)return o;const s=[];for(t=0;t[{name:"description",content:t},{property:"og:locale",content:i},{property:"og:site_name",content:r},{property:"og:type",content:"website"},{property:"og:title",content:e},{property:"og:description",content:t},{property:"og:url",content:n},{property:"og:image",content:Object(o["e"])("/developer-og.jpg")},{name:"twitter:image",content:Object(o["e"])("/developer-og-twitter.jpg")},{name:"twitter:card",content:"summary_large_image"},{name:"twitter:description",content:t},{name:"twitter:title",content:e},{name:"twitter:url",content:n}],s=e=>[e,r].filter(Boolean).join(" | "),c=e=>{const{content:t}=e,n=e.property?"property":"name",i=e[n],o=document.querySelector(`meta[${n}="${i}"]`);if(o&&t)o.setAttribute("content",t);else if(o&&!t)o.remove();else if(t){const t=document.createElement("meta");t.setAttribute(n,e[n]),t.setAttribute("content",e.content),document.getElementsByTagName("head")[0].appendChild(t)}},l=e=>{document.title=e};function u({title:e,description:t,url:n,currentLocale:i}){const o=s(e);l(o),a({title:o,description:t,url:n,currentLocale:i}).forEach(e=>c(e))}function h(e){document.querySelector("html").setAttribute("lang",e)}},"34b0":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-chevron-right-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-chevron-right"}},[n("path",{attrs:{d:"M2.964 1.366l0.649-0.76 7.426 6.343-7.423 6.445-0.655-0.755 6.545-5.683-6.542-5.59z"}})])},o=[],r=n("be08"),a={name:"InlineChevronRightIcon",components:{SVGIcon:r["a"]}},s=a,c=n("2877"),l=Object(c["a"])(s,i,o,!1,null,null,null);t["a"]=l.exports},3502:function(e,t,n){},3908:function(e,t,n){"use strict";function i(e){let t=null,n=e-1;const i=new Promise(e=>{t=e});return requestAnimationFrame((function e(){n-=1,n<=0?t():requestAnimationFrame(e)})),i}function o(e){return new Promise(t=>{setTimeout(t,e)})}n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o}))},"3be4":function(e,t,n){},"3ca7":function(e){e.exports=JSON.parse('[{"code":"en-US","name":"English","slug":"en-US"},{"code":"zh-CN","name":"简体中文","slug":"zh-CN"},{"code":"ja-JP","name":"日本語","slug":"ja-JP"}]')},4009:function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));const i="app-top"},"48b1":function(e,t,n){"use strict";n("e487")},5522:function(e,t,n){"use strict";n("a3e8")},"5c0b":function(e,t,n){"use strict";n("9c0c")},"5d2d":function(e,t,n){"use strict";n.d(t,"a",(function(){return a})),n.d(t,"c",(function(){return c})),n.d(t,"b",(function(){return l}));const i="developer.setting.";function o(e=localStorage){return{getItem:t=>{try{return e.getItem(t)}catch(n){return null}},setItem:(t,n)=>{try{e.setItem(t,n)}catch(i){}},removeItem:t=>{try{e.removeItem(t)}catch(n){}}}}function r(e){return{get:(t,n)=>{const o=JSON.parse(e.getItem(i+t));return null!==o?o:n},set:(t,n)=>e.setItem(i+t,JSON.stringify(n)),remove:t=>e.removeItem(i+t)}}const a=o(window.localStorage),s=o(window.sessionStorage),c=r(a),l=r(s)},"63b8":function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"a",(function(){return r})),n.d(t,"d",(function(){return s}));const i={large:"large",medium:"medium",small:"small"},o={default:"default",nav:"nav"},r={[o.default]:{[i.large]:{minWidth:1069,contentWidth:980},[i.medium]:{minWidth:736,maxWidth:1068,contentWidth:692},[i.small]:{minWidth:320,maxWidth:735,contentWidth:280}},[o.nav]:{[i.large]:{minWidth:1024},[i.medium]:{minWidth:768,maxWidth:1023},[i.small]:{minWidth:320,maxWidth:767}}},a={[i.small]:0,[i.medium]:1,[i.large]:2};function s(e,t){return a[e]>a[t]}},6842:function(e,t,n){"use strict";function i(e,t,n){let i,o=e,r=t;for("string"===typeof r&&(r=[r]),i=0;ie.json()).catch(()=>({}))}const c=(e,t)=>i(r,e,t)},"748c":function(e,t,n){"use strict";function i(e){return e.reduce((e,t)=>(t.traits.includes("dark")?e.dark.push(t):e.light.push(t),e),{light:[],dark:[]})}function o(e){const t=["1x","2x","3x"];return t.reduce((t,n)=>{const i=e.find(e=>e.traits.includes(n));return i?t.concat({density:n,src:i.url,size:i.size}):t},[])}function r(e){const t="/",n=new RegExp(t+"+","g");return e.join(t).replace(n,t)}function a(e){const{baseUrl:t}=window,n=Array.isArray(e)?r(e):e;return n&&"string"===typeof n&&!n.startsWith(t)&&n.startsWith("/")?r([t,n]):n}function s(e){return e?e.startsWith("/")?e:"/"+e:e}function c(e){return e?`url('${a(e)}')`:void 0}function l(e){return new Promise((t,n)=>{const i=new Image;i.src=e,i.onerror=n,i.onload=()=>t({width:i.width,height:i.height})})}n.d(t,"e",(function(){return i})),n.d(t,"a",(function(){return o})),n.d(t,"c",(function(){return a})),n.d(t,"d",(function(){return s})),n.d(t,"f",(function(){return c})),n.d(t,"b",(function(){return l}))},"7ac6":function(e,t,n){},"7d8d":function(e){e.exports=JSON.parse('{"view-in":"日本語で表示","continue-viewing":"日本語で表示を続ける","language":"言語","video":{"replay":"リプレイ","play":"再生","pause":"一時停止","watch":"概要のビデオを観る"},"tutorials":{"title":"チュートリアル | チュートリアル","step":"手順{number}","submit":"送信","next":"次へ","preview":{"title":"プレビューなし | プレビュー | プレビュー","no-preview-available-step":"この手順では利用可能なプレビューがありません。"},"nav":{"chapters":"章","current":"現在の{thing}"},"assessment":{"check-your-understanding":"理解度を確認する","success-message":"よくできました。このチュートリアルの問題にすべて回答しました。","answer-number-is":"問題番号{index}は","correct":"正解です","incorrect":"不正解です","next-question":"次の問題"},"project-files":"プロジェクトファイル","estimated-time":"予測時間","sections":{"chapter":"{number}章"},"question-of":"{total}問中の{index}問","section-of":"{total}件中の{number}件","overriding-title":"{title}の{newTitle}","time":{"format":"{number} {minutes}","minutes":{"full":"分 | 分 | {count}分","short":"分 | 分"},"hours":{"full":"時間 | 時間"}}},"documentation":{"title":"ドキュメント","nav":{"breadcrumbs":"パンくずリスト","menu":"メニュー","open-menu":"メニューを開く","close-menu":"メニューを閉じる"},"current-page":"現在のページは{title}です","card":{"learn-more":"詳しい情報","read-article":"記事を読む","start-tutorial":"チュートリアルを開始","view-api":"APIのコレクションを表示","view-symbol":"記号を表示","view-sample-code":"サンプルコードを表示"}},"aside-kind":{"beta":"ベータ版","experiment":"試験運用版","important":"重要","note":"注意","tip":"ヒント","warning":"警告","deprecated":"非推奨"},"change-type":{"added":"追加","modified":"変更","deprecated":"非推奨"},"verbs":{"hide":"非表示","show":"表示","close":"閉じる"},"sections":{"title":"セクション{number}","on-this-page":"このページの内容","topics":"トピック","default-implementations":"デフォルト実装","relationships":"関連項目","see-also":"参照","declaration":"宣言","details":"詳細","parameters":"パラメータ","possible-values":"使用できる値","parts":"パーツ","availability":"利用可能","resources":"リソース"},"metadata":{"details":{"name":"名前","key":"キー","type":"タイプ"},"beta":{"legal":"このドキュメントはベータ版のソフトウェアのもので、変更される可能性があります。","software":"ベータ版ソフトウェア"},"default-implementation":"デフォルト実装あり。| デフォルト実装あり。"},"availability":{"introduced-and-deprecated":"{name} {introducedAt}で導入され、{name} {deprecatedAt}で非推奨になりました","available-on":"{name} {introducedAt}以降で使用できます"},"more":"さらに表示","less":"表示を減らす","api-reference":"APIリファレンス","filter":{"title":"フィルタ","search-symbols":"{technology}でシンボルを検索","suggested-tags":"提案されたタグ | 提案されたタグ","selected-tags":"選択したタグ | 選択したタグ","add-tag":"タグを追加","tag-select-remove":"タグ。選択してリストから削除します。","navigate":"シンボルを移動するには、上下左右の矢印キーを押します。","siblings-label":"{total-siblings}個中{number-siblings}個のシンボルが{parent-siblings}の中にあります","parent-label":"{total-siblings}個中{number-siblings}個のシンボルが1個のシンボルを含む{parent-siblings}の中にあります | {total-siblings}個中{number-siblings}個のシンボルが{number-parent}個のシンボルを含む{parent-siblings}の中にあります","reset-filter":"フィルタをリセット"},"navigator":{"title":"ドキュメントナビゲータ","open-navigator":"ドキュメントナビゲータを開く","close-navigator":"ドキュメントナビゲータを閉じる","no-results":"結果が見つかりません。","no-children":"使用できるデータがありません。","error-fetching":"データを取得する際にエラーが起きました。","items-found":"項目が見つかりません | 1個の項目が見つかりました | {number}個の項目が見つかりましたTabキーを押すと項目をナビゲートできます。","navigator-is":"ナビゲータは{state}です","state":{"loading":"読み込み中","ready":"準備完了"},"tags":{"hide-deprecated":"非推奨の項目を非表示"}},"tab":{"request":"リクエスト","response":"レスポンス"},"required":"必須","parameters":{"default":"デフォルト","minimum":"最小","maximum":"最大","possible-types":"タイプ | 使用できるタイプ","possible-values":"値 | 使用できる値"},"content-type":"Content-Type: {value}","read-only":"読み出し専用","error":{"unknown":"原因不明のエラーが起きました。","image":"イメージを読み込めませんでした"},"color-scheme":{"select":"カラースキーム環境設定を選択","auto":"自動","dark":"ダーク","light":"ライト"},"accessibility":{"strike":{"start":"取り消し線テキストの開始","end":"取り消し線テキストの終了"},"code":{"start":"コードブロックの開始","end":"コードブロックの終了"},"skip-navigation":"ナビゲーションをスキップ"},"select-language":"このページの言語を選択","icons":{"clear":"消去","web-service-endpoint":"Webサービスのエンドポイント","search":"検索"},"formats":{"parenthesis":"({content})","colon":"{content}: "},"quicknav":{"button":{"label":"クイックナビゲーションを開く","title":"クリックするか「/」を入力すると素早く移動します"}}}')},"821b":function(e,t,n){"use strict";t["a"]={auto:"auto",dark:"dark",light:"light"}},"942d":function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"e",(function(){return r})),n.d(t,"d",(function(){return a})),n.d(t,"a",(function(){return s}));const i=52,o=48,r="nav-sticky-anchor",a="nav-open-navigator",s={noClose:"noclose"}},"94a8":function(e){e.exports=JSON.parse('{"view-in":"View in English","continue-viewing":"Continue viewing in English","language":"Language","video":{"replay":"Replay","play":"Play","pause":"Pause","watch":"Watch intro video"},"tutorials":{"title":"Tutorial | Tutorials","step":"Step {number}","submit":"Submit","next":"Next","preview":{"title":"No Preview | Preview | Previews","no-preview-available-step":"No preview available for this step."},"nav":{"chapters":"Chapters","current":"Current {thing}"},"assessment":{"check-your-understanding":"Check Your Understanding","success-message":"Great job, you\'ve answered all the questions for this tutorial.","answer-number-is":"Answer number {index} is","correct":"correct","incorrect":"incorrect","next-question":"Next question"},"project-files":"Project files","estimated-time":"Estimated Time","sections":{"chapter":"Chapter {number}"},"question-of":"Question {index} of {total}","section-of":"{number} of {total}","overriding-title":"{newTitle} with {title}","time":{"format":"{number} {minutes}","minutes":{"full":"minute | minutes | {count} minutes","short":"min | mins"},"hours":{"full":"hour | hours"}}},"documentation":{"title":"Documentation","nav":{"breadcrumbs":"Breadcrumbs","menu":"Menu","open-menu":"Open Menu","close-menu":"Close Menu"},"current-page":"Current page is {title}","card":{"learn-more":"Learn More","read-article":"Read article","start-tutorial":"Start tutorial","view-api":"View API collection","view-symbol":"View symbol","view-sample-code":"View sample code"}},"aside-kind":{"beta":"Beta","experiment":"Experiment","important":"Important","note":"Note","tip":"Tip","warning":"Warning","deprecated":"Deprecated"},"change-type":{"added":"Added","modified":"Modified","deprecated":"Deprecated"},"verbs":{"hide":"Hide","show":"Show","close":"Close"},"sections":{"title":"Section {number}","on-this-page":"On this page","topics":"Topics","default-implementations":"Default Implementations","relationships":"Relationships","see-also":"See Also","declaration":"Declaration","details":"Details","parameters":"Parameters","possible-values":"Possible Values","parts":"Parts","availability":"Availability","resources":"Resources"},"metadata":{"details":{"name":"Name","key":"Key","type":"Type"},"beta":{"legal":"This documentation refers to beta software and may be changed.","software":"Beta Software"},"default-implementation":"Default implementation provided. | Default implementations provided."},"availability":{"introduced-and-deprecated":"Introduced in {name} {introducedAt} and deprecated in {name} {deprecatedAt}","available-on":"Available on {name} {introducedAt} and later"},"more":"More","less":"Less","api-reference":"API Reference","filter":{"title":"Filter","search-symbols":"Search symbols in {technology}","suggested-tags":"Suggested tag | Suggested tags","selected-tags":"Selected tag | Selected tags","add-tag":"Add tag","tag-select-remove":"Tag. Select to remove from list.","navigate":"To navigate the symbols, press Up Arrow, Down Arrow, Left Arrow or Right Arrow","siblings-label":"{number-siblings} of {total-siblings} symbols inside {parent-siblings}","parent-label":"{number-siblings} of {total-siblings} symbols inside {parent-siblings} containing one symbol | {number-siblings} of {total-siblings} symbols inside {parent-siblings} containing {number-parent} symbols","reset-filter":"Reset Filter"},"navigator":{"title":"Documentation Navigator","open-navigator":"Open Documentation Navigator","close-navigator":"Close Documentation Navigator","no-results":"No results found.","no-children":"No data available.","error-fetching":"There was an error fetching the data.","items-found":"No items were found | 1 item was found | {number} items were found. Tab back to navigate through them.","navigator-is":"Navigator is {state}","state":{"loading":"loading","ready":"ready"},"tags":{"hide-deprecated":"Hide Deprecated"}},"tab":{"request":"Request","response":"Response"},"required":"Required","parameters":{"default":"Default","minimum":"Minimum","maximum":"Maximum","possible-types":"Type | Possible types","possible-values":"Value | Possible Values"},"content-type":"Content-Type: {value}","read-only":"Read-only","error":{"unknown":"An unknown error occurred.","image":"Image failed to load","not-found":"The page you\'re looking for can\'t be found."},"color-scheme":{"select":"Select a color scheme preference","auto":"Auto","dark":"Dark","light":"Light"},"accessibility":{"strike":{"start":"start of stricken text","end":"end of stricken text"},"code":{"start":"start of code block","end":"end of code block"},"skip-navigation":"Skip Navigation","in-page-link":"in page link"},"select-language":"Select the language for this page","icons":{"clear":"Clear","web-service-endpoint":"Web Service Endpoint","search":"Search"},"formats":{"parenthesis":"({content})","colon":"{content}: "},"quicknav":{"button":{"label":"Open Quick Navigation","title":"Click or type / for quick navigation"}}}')},9895:function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o}));const i="not-found",o="documentation-topic"},9923:function(e,t,n){"use strict";n.r(t),n.d(t,"defaultLocale",(function(){return a})),n.d(t,"messages",(function(){return s}));var i=n("94a8"),o=n("d9c4"),r=n("7d8d");const a="en-US",s={"en-US":i,"zh-CN":o,"ja-JP":r}},"9b56":function(e,t,n){"use strict";n.d(t,"a",(function(){return s})),n.d(t,"b",(function(){return l})),n.d(t,"c",(function(){return u}));var i=n("3ca7"),o=n("9923"),r=n("2788");const a=i.reduce((e,t)=>({...e,[t.slug]:t.code}),{});function s(e){return a[e]}function c(e){return!!a[e]}function l(e){return{params:{locale:e===o["defaultLocale"]?void 0:e}}}function u(e=o["defaultLocale"],t){if(!c(e))return;t.$i18n.locale=e;const n=s(e);Object(r["b"])(n)}},"9c0c":function(e,t,n){},"9dba":function(e,t,n){"use strict";n("3502")},a2be:function(e,t,n){"use strict";n("01da")},a3e8:function(e,t,n){},a919:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"close-icon",attrs:{viewBox:"0 0 14 14",themeId:"close"}},[n("path",{attrs:{d:"M12.73,0l1.27,1.27-5.74,5.73,5.72,5.72-1.27,1.27-5.72-5.72L1.28,13.99,.01,12.72,5.72,7.01,0,1.28,1.27,.01,6.99,5.73,12.73,0Z"}})])},o=[],r=n("be08"),a={name:"CloseIcon",components:{SVGIcon:r["a"]}},s=a,c=n("2877"),l=Object(c["a"])(s,i,o,!1,null,null,null);t["a"]=l.exports},be08:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("svg",{staticClass:"svg-icon",attrs:{"aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[e.themeOverrideURL?n("use",{attrs:{href:e.themeOverrideURL+"#"+e.themeId,width:"100%",height:"100%"}}):e._t("default")],2)},o=[],r=n("6842"),a={name:"SVGIcon",props:{themeId:{type:String,required:!1},iconUrl:{type:String,default:null}},computed:{themeOverrideURL:({iconUrl:e,themeId:t})=>e||Object(r["c"])(["theme","icons",t],void 0)}},s=a,c=(n("c2c4"),n("2877")),l=Object(c["a"])(s,i,o,!1,null,"33d3200a",null);t["a"]=l.exports},c2c4:function(e,t,n){"use strict";n("161e")},c83d:function(e,t,n){},d26a:function(e,t,n){"use strict";n.d(t,"d",(function(){return r})),n.d(t,"b",(function(){return a})),n.d(t,"a",(function(){return s})),n.d(t,"c",(function(){return c})),n.d(t,"e",(function(){return l}));var i=n("748c"),o={input:"input",tags:"tags"};function r(e={}){return Object.entries(e).reduce((e,[t,n])=>n?e.concat(`${encodeURIComponent(t)}=${encodeURIComponent(n)}`):e,[]).join("&")}function a(e,{changes:t,language:n,context:i}={}){const[o,a]=e.split("#"),s=o.match(/\?.*/),c=r({changes:t,language:n,context:i}),l=s?"&":"?",u=a?o:e,h=c?`${l}${c}`:"",d=a?"#"+a:"";return`${u}${h}${d}`}function s(e,t){const{query:{changes:n,[o.input]:i,[o.tags]:r,...a}={}}=e,{query:{changes:s,[o.input]:c,[o.tags]:l,...u}={}}=t;return e.name===t.name&&JSON.stringify({path:e.path,query:a})===JSON.stringify({path:t.path,query:u})}function c(e,t=window.location.href){return new URL(Object(i["c"])(e),t)}function l(e,t){return c(e,t).href}},d369:function(e,t,n){"use strict";var i=n("5d2d");const o={preferredColorScheme:"developer.setting.preferredColorScheme",preferredLocale:"developer.setting.preferredLocale",preferredLanguage:"docs.setting.preferredLanguage"},r={preferredColorScheme:"docs.setting.preferredColorScheme"};t["a"]=Object.defineProperties({},Object.keys(o).reduce((e,t)=>({...e,[t]:{get:()=>{const e=r[t],n=i["a"].getItem(o[t]);return e?n||i["a"].getItem(e):n},set:e=>i["a"].setItem(o[t],e)}}),{}))},d9c4:function(e){e.exports=JSON.parse('{"view-in":"以中文查看","continue-viewing":"继续以中文查看","language":"语言","video":{"replay":"重新播放","play":"播放","pause":"暂停","watch":"观看介绍视频"},"tutorials":{"title":"教程","step":"第 {number} 步","submit":"提交","next":"下一步","preview":{"title":"无预览 | 预览","no-preview-available-step":"这一步没有预览。"},"nav":{"chapters":"章节","current":"当前{thing}"},"assessment":{"check-your-understanding":"检查你的理解程度","success-message":"很棒,你回答了此教程的所有问题。","answer-number-is":"第 {index} 个答案","correct":"正确","incorrect":"错误","next-question":"下一个问题"},"project-files":"项目文件","estimated-time":"预计时间","sections":{"chapter":"第 {number} 章"},"question-of":"第 {index} 个问题(共 {total} 个)","section-of":"{number}/{total}","overriding-title":"{newTitle}{title}","time":{"format":"{number} {minutes}","minutes":{"full":"分钟 | {count} 分钟","short":"分钟"},"hours":{"full":"小时"}}},"documentation":{"title":"文档","nav":{"breadcrumbs":"面包屑导航","menu":"菜单","open-menu":"打开菜单","close-menu":"关闭菜单"},"current-page":"当前页面为:{title}","card":{"learn-more":"进一步了解","read-article":"阅读文章","start-tutorial":"开始教程","view-api":"查看 API 集合","view-symbol":"查看符号","view-sample-code":"查看示例代码"}},"aside-kind":{"beta":"Beta 版","experiment":"试验","important":"重要事项","note":"注","tip":"提示","warning":"警告","deprecated":"已弃用"},"change-type":{"added":"已添加","modified":"已修改","deprecated":"已弃用"},"verbs":{"hide":"隐藏","show":"显示","close":"关闭"},"sections":{"title":"第 {number} 部分","on-this-page":"在此页面上","topics":"主题","default-implementations":"默认实现","relationships":"关系","see-also":"另请参阅","declaration":"声明","details":"详细信息","parameters":"参数","possible-values":"可能值","parts":"部件","availability":"可用性","resources":"资源"},"metadata":{"details":{"name":"名称","key":"密钥","type":"类型"},"beta":{"legal":"此文档涉及 Beta 版软件且可能会改动。","software":"Beta 版软件"},"default-implementation":"提供默认实现。| 提供默认实现方法。"},"availability":{"introduced-and-deprecated":"{name} {introducedAt} 中引入,{name} {deprecatedAt} 中弃用","available-on":"{name} {introducedAt} 及更高版本中可用"},"more":"更多","less":"更少","api-reference":"API 参考","filter":{"title":"过滤","search-symbols":"在 {technology} 搜索符号","suggested-tags":"建议标签","selected-tags":"所选标签","add-tag":"添加标签","tag-select-remove":"标签。选择以从列表中移除。","navigate":"若要导航符号,请按下上箭头、下箭头、左箭头或右箭头。","siblings-label":"{parent-siblings} 内含 {number-siblings} 个符号(共 {total-siblings} 个)","parent-label":"{parent-siblings} 内含 {number-siblings} 个符号(共 {total-siblings} 个)包含一个符号 | {parent-siblings} 内含 {number-siblings} 个符号(共 {total-siblings} 个)包含 {number-parent} 个符号","reset-filter":"还原过滤条件"},"navigator":{"title":"文档导航器","open-navigator":"打开文档导航器","close-navigator":"关闭文档导航器","no-results":"未找到结果。","no-children":"无可用数据。","error-fetching":"获取数据时出错。","items-found":"未找到任何项目 | 找到 1 个项目 | 找到 {number} 个项目。按下 Tab 键导航。","navigator-is":"导航器{state}","state":{"loading":"正在载入","ready":"准备就绪"},"tags":{"hide-deprecated":"隐藏已弃用"}},"tab":{"request":"请求","response":"回复"},"required":"必需","parameters":{"default":"默认","minimum":"最小值","maximum":"最大值","possible-types":"类型 | 可能类型","possible-values":"值 | 可能值"},"content-type":"内容类型:{value}","read-only":"只读","error":{"unknown":"出现未知错误。","image":"图像无法载入"},"color-scheme":{"select":"选择首选颜色方案","auto":"自动","dark":"深色","light":"浅色"},"accessibility":{"strike":{"start":"删除线文本开始","end":"删除线文本结束"},"code":{"start":"代码块开头","end":"代码块结尾"},"skip-navigation":"跳过导航"},"select-language":"选择此页面的语言","icons":{"clear":"清除","web-service-endpoint":"网络服务端点","search":"搜索"},"formats":{"parenthesis":"({content})","colon":"{content}: "},"quicknav":{"button":{"label":"打开快速导航","title":"点按或键入 / 进行快速导航"}}}')},dd18:function(e,t,n){"use strict";t["a"]={eager:"eager",lazy:"lazy"}},e425:function(e,t,n){"use strict";var i=n("821b"),o=n("dd18"),r=n("d369"),a=n("3ca7");const s="undefined"!==typeof window.matchMedia&&[i["a"].light,i["a"].dark,"no-preference"].some(e=>window.matchMedia(`(prefers-color-scheme: ${e})`).matches),c=s?i["a"].auto:i["a"].light;t["a"]={state:{imageLoadingStrategy:"ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET?o["a"].eager:o["a"].lazy,preferredColorScheme:r["a"].preferredColorScheme||c,preferredLocale:r["a"].preferredLocale,supportsAutoColorScheme:s,systemColorScheme:i["a"].light,availableLocales:[]},reset(){this.state.imageLoadingStrategy="ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET?o["a"].eager:o["a"].lazy,this.state.preferredColorScheme=r["a"].preferredColorScheme||c,this.state.supportsAutoColorScheme=s,this.state.systemColorScheme=i["a"].light},setImageLoadingStrategy(e){this.state.imageLoadingStrategy=e},setPreferredColorScheme(e){this.state.preferredColorScheme=e,r["a"].preferredColorScheme=e},setAllLocalesAreAvailable(){const e=a.map(e=>e.code);this.state.availableLocales=e},setAvailableLocales(e=[]){this.state.availableLocales=e},setPreferredLocale(e){this.state.preferredLocale=e,r["a"].preferredLocale=this.state.preferredLocale},setSystemColorScheme(e){this.state.systemColorScheme=e},syncPreferredColorScheme(){r["a"].preferredColorScheme&&r["a"].preferredColorScheme!==this.state.preferredColorScheme&&(this.state.preferredColorScheme=r["a"].preferredColorScheme)}}},e487:function(e,t,n){},e759:function(e,t,n){"use strict";n("3be4")},e9e6:function(e,t,n){"use strict";n("7ac6")},ed78:function(e,t,n){"use strict";n("c83d")},ed96:function(e,t,n){n.p=window.baseUrl},f161:function(e,t,n){"use strict";n.r(t);n("ed96");var i=n("2b0e"),o=n("a925"),r=n("8c4f"),a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:{fromkeyboard:e.fromKeyboard,hascustomheader:e.hasCustomHeader},attrs:{id:"app"}},[n("div",{attrs:{id:e.AppTopID}}),e.isTargetIDE?e._e():n("a",{attrs:{href:"#main",id:"skip-nav"}},[e._v(e._s(e.$t("accessibility.skip-navigation")))]),n("InitialLoadingPlaceholder"),e._t("header",(function(){return[e.enablei18n?n("SuggestLang"):e._e(),e.hasCustomHeader?n("custom-header",{attrs:{"data-color-scheme":e.preferredColorScheme}}):e._e()]}),{isTargetIDE:e.isTargetIDE}),n("div",{attrs:{id:e.baseNavStickyAnchorId}}),e._t("default",(function(){return[n("router-view",{staticClass:"router-content"}),e.hasCustomFooter?n("custom-footer",{attrs:{"data-color-scheme":e.preferredColorScheme}}):e.isTargetIDE?e._e():n("Footer",{scopedSlots:e._u([{key:"default",fn:function(t){var i=t.className;return[e.enablei18n?n("div",{class:i},[n("LocaleSelector")],1):e._e()]}}])})]}),{isTargetIDE:e.isTargetIDE}),e._t("footer",null,{isTargetIDE:e.isTargetIDE})],2)},s=[],c=n("e425"),l=n("821b"),u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("footer",{staticClass:"footer"},[n("div",{staticClass:"row"},[n("ColorSchemeToggle")],1),e._t("default",null,{className:"row"})],2)},h=[],d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"color-scheme-toggle",attrs:{"aria-label":e.$t("color-scheme.select"),role:"radiogroup"}},e._l(e.options,(function(t){return n("label",{key:t},[n("input",{attrs:{type:"radio"},domProps:{checked:t==e.preferredColorScheme,value:t},on:{input:e.setPreferredColorScheme}}),n("div",{staticClass:"text"},[e._v(e._s(e.$t("color-scheme."+t)))])])})),0)},g=[],m={name:"ColorSchemeToggle",data:()=>({appState:c["a"].state}),computed:{options:({supportsAutoColorScheme:e})=>[l["a"].light,l["a"].dark,...e?[l["a"].auto]:[]],preferredColorScheme:({appState:e})=>e.preferredColorScheme,supportsAutoColorScheme:({appState:e})=>e.supportsAutoColorScheme},methods:{setPreferredColorScheme:e=>{c["a"].setPreferredColorScheme(e.target.value)}},watch:{preferredColorScheme:{immediate:!0,handler(e){document.body.dataset.colorScheme=e}}}},p=m,f=(n("9dba"),n("2877")),b=Object(f["a"])(p,d,g,!1,null,"02a6f6ec",null),v=b.exports,w={name:"Footer",components:{ColorSchemeToggle:v}},y=w,j=(n("e9e6"),Object(f["a"])(y,u,h,!1,null,"4e049dbd",null)),S=j.exports,E=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.loaded?e._e():n("div",{staticClass:"InitialLoadingPlaceholder",attrs:{id:"loading-placeholder"}})},C=[],_={name:"InitialLoadingPlaceholder",data(){return{loaded:!1}},created(){const e=()=>{this.loaded=!0};this.$router.onReady(e,e)}},P=_,k=(n("48b1"),Object(f["a"])(P,E,C,!1,null,"35c356b6",null)),L=k.exports,A=n("942d"),T=n("6842");function x(e,t){return e&&"object"===typeof e&&Object.prototype.hasOwnProperty.call(e,t)&&"string"===typeof e[t]}function O(e,t,n,i){if(!t||"object"!==typeof t||i&&(x(t,"light")||x(t,"dark"))){let o=t;if(x(t,i)&&(o=t[i]),"object"===typeof o)return;n[e]=o}else Object.entries(t).forEach(([t,o])=>{const r=[e,t].join("-");O(r,o,n,i)})}function I(e,t="light"){const n={},i=e||{};return O("-",i,n,t),n}var $=n("4009"),D=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.displaySuggestLang?n("div",{staticClass:"suggest-lang"},[n("div",{staticClass:"suggest-lang__wrapper"},[n("router-link",{staticClass:"suggest-lang__link",attrs:{to:e.getLocaleParam(e.preferredLocale),lang:e.getCodeForSlug(e.preferredLocale)},nativeOn:{click:function(t){return e.setPreferredLocale(e.preferredLocale)}}},[e._v(e._s(e.$i18n.messages[e.preferredLocale]["view-in"])),n("InlineChevronRightIcon",{staticClass:"icon-inline"})],1),n("div",{staticClass:"suggest-lang__close-icon-wrapper"},[n("button",{staticClass:"suggest-lang__close-icon-button",attrs:{"aria-label":e.$t("continue-viewing")},on:{click:function(t){return e.setPreferredLocale(e.$i18n.locale)}}},[n("CloseIcon",{staticClass:"icon-inline"})],1)])],1)]):e._e()},N=[],R=n("34b0"),U=n("a919"),q=n("3ca7"),V=n("9b56"),B={name:"SuggestLang",components:{InlineChevronRightIcon:R["a"],CloseIcon:U["a"]},computed:{preferredLocale:()=>{const e=c["a"].state.preferredLocale;if(e)return e;const t=q.find(e=>{const t=e.code.split("-")[0],n=window.navigator.language.split("-")[0];return n===t});return t?t.slug:null},displaySuggestLang:({preferredLocale:e,$i18n:t})=>e&&t.locale!==e},methods:{setPreferredLocale:e=>{c["a"].setPreferredLocale(e)},getCodeForSlug:V["a"],getLocaleParam:V["b"]}},M=B,W=(n("ed78"),Object(f["a"])(M,D,N,!1,null,"ad72c62e",null)),F=W.exports,G=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"locale-selector"},[n("select",{attrs:{"aria-label":e.$t("select-language")},domProps:{value:e.$i18n.locale},on:{change:e.updateRouter}},e._l(e.locales,(function(t){var i=t.slug,o=t.name,r=t.code;return n("option",{key:i,attrs:{lang:r},domProps:{value:i}},[e._v(" "+e._s(o)+" ")])})),0),n("ChevronThickIcon",{staticClass:"icon-inline"})],1)},H=[],J=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"chevron-thick-icon",attrs:{viewBox:"0 0 14 10.5",themeId:"chevron-thick"}},[n("path",{attrs:{d:"M12.43,0l1.57,1.22L7,10.5,0,1.23,1.58,0,7,7,12.43,0Z"}})])},K=[],z=n("be08"),Y={name:"ChevronThickIcon",components:{SVGIcon:z["a"]}},Q=Y,Z=Object(f["a"])(Q,J,K,!1,null,null,null),X=Z.exports,ee={name:"LocaleSelector",components:{ChevronThickIcon:X},methods:{updateRouter({target:{value:e}}){this.$router.push(Object(V["b"])(e)),c["a"].setPreferredLocale(e),Object(V["c"])(e,this)}},computed:{availableLocales:()=>c["a"].state.availableLocales,locales:({availableLocales:e})=>q.filter(({code:t})=>e.includes(t))}},te=ee,ne=(n("e759"),Object(f["a"])(te,G,H,!1,null,"7e4d9b69",null)),ie=ne.exports,oe={name:"CoreApp",components:{Footer:S,InitialLoadingPlaceholder:L,SuggestLang:F,LocaleSelector:ie},provide(){return{isTargetIDE:this.isTargetIDE,performanceMetricsEnabled:"true"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_PERFORMANCE_ENABLED}},data(){return{AppTopID:$["a"],appState:c["a"].state,fromKeyboard:!1,isTargetIDE:"ide"===Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET,themeSettings:T["d"],baseNavStickyAnchorId:A["e"]}},computed:{currentColorScheme:({appState:e})=>e.systemColorScheme,preferredColorScheme:({appState:e})=>e.preferredColorScheme,availableLocales:({appState:e})=>e.availableLocales,CSSCustomProperties:({currentColorScheme:e,preferredColorScheme:t,themeSettings:n})=>I(n.theme,t===l["a"].auto?e:t),hasCustomHeader:()=>!!window.customElements.get("custom-header"),hasCustomFooter:()=>!!window.customElements.get("custom-footer"),enablei18n:({availableLocales:e})=>Object(T["c"])(["features","docs","i18n","enable"],!1)&&e.length>1},props:{enableThemeSettings:{type:Boolean,default:!0}},watch:{CSSCustomProperties:{immediate:!0,handler(e){this.detachStylesFromRoot(e),this.attachStylesToRoot(e)}}},async created(){window.addEventListener("keydown",this.onKeyDown),this.$bridge.on("navigation",this.handleNavigationRequest),this.enableThemeSettings&&Object.assign(this.themeSettings,await Object(T["b"])()),window.addEventListener("pageshow",this.syncPreferredColorScheme),this.$once("hook:beforeDestroy",()=>{window.removeEventListener("pageshow",this.syncPreferredColorScheme)})},mounted(){(document.querySelector(".footer-current-year")||{}).innerText=(new Date).getFullYear(),this.attachColorSchemeListeners()},beforeDestroy(){this.fromKeyboard?window.removeEventListener("mousedown",this.onMouseDown):window.removeEventListener("keydown",this.onKeyDown),this.$bridge.off("navigation",this.handleNavigationRequest),this.detachStylesFromRoot(this.CSSCustomProperties)},methods:{onKeyDown(){this.fromKeyboard=!0,window.addEventListener("mousedown",this.onMouseDown),window.removeEventListener("keydown",this.onKeyDown)},onMouseDown(){this.fromKeyboard=!1,window.addEventListener("keydown",this.onKeyDown),window.removeEventListener("mousedown",this.onMouseDown)},handleNavigationRequest(e){this.$router.push(e)},attachColorSchemeListeners(){if(!window.matchMedia)return;const e=window.matchMedia("(prefers-color-scheme: dark)");e.addListener(this.onColorSchemePreferenceChange),this.$once("hook:beforeDestroy",()=>{e.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(e)},onColorSchemePreferenceChange({matches:e}){const t=e?l["a"].dark:l["a"].light;c["a"].setSystemColorScheme(t)},attachStylesToRoot(e){const t=document.body;Object.entries(e).filter(([,e])=>Boolean(e)).forEach(([e,n])=>{t.style.setProperty(e,n)})},detachStylesFromRoot(e){const t=document.body;Object.entries(e).forEach(([e])=>{t.style.removeProperty(e)})},syncPreferredColorScheme(){c["a"].syncPreferredColorScheme()}}},re=oe,ae=(n("5c0b"),n("a2be"),Object(f["a"])(re,a,s,!1,null,"7d594ed9",null)),se=ae.exports;class ce{constructor(){this.$send=()=>{}}send(e){this.$send(e)}}class le{constructor(){const{webkit:{messageHandlers:{bridge:e={}}={}}={}}=window;this.bridge=e;const{postMessage:t=(()=>{})}=e;this.$send=t.bind(e)}send(e){this.$send(e)}}class ue{constructor(e=new ce){this.backend=e,this.listeners={}}send(e){this.backend.send(e)}receive(e){this.emit(e.type,e.data)}emit(e,t){this.listeners[e]&&this.listeners[e].forEach(e=>e(t))}on(e,t){this.listeners[e]||(this.listeners[e]=new Set),this.listeners[e].add(t)}off(e,t){this.listeners[e]&&this.listeners[e].delete(t)}}var he={install(e,t){let n;n=t.performanceMetricsEnabled||"ide"===t.appTarget?new le:new ce,e.prototype.$bridge=new ue(n)}};function de(e){return"custom-"+e}function ge(e){return class extends HTMLElement{constructor(){super();const t=this.attachShadow({mode:"open"}),n=e.content.cloneNode(!0);t.appendChild(n)}}}function me(e){const t=de(e),n=document.getElementById(t);n&&window.customElements.define(t,ge(n))}function pe(e,t={names:["header","footer"]}){const{names:n}=t;e.config.ignoredElements=/^custom-/,n.forEach(me)}function fe(e,t){const{value:n=!1}=t;e.style.display=n?"none":""}var be={hide:fe};function ve(e,{performanceMetrics:t=!1}={}){e.config.productionTip=!1,e.use(pe),e.directive("hide",be.hide),e.use(he,{appTarget:Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET,performanceMetricsEnabled:t}),window.bridge=e.prototype.$bridge,e.config.performance=t}var we=n("9895"),ye=n("63b8"),je=n("3908"),Se=n("002d"),Ee=n("d26a");const Ce=10;function _e(e){const{name:t}=e,n=t.includes(we["a"]);return n?Ce:0}function Pe(){const{location:e}=window;return e.pathname+e.search+e.hash}function ke(){const e=Math.max(document.documentElement.clientWidth||0,window.innerWidth||0);return ePromise.all([n.e("documentation-topic~topic~tutorials-overview"),n.e("tutorials-overview")]).then(n.bind(null,"f025"))},{path:"/tutorials/:id/*",name:"topic",component:()=>Promise.all([n.e("documentation-topic~topic~tutorials-overview"),n.e("documentation-topic~topic"),n.e("topic")]).then(n.bind(null,"3213"))},{path:"/documentation/*",name:we["a"],component:()=>Promise.all([n.e("documentation-topic~topic~tutorials-overview"),n.e("chunk-c0335d80"),n.e("documentation-topic~topic"),n.e("documentation-topic")]).then(n.bind(null,"f8ac"))},{path:"*",name:we["b"],component:Ke},{path:"*",name:"server-error",component:Me}];const Ye=[{pathPrefix:"/:locale?",nameSuffix:"-locale"}];function Qe(e,t=[],n=Ye){return n.reduce((n,i)=>n.concat(e.filter(e=>!t.includes(e.name)).map(e=>({...e,path:i.pathPrefix+e.path,name:e.name+i.nameSuffix}))),[])}const Ze=[...Qe(ze,[we["b"]]),...ze];function Xe(e={}){const t=new r["a"]({mode:"history",base:T["a"],scrollBehavior:Le,...e,routes:e.routes||Ze});return t.onReady(()=>{"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual"),Ae()}),"ide"!==Object({NODE_ENV:"production",VUE_APP_TITLE:"Documentation",BASE_URL:"{{BASE_PATH}}/"}).VUE_APP_TARGET&&t.onError(e=>{const{route:n={path:"/"}}=e;t.replace({name:"server-error",params:[n.path]})}),window.addEventListener("unload",Te),t}var et=n("9923");function tt(e=et){const{defaultLocale:t,messages:n,dateTimeFormats:i={}}=e,r=new o["a"]({dateTimeFormats:i,locale:t,fallbackLocale:t,messages:n});return r}i["default"].use(ve),i["default"].use(r["a"]),i["default"].use(o["a"]),new i["default"]({router:Xe(),render:e=>e(se),i18n:tt()}).$mount("#app")}}); \ No newline at end of file diff --git a/docs/js/topic.8cd0c0c4.js b/docs/js/topic.8cd0c0c4.js new file mode 100644 index 0000000..af0651e --- /dev/null +++ b/docs/js/topic.8cd0c0c4.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["topic"],{"0466":function(e,t,n){},"0503":function(e,t,n){"use strict";n("e38e")},"0c11":function(e,t,n){},"0c14":function(e,t,n){},1006:function(e,t,n){"use strict";n("a95e")},"1dd5":function(e,t,n){"use strict";n("7b17")},"257c":function(e,t,n){"use strict";n("7748")},"2a05":function(e,t,n){},"2f9d":function(e,t,n){"use strict";n("525c")},3213:function(e,t,n){"use strict";n.r(t);var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[e.topicData?n(e.componentFor(e.topicData),e._b({key:e.topicKey,tag:"component",attrs:{hierarchy:e.hierarchy}},"component",e.propsFor(e.topicData),!1)):e._e()],1)},i=[],r=n("25a9"),o=n("a97e");const{BreakpointName:a}=o["a"].constants;var c,l,u={state:{linkableSections:[],breakpoint:a.large,references:{}},addLinkableSection(e){const t={...e,visibility:0};t.sectionNumber=this.state.linkableSections.length,this.state.linkableSections.push(t)},reset(){this.state.linkableSections=[],this.state.breakpoint=a.large,this.state.references={}},updateLinkableSection(e){this.state.linkableSections=this.state.linkableSections.map(t=>e.anchor===t.anchor?{...t,visibility:e.visibility}:t)},updateBreakpoint(e){this.state.breakpoint=e},setReferences(e){this.state.references=e}},d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"article"},[e.isTargetIDE?e._e():n("NavigationBar",{attrs:{chapters:e.hierarchy.modules,technology:e.metadata.category,topic:e.heroTitle||"",rootReference:e.hierarchy.reference,identifierUrl:e.identifierUrl}}),n("main",{attrs:{id:"main",role:"main",tabindex:"0"}},[e._t("above-hero"),e._l(e.sections,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component"},"component",e.propsFor(t),!1))}))],2),n("PortalTarget",{attrs:{name:"modal-destination",multiple:""}})],1)},p=[],h=n("2b88"),m=n("e425"),f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavBase",{attrs:{id:"nav","aria-label":e.technology,hasSolidBackground:""}},[n("template",{slot:"default"},[n("ReferenceUrlProvider",{attrs:{reference:e.rootReference},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.urlWithParams;return n("NavTitleContainer",{attrs:{to:s}},[n("template",{slot:"default"},[e._v(e._s(e.technology))]),n("template",{slot:"subhead"},[e._v(e._s(e.$tc("tutorials.title",2)))])],2)}}])})],1),n("template",{slot:"after-title"},[n("div",{staticClass:"separator"})]),n("template",{slot:"tray"},[n("div",{staticClass:"mobile-dropdown-container"},[n("MobileDropdown",{attrs:{options:e.chapters,sections:e.optionsForSections,currentOption:e.currentSection?e.currentSection.title:""},on:{"select-section":e.onSelectSection}})],1),n("div",{staticClass:"dropdown-container"},[n("PrimaryDropdown",{staticClass:"primary-dropdown",attrs:{options:e.chapters,currentOption:e.topic}}),n("ChevronIcon",{staticClass:"icon-inline"}),e.currentSection?n("SecondaryDropdown",{staticClass:"secondary-dropdown",attrs:{options:e.optionsForSections,currentOption:e.currentSection.title,sectionTracker:e.sectionIndicatorText},on:{"select-section":e.onSelectSection}}):e._e()],1),e._t("tray",null,{siblings:e.chapters.length+e.optionsForSections.length})],2)],2)},v=[],b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"chevron-icon",attrs:{viewBox:"0 0 14 14",themeId:"chevron"}},[n("path",{attrs:{d:"M3.22 1.184l0.325-0.38 7.235 6.201-7.235 6.19-0.325-0.38 6.792-5.811-6.792-5.82z"}})])},g=[],y=n("be08"),C={name:"ChevronIcon",components:{SVGIcon:y["a"]}},w=C,_=n("2877"),k=Object(_["a"])(w,b,g,!1,null,null,null),S=k.exports,x=n("d26a"),T=n("2f34"),I={name:"ReferenceUrlProvider",mixins:[T["a"]],props:{reference:{type:String,required:!0}},computed:{resolvedReference:({references:e,reference:t})=>e[t]||{},url:({resolvedReference:e})=>e.url,title:({resolvedReference:e})=>e.title},render(){return this.$scopedSlots.default({url:this.url,urlWithParams:Object(x["b"])(this.url,this.$route.query),title:this.title,reference:this.resolvedReference})}},A=I,$=Object(_["a"])(A,c,l,!1,null,null,null),O=$.exports,N=n("8a61"),P=n("cbcf"),q=n("653a"),D=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItems",{staticClass:"mobile-dropdown"},e._l(e.options,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(s){var i=s.title;return n("NavMenuItemBase",{staticClass:"chapter-list",attrs:{role:"group"}},[n("p",{staticClass:"chapter-name"},[e._v(e._s(i))]),n("ul",{staticClass:"tutorial-list"},e._l(t.projects,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.url,i=t.urlWithParams,r=t.title;return n("li",{staticClass:"tutorial-list-item"},[n("router-link",{staticClass:"option tutorial",attrs:{to:i,value:r}},[e._v(" "+e._s(r)+" ")]),s===e.$route.path?n("ul",{staticClass:"section-list",attrs:{role:"listbox"}},e._l(e.sections,(function(t){return n("li",{key:t.title},[n("router-link",{class:e.classesFor(t),attrs:{to:{path:t.path,query:e.$route.query},value:t.title},nativeOn:{click:function(n){return e.onClick(t)}}},[e._v(" "+e._s(t.title)+" ")])],1)})),0):e._e()],1)}}],null,!0)})})),1)])}}],null,!0)})})),1)},j=[],R=n("863d"),M=n("9b30"),B={name:"MobileDropdown",components:{NavMenuItems:M["a"],NavMenuItemBase:R["a"],ReferenceUrlProvider:O},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sections:{type:Array,required:!1,default:()=>[]}},methods:{classesFor(e){return["option","section",{active:this.currentOption===e.title},this.depthClass(e)]},depthClass(e){const{depth:t=0}=e;return"depth"+t},onClick(e){this.$emit("select-section",e.path)}}},L=B,E=(n("e688"),Object(_["a"])(L,D,j,!1,null,"154acfbd",null)),F=E.exports,V=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("DropdownCustom",{staticClass:"tutorial-dropdown",attrs:{value:e.currentOption,"aria-label":e.$t("tutorials.nav.current",{thing:e.$t("sections.title")}),isSmall:""},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.closeAndFocusToggler,i=t.contentClasses,r=t.navigateOverOptions,o=t.OptionClass,a=t.ActiveOptionClass;return[n("ul",{staticClass:"options",class:i,attrs:{role:"listbox",tabindex:"0"}},e._l(e.options,(function(t){return n("router-link",{key:t.title,attrs:{to:{path:t.path,query:e.$route.query},custom:""},scopedSlots:e._u([{key:"default",fn:function(i){var c,l=i.navigate;return[n("li",{class:[o,(c={},c[a]=e.currentOption===t.title,c)],attrs:{role:"option",value:t.title,"aria-selected":e.currentOption===t.title,"aria-current":e.ariaCurrent(t.title),tabindex:-1},on:{click:function(n){return e.setActive(t,l,s,n)},keydown:[function(n){return!n.type.indexOf("key")&&e._k(n.keyCode,"enter",13,n.key,"Enter")?null:e.setActive(t,l,s,n)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),r(t,1))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),r(t,-1))}]}},[e._v(" "+e._s(t.title)+" ")])]}}],null,!0)})})),1)]}}])},[n("template",{slot:"toggle-post-content"},[n("span",{staticClass:"section-tracker"},[e._v(e._s(e.sectionTracker))])])],2)},U=[],H=function(){var e,t=this,n=t.$createElement,s=t._self._c||n;return s("BaseDropdown",{staticClass:"dropdown-custom",class:(e={},e[t.OpenedClass]=t.isOpen,e["dropdown-small"]=t.isSmall,e),attrs:{value:t.value},scopedSlots:t._u([{key:"dropdown",fn:function(e){var n=e.dropdownClasses;return[s("span",{staticClass:"visuallyhidden",attrs:{id:"DropdownLabel_"+t._uid}},[t._v(t._s(t.ariaLabel))]),s("button",{ref:"dropdownToggle",staticClass:"form-dropdown-toggle",class:n,attrs:{role:"button",id:"DropdownToggle_"+t._uid,"aria-labelledby":"DropdownLabel_"+t._uid+" DropdownToggle_"+t._uid,"aria-expanded":t.isOpen?"true":"false","aria-haspopup":"true"},on:{click:t.toggleDropdown,keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.closeAndFocusToggler.apply(null,arguments)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))}]}},[s("span",{staticClass:"form-dropdown-title"},[t._v(t._s(t.value))]),t._t("toggle-post-content")],2)]}}],null,!0)},[s("template",{slot:"eyebrow"},[t._t("eyebrow")],2),s("template",{slot:"after"},[t._t("default",null,null,{value:t.value,isOpen:t.isOpen,contentClasses:["form-dropdown-content",{"is-open":t.isOpen}],closeDropdown:t.closeDropdown,onChangeAction:t.onChangeAction,closeAndFocusToggler:t.closeAndFocusToggler,navigateOverOptions:t.navigateOverOptions,OptionClass:t.OptionClass,ActiveOptionClass:t.ActiveOptionClass})],2)],2)},z=[],G=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"form-element"},[e._t("dropdown",(function(){return[n("select",e._b({directives:[{name:"model",rawName:"v-model",value:e.modelValue,expression:"modelValue"}],class:e.dropdownClasses,on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t="_value"in e?e._value:e.value;return t}));e.modelValue=t.target.multiple?n:n[0]}}},"select",e.$attrs,!1),[e._t("default")],2)]}),{dropdownClasses:e.dropdownClasses,value:e.value}),n("InlineChevronDownIcon",{staticClass:"form-icon",attrs:{"aria-hidden":"true"}}),e.$slots.eyebrow?n("span",{staticClass:"form-label",attrs:{"aria-hidden":"true"}},[e._t("eyebrow")],2):e._e(),e._t("after")],2)},W=[],Q=n("7948"),K={name:"BaseDropdown",inheritAttrs:!1,props:{value:{type:String,default:""}},components:{InlineChevronDownIcon:Q["a"]},computed:{modelValue:{get:({value:e})=>e,set(e){this.$emit("input",e)}},dropdownClasses({value:e}){return["form-dropdown",{"form-dropdown-selectnone":""===e,"no-eyebrow":!this.$slots.eyebrow}]}}},X=K,J=(n("ed71"),Object(_["a"])(X,G,W,!1,null,"998803d8",null)),Y=J.exports;const Z="is-open",ee="option",te="option-active";var ne={name:"DropdownCustom",components:{BaseDropdown:Y},constants:{OpenedClass:Z,OptionClass:ee,ActiveOptionClass:te},props:{value:{type:String,default:""},ariaLabel:{type:String,default:""},isSmall:{type:Boolean,default:!1}},data(){return{isOpen:!1,OpenedClass:Z,OptionClass:ee,ActiveOptionClass:te}},mounted(){document.addEventListener("click",this.closeOnLoseFocus)},beforeDestroy(){document.removeEventListener("click",this.closeOnLoseFocus)},methods:{onChangeAction(e){this.$emit("input",e)},toggleDropdown(){this.isOpen?this.closeDropdown():this.openDropdown()},async closeAndFocusToggler(){this.closeDropdown(),await this.$nextTick(),this.$refs.dropdownToggle.focus({preventScroll:!0})},closeDropdown(){this.isOpen=!1,this.$emit("close")},openDropdown(){this.isOpen=!0,this.$emit("open"),this.focusActiveLink()},closeOnLoseFocus(e){!this.$el.contains(e.target)&&this.isOpen&&this.closeDropdown()},navigateOverOptions({target:e},t){const n=this.$el.querySelectorAll("."+ee),s=Array.from(n),i=s.indexOf(e),r=s[i+t];r&&r.focus({preventScroll:!0})},async focusActiveLink(){const e=this.$el.querySelector("."+te);e&&(await this.$nextTick(),e.focus({preventScroll:!0}))}}},se=ne,ie=(n("e84c"),Object(_["a"])(se,H,z,!1,null,"12dd746a",null)),re=ie.exports,oe={name:"SecondaryDropdown",components:{DropdownCustom:re},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sectionTracker:{type:String,required:!1}},methods:{ariaCurrent(e){return this.currentOption===e&&"section"},setActive(e,t,n,s){t(s),this.$emit("select-section",e.path),n()}}},ae=oe,ce=(n("7f7b"),Object(_["a"])(ae,V,U,!1,null,"554d62b6",null)),le=ce.exports,ue=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("DropdownCustom",{staticClass:"tutorial-dropdown",attrs:{value:e.currentOption,"aria-label":e.$t("tutorials.nav.current",{thing:e.$tc("tutorials.title",1)}),isSmall:""},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.closeAndFocusToggler,i=t.contentClasses,r=t.closeDropdown,o=t.navigateOverOptions,a=t.OptionClass,c=t.ActiveOptionClass;return[n("ul",{staticClass:"options",class:i,attrs:{tabindex:"0"}},e._l(e.options,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(i){var l=i.title;return n("li",{staticClass:"chapter-list",attrs:{role:"group"}},[n("p",{staticClass:"chapter-name"},[e._v(e._s(l))]),n("ul",{attrs:{role:"listbox"}},e._l(t.projects,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.urlWithParams,l=t.title;return[n("router-link",{attrs:{to:i,custom:""},scopedSlots:e._u([{key:"default",fn:function(t){var i,u=t.navigate,d=t.isActive;return[n("li",{class:(i={},i[a]=!0,i[c]=d,i),attrs:{role:"option",value:l,"aria-selected":d,"aria-current":!!d&&"tutorial",tabindex:-1},on:{click:function(t){return e.setActive(u,r,t)},keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.setActive(u,r,t)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:s.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),o(t,1))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),o(t,-1))}]}},[e._v(" "+e._s(l)+" ")])]}}],null,!0)})]}}],null,!0)})})),1)])}}],null,!0)})})),1)]}}])})},de=[],pe={name:"PrimaryDropdown",components:{DropdownCustom:re,ReferenceUrlProvider:O},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0}},methods:{setActive(e,t,n){e(n),t()}}},he=pe,me=(n("9938"),Object(_["a"])(he,ue,de,!1,null,"4bddb6e6",null)),fe=me.exports;const ve={title:"Introduction",url:"#introduction",reference:"introduction",sectionNumber:0,depth:0};var be={name:"NavigationBar",components:{NavTitleContainer:q["a"],NavBase:P["a"],ReferenceUrlProvider:O,PrimaryDropdown:fe,SecondaryDropdown:le,MobileDropdown:F,ChevronIcon:S},mixins:[N["a"],T["a"]],props:{chapters:{type:Array,required:!0},technology:{type:String,required:!0},topic:{type:String,required:!0},rootReference:{type:String,required:!0},identifierUrl:{type:String,required:!0}},data(){return{currentSection:ve,tutorialState:this.store.state}},watch:{pageSectionWithHighestVisibility(e){e&&(this.currentSection=e)}},computed:{currentProject(){return this.chapters.reduce((e,{projects:t})=>e.concat(t),[]).find(e=>e.reference===this.identifierUrl)},pageSections(){if(!this.currentProject)return[];const e=[ve].concat(this.currentProject.sections);return this.tutorialState.linkableSections.map((t,n)=>{const s=e[n],i=this.references[s.reference],{url:r,title:o}=i||s;return{...t,title:o,path:r}})},optionsForSections(){return this.pageSections.map(({depth:e,path:t,title:n})=>({depth:e,path:t,title:n}))},pageSectionWithHighestVisibility(){return[...this.pageSections].sort((e,t)=>t.visibility-e.visibility).find(e=>e.visibility>0)},sectionIndicatorText(){const e=this.tutorialState.linkableSections.length-1,{sectionNumber:t}=this.currentSection||{};if(0!==t)return this.$t("tutorials.section-of",{number:t,total:e})}},methods:{onSelectSection(e){const t=e.split("#")[1];this.handleFocusAndScroll(t)}}},ge=be,ye=(n("ea88"),Object(_["a"])(ge,f,v,!1,null,"717bc942",null)),Ce=ye.exports,we=n("bf08"),_e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"body"},[n("BodyContent",{attrs:{content:e.content}})],1)},ke=[],Se=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("article",{staticClass:"body-content"},e._l(e.content,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component",staticClass:"layout"},"component",e.propsFor(t),!1))})),1)},xe=[],Te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"columns",class:e.classes},[e._l(e.columns,(function(t,s){return[n("Asset",{key:t.media,attrs:{identifier:t.media,videoAutoplays:!1}}),t.content?n("ContentNode",{key:s,attrs:{content:t.content}}):e._e()]}))],2)},Ie=[],Ae=n("80e4"),$e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseContentNode",{attrs:{content:e.articleContent}})},Oe=[],Ne=n("5677"),Pe={name:"ContentNode",components:{BaseContentNode:Ne["default"]},props:Ne["default"].props,computed:{articleContent(){return this.map(e=>{switch(e.type){case Ne["default"].BlockType.codeListing:return{...e,showLineNumbers:!0};case Ne["default"].BlockType.heading:{const{anchor:t,...n}=e;return n}default:return e}})}},methods:Ne["default"].methods,BlockType:Ne["default"].BlockType,InlineType:Ne["default"].InlineType},qe=Pe,De=(n("cb8d"),Object(_["a"])(qe,$e,Oe,!1,null,"3cfe1c35",null)),je=De.exports,Re={name:"Columns",components:{Asset:Ae["a"],ContentNode:je},props:{columns:{type:Array,required:!0}},computed:{classes(){return{"cols-2":2===this.columns.length,"cols-3":3===this.columns.length}}}},Me=Re,Be=(n("e9b0"),Object(_["a"])(Me,Te,Ie,!1,null,"30edf911",null)),Le=Be.exports,Ee=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"content-and-media",class:e.classes},[n("ContentNode",{attrs:{content:e.content}}),n("Asset",{attrs:{identifier:e.media}})],1)},Fe=[];const Ve={leading:"leading",trailing:"trailing"};var Ue={name:"ContentAndMedia",components:{Asset:Ae["a"],ContentNode:je},props:{content:je.props.content,media:Ae["a"].props.identifier,mediaPosition:{type:String,default:()=>Ve.trailing,validator:e=>Object.prototype.hasOwnProperty.call(Ve,e)}},computed:{classes(){return{"media-leading":this.mediaPosition===Ve.leading,"media-trailing":this.mediaPosition===Ve.trailing}}},MediaPosition:Ve},He=Ue,ze=(n("1006"),Object(_["a"])(He,Ee,Fe,!1,null,"3fa44f9e",null)),Ge=ze.exports,We=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"full-width"},e._l(e.groups,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:"component",staticClass:"group"},"component",e.propsFor(t),!1),[n("ContentNode",{attrs:{content:t.content}})],1)})),1)},Qe=[],Ke=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.tag,{tag:"component",attrs:{id:e.anchor}},[e._t("default")],2)},Xe=[],Je=n("72e7"),Ye={name:"LinkableElement",mixins:[Je["a"]],inject:{navigationBarHeight:{default(){}},store:{default(){return{addLinkableSection(){},updateLinkableSection(){}}}}},props:{anchor:{type:String,required:!0},depth:{type:Number,default:()=>0},tag:{type:String,default:()=>"div"},title:{type:String,required:!0}},computed:{intersectionRootMargin(){const e=this.navigationBarHeight?`-${this.navigationBarHeight}px`:"0%";return e+" 0% -50% 0%"}},created(){this.store.addLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:0})},methods:{onIntersect(e){const t=Math.min(1,e.intersectionRatio);this.store.updateLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:t})}}},Ze=Ye,et=Object(_["a"])(Ze,Ke,Xe,!1,null,null,null),tt=et.exports;const{BlockType:nt}=je;var st={name:"FullWidth",components:{ContentNode:je,LinkableElement:tt},props:je.props,computed:{groups:({content:e})=>e.reduce((e,t)=>0===e.length||t.type===nt.heading?[...e,{heading:t.type===nt.heading?t:null,content:[t]}]:[...e.slice(0,e.length-1),{heading:e[e.length-1].heading,content:e[e.length-1].content.concat(t)}],[])},methods:{componentFor(e){return e.heading?tt:"div"},depthFor(e){switch(e.level){case 1:case 2:return 0;default:return 1}},propsFor(e){return e.heading?{anchor:e.heading.anchor,depth:this.depthFor(e.heading),title:e.heading.text}:{}}}},it=st,rt=(n("aece"),Object(_["a"])(it,We,Qe,!1,null,"1f2be54b",null)),ot=rt.exports;const at={columns:"columns",contentAndMedia:"contentAndMedia",fullWidth:"fullWidth"};var ct={name:"BodyContent",props:{content:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(at,e))}},methods:{componentFor(e){return{[at.columns]:Le,[at.contentAndMedia]:Ge,[at.fullWidth]:ot}[e.kind]},propsFor(e){const{content:t,kind:n,media:s,mediaPosition:i}=e;return{[at.columns]:{columns:t},[at.contentAndMedia]:{content:t,media:s,mediaPosition:i},[at.fullWidth]:{content:t}}[n]}},LayoutKind:at},lt=ct,ut=(n("1dd5"),Object(_["a"])(lt,Se,xe,!1,null,"4d5a806e",null)),dt=ut.exports,pt={name:"Body",components:{BodyContent:dt},props:dt.props},ht=pt,mt=(n("5237"),Object(_["a"])(ht,_e,ke,!1,null,"6499e2f2",null)),ft=mt.exports,vt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialCTA",e._b({},"TutorialCTA",e.$props,!1))},bt=[],gt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseCTA",e._b({attrs:{label:e.$t("tutorials.next")}},"BaseCTA",e.baseProps,!1))},yt=[],Ct=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"call-to-action"},[n("Row",[n("LeftColumn",[n("span",{staticClass:"label"},[e._v(e._s(e.label))]),n("h2",[e._v(" "+e._s(e.title)+" ")]),e.abstract?n("ContentNode",{staticClass:"description",attrs:{content:[e.abstractParagraph]}}):e._e(),e.action?n("Button",{attrs:{action:e.action}}):e._e()],1),n("RightColumn",{staticClass:"right-column"},[e.media?n("Asset",{staticClass:"media",attrs:{identifier:e.media}}):e._e()],1)],1)],1)},wt=[],_t=n("0f00"),kt=n("620a"),St=n("c081"),xt={name:"CallToAction",components:{Asset:Ae["a"],Button:St["a"],ContentNode:Ne["default"],LeftColumn:{render(e){return e(kt["a"],{props:{span:{large:5,small:12}}},this.$slots.default)}},RightColumn:{render(e){return e(kt["a"],{props:{span:{large:6,small:12}}},this.$slots.default)}},Row:_t["a"]},props:{title:{type:String,required:!0},label:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}},computed:{abstractParagraph(){return{type:"paragraph",inlineContent:this.abstract}}}},Tt=xt,It=(n("c7dd"),Object(_["a"])(Tt,Ct,wt,!1,null,"042a0474",null)),At=It.exports,$t={name:"CallToAction",components:{BaseCTA:At},computed:{baseProps(){return{title:this.title,abstract:this.abstract,action:this.action,media:this.media}}},props:{title:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}}},Ot=$t,Nt=Object(_["a"])(Ot,gt,yt,!1,null,null,null),Pt=Nt.exports,qt={name:"CallToAction",components:{TutorialCTA:Pt},props:Pt.props},Dt=qt,jt=(n("3e1b"),Object(_["a"])(Dt,vt,bt,!1,null,"426a965c",null)),Rt=jt.exports,Mt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialHero",e._b({},"TutorialHero",e.$props,!1))},Bt=[],Lt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"tutorial-hero",attrs:{anchor:"introduction",title:e.sectionTitle}},[n("div",{staticClass:"hero dark"},[e.backgroundImageUrl?n("div",{staticClass:"bg",style:e.bgStyle}):e._e(),e._t("above-title"),n("Row",[n("Column",[n("Headline",{attrs:{level:1}},[e.chapter?n("template",{slot:"eyebrow"},[e._v(e._s(e.chapter))]):e._e(),e._v(" "+e._s(e.title)+" ")],2),e.content||e.video?n("div",{staticClass:"intro"},[e.content?n("ContentNode",{attrs:{content:e.content}}):e._e(),e.video?[n("p",[n("a",{staticClass:"call-to-action",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.toggleCallToActionModal.apply(null,arguments)}}},[e._v(" Watch intro video "),n("PlayIcon",{staticClass:"cta-icon icon-inline"})],1)]),n("GenericModal",{attrs:{visible:e.callToActionModalVisible,isFullscreen:"",theme:"dark"},on:{"update:visible":function(t){e.callToActionModalVisible=t}}},[n("Asset",{directives:[{name:"show",rawName:"v-show",value:e.callToActionModalVisible,expression:"callToActionModalVisible"}],ref:"asset",staticClass:"video-asset",attrs:{identifier:e.video},on:{videoEnded:e.handleVideoEnd}})],1)]:e._e()],2):e._e(),n("Metadata",{staticClass:"metadata",attrs:{projectFilesUrl:e.projectFilesUrl,estimatedTimeInMinutes:e.estimatedTimeInMinutes,xcodeRequirement:e.xcodeRequirementData}})],1)],1)],2)])},Et=[],Ft=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"headline"},[e.$slots.eyebrow?n("span",{staticClass:"eyebrow"},[e._t("eyebrow")],2):e._e(),n("Heading",{staticClass:"heading",attrs:{level:e.level}},[e._t("default")],2)],1)},Vt=[];const Ut=1,Ht=6,zt={type:Number,required:!0,validator:e=>e>=Ut&&e<=Ht},Gt={name:"Heading",render:function(e){return e("h"+this.level,this.$slots.default)},props:{level:zt}};var Wt={name:"Headline",components:{Heading:Gt},props:{level:zt}},Qt=Wt,Kt=(n("3976"),Object(_["a"])(Qt,Ft,Vt,!1,null,"d46a1474",null)),Xt=Kt.exports,Jt=n("c161"),Yt=n("c4dd"),Zt=n("748c"),en=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"metadata"},[e.estimatedTimeInMinutes?n("div",{staticClass:"item",attrs:{"aria-label":"\n "+e.$tc("tutorials.time.minutes.full",e.estimatedTimeInMinutes,{count:e.estimatedTimeInMinutes})+"\n "+e.$t("tutorials.estimated-time")+"\n "}},[n("div",{staticClass:"content",attrs:{"aria-hidden":"true"}},[n("i18n",{staticClass:"duration",attrs:{path:"tutorials.time.format",tag:"div"},scopedSlots:e._u([{key:"number",fn:function(){return[e._v(" "+e._s(e.estimatedTimeInMinutes)+" ")]},proxy:!0},{key:"minutes",fn:function(){return[n("div",{staticClass:"minutes"},[e._v(e._s(e.$tc("tutorials.time.minutes.short",e.estimatedTimeInMinutes))+" ")])]},proxy:!0}],null,!1,3313752798)})],1),n("div",{staticClass:"bottom",attrs:{"aria-hidden":"true"}},[e._v(e._s(e.$t("tutorials.estimated-time")))])]):e._e(),e.projectFilesUrl?n("div",{staticClass:"item"},[n("DownloadIcon",{staticClass:"item-large-icon icon-inline"}),n("div",{staticClass:"content bottom"},[n("a",{staticClass:"content-link project-download",attrs:{href:e.projectFilesUrl}},[e._v(" "+e._s(e.$t("tutorials.project-files"))+" "),n("InlineDownloadIcon",{staticClass:"small-icon icon-inline"})],1)])],1):e._e(),e.xcodeRequirement?n("div",{staticClass:"item"},[n("XcodeIcon",{staticClass:"item-large-icon icon-inline"}),n("div",{staticClass:"content bottom"},[e.isTargetIDE?n("span",[e._v(e._s(e.xcodeRequirement.title))]):n("a",{staticClass:"content-link",attrs:{href:e.xcodeRequirement.url}},[e._v(" "+e._s(e.xcodeRequirement.title)+" "),n("InlineChevronRightIcon",{staticClass:"icon-inline small-icon xcode-icon"})],1)])],1):e._e()])},tn=[],nn=n("de60"),sn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"xcode-icon",attrs:{viewBox:"0 0 14 14",themeId:"xcode"}},[n("path",{attrs:{d:"M2.668 4.452l-1.338-2.229 0.891-0.891 2.229 1.338 1.338 2.228 3.667 3.666 0.194-0.194 2.933 2.933c0.13 0.155 0.209 0.356 0.209 0.576 0 0.497-0.403 0.9-0.9 0.9-0.22 0-0.421-0.079-0.577-0.209l0.001 0.001-2.934-2.933 0.181-0.181-3.666-3.666z"}}),n("path",{attrs:{d:"M11.824 1.277l-0.908 0.908c-0.091 0.091-0.147 0.216-0.147 0.354 0 0.106 0.033 0.205 0.090 0.286l-0.001-0.002 0.058 0.069 0.185 0.185c0.090 0.090 0.215 0.146 0.353 0.146 0.107 0 0.205-0.033 0.286-0.090l-0.002 0.001 0.069-0.057 0.909-0.908c0.118 0.24 0.187 0.522 0.187 0.82 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.577-0.068-0.826-0.189l0.011 0.005-5.5 5.5c0.116 0.238 0.184 0.518 0.184 0.813 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.576-0.068-0.826-0.189l0.011 0.005 0.908-0.909c0.090-0.090 0.146-0.215 0.146-0.353 0-0.107-0.033-0.205-0.090-0.286l0.001 0.002-0.057-0.069-0.185-0.185c-0.091-0.091-0.216-0.147-0.354-0.147-0.106 0-0.205 0.033-0.286 0.090l0.002-0.001-0.069 0.058-0.908 0.908c-0.116-0.238-0.184-0.518-0.184-0.813 0-1.045 0.847-1.892 1.892-1.892 0.293 0 0.571 0.067 0.819 0.186l-0.011-0.005 5.5-5.5c-0.116-0.238-0.184-0.519-0.184-0.815 0-1.045 0.847-1.892 1.892-1.892 0.296 0 0.577 0.068 0.827 0.19l-0.011-0.005z"}})])},rn=[],on={name:"XcodeIcon",components:{SVGIcon:y["a"]}},an=on,cn=Object(_["a"])(an,sn,rn,!1,null,null,null),ln=cn.exports,un=n("34b0"),dn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-download-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},pn=[],hn={name:"InlineDownloadIcon",components:{SVGIcon:y["a"]}},mn=hn,fn=Object(_["a"])(mn,dn,pn,!1,null,null,null),vn=fn.exports,bn={name:"HeroMetadata",components:{InlineDownloadIcon:vn,InlineChevronRightIcon:un["a"],DownloadIcon:nn["a"],XcodeIcon:ln},inject:["isTargetIDE"],props:{projectFilesUrl:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:Object,required:!1}}},gn=bn,yn=(n("33ff"),Object(_["a"])(gn,en,tn,!1,null,"94ff76c0",null)),Cn=yn.exports,wn={name:"Hero",components:{PlayIcon:Yt["a"],GenericModal:Jt["a"],Column:{render(e){return e(kt["a"],{props:{span:{large:7,medium:9,small:12}}},this.$slots.default)}},ContentNode:Ne["default"],Headline:Xt,Metadata:Cn,Row:_t["a"],Asset:Ae["a"],LinkableSection:tt},mixins:[T["a"]],props:{title:{type:String,required:!0},chapter:{type:String},content:{type:Array},projectFiles:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:String,required:!1},video:{type:String},backgroundImage:{type:String}},computed:{backgroundImageUrl(){const e=this.references[this.backgroundImage]||{},{variants:t=[]}=e,n=t.find(e=>e.traits.includes("light"));return Object(Zt["c"])((n||{}).url)},projectFilesUrl(){return this.projectFiles?Object(Zt["c"])(this.references[this.projectFiles].url):null},bgStyle(){return{backgroundImage:Object(Zt["f"])(this.backgroundImageUrl)}},xcodeRequirementData(){return this.references[this.xcodeRequirement]},sectionTitle(){return"Introduction"}},data(){return{callToActionModalVisible:!1}},methods:{async toggleCallToActionModal(){this.callToActionModalVisible=!0,await this.$nextTick();const e=this.$refs.asset.$el.querySelector("video");if(e)try{await e.play(),e.muted=!1}catch(t){}},handleVideoEnd(){this.callToActionModalVisible=!1}}},_n=wn,kn=(n("7fae"),Object(_["a"])(_n,Lt,Et,!1,null,"55543c5a",null)),Sn=kn.exports,xn={name:"Hero",components:{TutorialHero:Sn},props:Sn.props},Tn=xn,In=(n("2f9d"),Object(_["a"])(Tn,Mt,Bt,!1,null,"35a9482f",null)),An=In.exports,$n=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialAssessments",e._b({},"TutorialAssessments",e.$props,!1),[n("p",{attrs:{slot:"success"},slot:"success"},[e._v("Great job, you've answered all the questions for this article.")])])},On=[],Nn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"assessments-wrapper",attrs:{anchor:e.anchor,title:e.title}},[n("Row",{ref:"assessments",staticClass:"assessments"},[n("MainColumn",[n("Row",{staticClass:"banner"},[n("HeaderColumn",[n("h2",{staticClass:"title"},[e._v(e._s(e.title))])])],1),e.completed?n("div",{staticClass:"success"},[e._t("success",(function(){return[n("p",[e._v(e._s(e.SuccessMessage))])]}))],2):n("div",[n("Progress",e._b({ref:"progress"},"Progress",e.progress,!1)),n("Quiz",{key:e.activeIndex,attrs:{choices:e.activeAssessment.choices,content:e.activeAssessment.content,isLast:e.isLast,title:e.activeAssessment.title},on:{submit:e.onSubmit,advance:e.onAdvance,"see-results":e.onSeeResults}})],1),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"assertive"}},[e.completed?e._t("success",(function(){return[e._v(" "+e._s(e.SuccessMessage)+" ")]})):e._e()],2)],1)],1)],1)},Pn=[],qn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",[n("p",{staticClass:"title"},[e._v(e._s(e.$t("tutorials.question-of",{index:e.index,total:e.total})))])])},Dn=[],jn={name:"AssessmentsProgress",components:{Row:_t["a"]},props:{index:{type:Number,required:!0},total:{type:Number,required:!0}}},Rn=jn,Mn=(n("6866"),Object(_["a"])(Rn,qn,Dn,!1,null,"28135d78",null)),Bn=Mn.exports,Ln=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"quiz"},[n("ContentNode",{staticClass:"title",attrs:{content:e.title}}),e.content?n("ContentNode",{staticClass:"question-content",attrs:{content:e.content}}):e._e(),n("div",{staticClass:"choices"},[e._l(e.choices,(function(t,s){return n("label",{key:s,class:e.choiceClasses[s]},[n(e.getIconComponent(s),{tag:"component",staticClass:"choice-icon"}),n("input",{directives:[{name:"model",rawName:"v-model",value:e.selectedIndex,expression:"selectedIndex"}],attrs:{type:"radio",name:"assessment"},domProps:{value:s,checked:e._q(e.selectedIndex,s)},on:{change:function(t){e.selectedIndex=s}}}),n("ContentNode",{staticClass:"question",attrs:{content:t.content}}),e.userChoices[s].checked?[n("ContentNode",{staticClass:"answer",attrs:{content:t.justification}}),t.reaction?n("p",{staticClass:"answer"},[e._v(e._s(t.reaction))]):e._e()]:e._e()],2)})),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"assertive"}},[e._v(" "+e._s(e.ariaLiveText)+" ")])],2),n("div",{staticClass:"controls"},[n("ButtonLink",{staticClass:"check",attrs:{disabled:null===e.selectedIndex||e.showNextQuestion},nativeOn:{click:function(t){return e.submit.apply(null,arguments)}}},[e._v(" "+e._s(e.$t("tutorials.submit"))+" ")]),e.isLast?n("ButtonLink",{staticClass:"results",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.seeResults.apply(null,arguments)}}},[e._v(" "+e._s(e.$t("tutorials.next"))+" ")]):n("ButtonLink",{staticClass:"next",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.advance.apply(null,arguments)}}},[e._v(" "+e._s(e.$t("tutorials.assessment.next-question"))+" ")])],1)],1)},En=[],Fn=n("76ab"),Vn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"reset-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"reset-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M3.828 4.539l0.707-0.707 5.657 5.657-0.707 0.707-5.657-5.657z"}}),n("path",{attrs:{d:"M3.828 9.489l5.657-5.657 0.707 0.707-5.657 5.657-0.707-0.707z"}})])},Un=[],Hn={name:"ResetCircleIcon",components:{SVGIcon:y["a"]}},zn=Hn,Gn=Object(_["a"])(zn,Vn,Un,!1,null,null,null),Wn=Gn.exports,Qn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"check-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"check-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M9.626 3.719l0.866 0.5-3.5 6.062-3.464-2 0.5-0.866 2.6 1.5z"}})])},Kn=[],Xn={name:"CheckCircleIcon",components:{SVGIcon:y["a"]}},Jn=Xn,Yn=Object(_["a"])(Jn,Qn,Kn,!1,null,null,null),Zn=Yn.exports,es={name:"Quiz",components:{CheckCircleIcon:Zn,ResetCircleIcon:Wn,ContentNode:Ne["default"],ButtonLink:Fn["a"]},props:{content:{type:Array,required:!1},choices:{type:Array,required:!0},isLast:{type:Boolean,default:!1},title:{type:Array,required:!0}},data(){return{userChoices:this.choices.map(()=>({checked:!1})),selectedIndex:null,checkedIndex:null}},computed:{correctChoices(){return this.choices.reduce((e,t,n)=>t.isCorrect?e.add(n):e,new Set)},choiceClasses(){return this.userChoices.map((e,t)=>({choice:!0,active:this.selectedIndex===t,disabled:e.checked||this.showNextQuestion,correct:e.checked&&this.choices[t].isCorrect,incorrect:e.checked&&!this.choices[t].isCorrect}))},showNextQuestion(){return Array.from(this.correctChoices).every(e=>this.userChoices[e].checked)},ariaLiveText(){if(null===this.checkedIndex)return"";const{isCorrect:e}=this.choices[this.checkedIndex];return`${this.$t("tutorials.assessment.answer-number-is",{index:this.checkedIndex+1})} ${e?this.$t("tutorials.assessment.correct"):this.$t("tutorials.assessment.incorrect")}\n `}},methods:{getIconComponent(e){const t=this.userChoices[e];if(t&&t.checked)return this.choices[e].isCorrect?Zn:Wn},submit(){this.$set(this.userChoices,this.selectedIndex,{checked:!0}),this.checkedIndex=this.selectedIndex,this.$emit("submit")},advance(){this.$emit("advance")},seeResults(){this.$emit("see-results")}}},ts=es,ns=(n("0503"),Object(_["a"])(ts,Ln,En,!1,null,"19ed40e2",null)),ss=ns.exports;const is=12,rs="tutorials.assessment.success-message";var os={name:"Assessments",constants:{SuccessMessage:rs},components:{LinkableSection:tt,Quiz:ss,Progress:Bn,Row:_t["a"],HeaderColumn:{render(e){return e(kt["a"],{props:{isCentered:{large:!0},span:{large:10}}},this.$slots.default)}},MainColumn:{render(e){return e(kt["a"],{props:{isCentered:{large:!0},span:{large:10,medium:10,small:12}}},this.$slots.default)}}},props:{assessments:{type:Array,required:!0},anchor:{type:String,required:!0}},inject:["navigationBarHeight"],data(){return{activeIndex:0,completed:!1,SuccessMessage:this.$t(rs)}},computed:{activeAssessment(){return this.assessments[this.activeIndex]},isLast(){return this.activeIndex===this.assessments.length-1},progress(){return{index:this.activeIndex+1,total:this.assessments.length}},title(){return this.$t("tutorials.assessment.check-your-understanding")}},methods:{scrollTo(e,t=0){e.scrollIntoView(!0),window.scrollBy(0,-this.navigationBarHeight-t)},onSubmit(){this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,is)})},onAdvance(){this.activeIndex+=1,this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,is)})},onSeeResults(){this.completed=!0,this.$nextTick(()=>{this.scrollTo(this.$refs.assessments.$el,is)})}}},as=os,cs=(n("da20"),Object(_["a"])(as,Nn,Pn,!1,null,"65e3c02c",null)),ls=cs.exports,us={name:"Assessments",components:{TutorialAssessments:ls},props:ls.props},ds=us,ps=(n("f264"),Object(_["a"])(ds,$n,On,!1,null,"3c94366b",null)),hs=ps.exports;const ms={articleBody:"articleBody",callToAction:"callToAction",hero:"hero",assessments:"assessments"};var fs={name:"Article",components:{NavigationBar:Ce,PortalTarget:h["PortalTarget"]},mixins:[we["a"]],inject:{isTargetIDE:{default:!1},store:{default(){return{reset(){},setReferences(){}}}}},props:{hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},references:{type:Object,required:!0},sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(ms,e))},identifierUrl:{type:String,required:!0}},computed:{heroSection(){return this.sections.find(this.isHero)},heroTitle(){return(this.heroSection||{}).title},pageTitle(){return this.heroTitle?`${this.heroTitle} — ${this.metadata.category} Tutorials`:void 0},pageDescription:({heroSection:e,extractFirstParagraphText:t})=>e?t(e.content):null},methods:{componentFor(e){const{kind:t}=e;return{[ms.articleBody]:ft,[ms.callToAction]:Rt,[ms.hero]:An,[ms.assessments]:hs}[t]},isHero(e){return e.kind===ms.hero},propsFor(e){const{abstract:t,action:n,anchor:s,assessments:i,backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:c,kind:l,media:u,projectFiles:d,title:p,video:h,xcodeRequirement:m}=e;return{[ms.articleBody]:{content:a},[ms.callToAction]:{abstract:t,action:n,media:u,title:p},[ms.hero]:{backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:c,projectFiles:d,title:p,video:h,xcodeRequirement:m},[ms.assessments]:{anchor:s,assessments:i}}[l]}},created(){m["a"].setAvailableLocales(this.metadata.availableLocales),this.store.reset(),this.store.setReferences(this.references)},watch:{references(e){this.store.setReferences(e)},"metadata.availableLocales":function(e){m["a"].setAvailableLocales(e)}},SectionKind:ms},vs=fs,bs=(n("79ef"),Object(_["a"])(vs,d,p,!1,null,"7d4562ea",null)),gs=bs.exports,ys=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"tutorial"},[e.isTargetIDE?e._e():n("NavigationBar",{attrs:{technology:e.metadata.category,chapters:e.hierarchy.modules,topic:e.tutorialTitle||"",rootReference:e.hierarchy.reference,identifierUrl:e.identifierUrl}}),n("main",{attrs:{id:"main",role:"main",tabindex:"0"}},[e._l(e.sections,(function(e,t){return n("Section",{key:t,attrs:{section:e}})})),n("BreakpointEmitter",{on:{change:e.handleBreakpointChange}})],2),n("PortalTarget",{attrs:{name:"modal-destination",multiple:""}})],1)},Cs=[],ws=n("66c9"),_s=n("7689"),ks=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"sections"},e._l(e.tasks,(function(t,s){return n("Section",e._b({key:s,attrs:{id:t.anchor,sectionNumber:s+1,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}},"Section",t,!1))})),1)},Ss=[],xs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"section",attrs:{anchor:e.anchor,title:e.introProps.title}},[n("Intro",e._b({},"Intro",e.introProps,!1)),e.stepsSection.length>0?n("Steps",{attrs:{content:e.stepsSection,isRuntimePreviewVisible:e.isRuntimePreviewVisible,sectionNumber:e.sectionNumber},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}}):e._e()],1)},Ts=[],Is=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"intro-container"},[n("Row",{class:["intro","intro-"+e.sectionNumber,{ide:e.isTargetIDE}]},[n("Column",{staticClass:"left"},[n("Headline",{attrs:{level:2}},[n("router-link",{attrs:{slot:"eyebrow",to:e.sectionLink},slot:"eyebrow"},[e._v(" "+e._s(e.$t("sections.title",{number:e.sectionNumber}))+" ")]),e._v(" "+e._s(e.title)+" ")],1),n("ContentNode",{attrs:{content:e.content}})],1),n("Column",{staticClass:"right"},[n("div",{staticClass:"media"},[e.media?n("Asset",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e()],1)])],1),e.expandedSections.length>0?n("ExpandedIntro",{staticClass:"expanded-intro",attrs:{content:e.expandedSections}}):e._e()],1)},As=[],$s={name:"SectionIntro",inject:{isClientMobile:{default:()=>!1},isTargetIDE:{default:()=>!1}},components:{Asset:Ae["a"],ContentNode:Ne["default"],ExpandedIntro:dt,Headline:Xt,Row:_t["a"],Column:{render(e){return e(kt["a"],{props:{span:{large:6,small:12}}},this.$slots.default)}}},props:{sectionAnchor:{type:String,required:!0},content:{type:Array,required:!0},media:{type:String,required:!0},title:{type:String,required:!0},sectionNumber:{type:Number,required:!0},expandedSections:{type:Array,default:()=>[]}},methods:{focus(){this.$emit("focus",this.media)}},computed:{sectionLink(){return{path:this.$route.path,hash:this.sectionAnchor,query:this.$route.query}}}},Os=$s,Ns=(n("257c"),Object(_["a"])(Os,Is,As,!1,null,"7f9a8f65",null)),Ps=Ns.exports,qs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"steps"},[n("div",{staticClass:"content-container"},e._l(e.contentNodes,(function(t,s){return n(t.component,e._b({key:s,ref:"contentNodes",refInFor:!0,tag:"component",class:e.contentClass(s),attrs:{currentIndex:e.activeStep}},"component",t.props,!1))})),1),e.isBreakpointSmall?e._e():n("BackgroundTheme",{staticClass:"asset-container",class:e.assetContainerClasses},[n("transition",{attrs:{name:"fade"}},[e.visibleAsset.media?n("div",{key:e.visibleAsset.media,class:["asset-wrapper",{ide:e.isTargetIDE}]},[n("Asset",{ref:"asset",staticClass:"step-asset",attrs:{identifier:e.visibleAsset.media,showsReplayButton:"",showsVideoControls:!1}})],1):e._e(),e.visibleAsset.code?n("CodePreview",{attrs:{code:e.visibleAsset.code,preview:e.visibleAsset.runtimePreview,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}},[e.visibleAsset.runtimePreview?n("transition",{attrs:{name:"fade"}},[n("Asset",{key:e.visibleAsset.runtimePreview,attrs:{identifier:e.visibleAsset.runtimePreview}})],1):e._e()],1):e._e()],1)],1)],1)},Ds=[],js=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["code-preview",{ide:e.isTargetIDE}]},[n("CodeTheme",[e.code?n("CodeListing",e._b({attrs:{showLineNumbers:""}},"CodeListing",e.codeProps,!1)):e._e()],1),n("div",{staticClass:"runtime-preview",class:e.runtimePreviewClasses,style:e.previewStyles},[n("div",{staticClass:"runtimve-preview__container"},[n("button",{staticClass:"header",attrs:{disabled:!e.hasRuntimePreview,title:e.runtimePreviewTitle},on:{click:e.togglePreview}},[n("span",{staticClass:"runtime-preview-label",attrs:{"aria-label":e.textAriaLabel}},[e._v(e._s(e.togglePreviewText))]),n("DiagonalArrowIcon",{staticClass:"icon-inline preview-icon",class:[e.shouldDisplayHideLabel?"preview-hide":"preview-show"]})],1),n("transition",{on:{leave:e.handleLeave}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.shouldDisplayHideLabel,expression:"shouldDisplayHideLabel"}],staticClass:"runtime-preview-asset"},[e._t("default")],2)])],1)])],1)},Rs=[],Ms=n("7b69"),Bs=n("6667"),Ls=n("8590");const{BreakpointName:Es}=o["a"].constants;function Fs({width:e,height:t},n=1){const s=400,i=e<=s?1.75:3;return{width:e/(i/n),height:t/(i/n)}}var Vs={name:"CodePreview",inject:{isTargetIDE:{default:!1},store:{default(){return{state:{references:{}}}}}},components:{DiagonalArrowIcon:Bs["a"],CodeListing:Ms["a"],CodeTheme:Ls["a"]},props:{code:{type:String,required:!0},preview:{type:String,required:!1},isRuntimePreviewVisible:{type:Boolean,required:!0}},data(){return{tutorialState:this.store.state}},computed:{references:({tutorialState:e})=>e.references,currentBreakpoint(){return this.tutorialState.breakpoint},hasRuntimePreview(){return!!this.preview},previewAssetSize(){const e=this.hasRuntimePreview?this.references[this.preview]:{},t=(e.variants||[{}])[0]||{},n={width:900};let s=t.size||{};s.width||s.height||(s=n);const i=this.currentBreakpoint===Es.medium?.8:1;return Fs(s,i)},previewSize(){const e={width:102};return this.shouldDisplayHideLabel&&this.previewAssetSize?{width:this.previewAssetSize.width}:e},previewStyles(){const{width:e}=this.previewSize;return{width:e+"px"}},codeProps(){return this.references[this.code]},runtimePreviewClasses(){return{collapsed:!this.shouldDisplayHideLabel,disabled:!this.hasRuntimePreview,"runtime-preview-ide":this.isTargetIDE}},shouldDisplayHideLabel(){return this.hasRuntimePreview&&this.isRuntimePreviewVisible},runtimePreviewTitle(){return this.hasRuntimePreview?null:this.$t("tutorials.preview.no-preview-available-step")},togglePreviewText(){return this.$tc("tutorials.preview.title",this.hasRuntimePreview?1:0)},textAriaLabel(){return`${this.togglePreviewText}, ${this.shouldDisplayHideLabel?this.$t("verbs.hide"):this.$t("verbs.show")}`}},methods:{handleLeave(e,t){setTimeout(t,200)},togglePreview(){this.hasRuntimePreview&&this.$emit("runtime-preview-toggle",!this.isRuntimePreviewVisible)}}},Us=Vs,Hs=(n("b27b"),Object(_["a"])(Us,js,Rs,!1,null,"4f53426a",null)),zs=Hs.exports,Gs=n("3908"),Ws=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{style:e.backgroundStyle},[e._t("default")],2)},Qs=[],Ks={name:"BackgroundTheme",data(){return{codeThemeState:ws["a"].state}},computed:{backgroundStyle(){const{codeColors:e}=this.codeThemeState;return e?{"--background":e.background}:null}}},Xs=Ks,Js=Object(_["a"])(Xs,Ws,Qs,!1,null,null,null),Ys=Js.exports,Zs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["step-container","step-"+e.stepNumber]},[n("div",{ref:"step",staticClass:"step",class:{focused:e.isActive},attrs:{"data-index":e.index}},[n("p",{staticClass:"step-label"},[e._v(e._s(e.$t("tutorials.step",{number:e.stepNumber})))]),n("ContentNode",{attrs:{content:e.content}}),e.caption&&e.caption.length>0?n("ContentNode",{staticClass:"caption",attrs:{content:e.caption}}):e._e()],1),e.isBreakpointSmall||!e.isTargetIDE?n("div",{staticClass:"media-container"},[e.media?n("Asset",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e(),e.code?n("MobileCodePreview",{attrs:{code:e.code}},[e.runtimePreview?n("Asset",{staticClass:"preview",attrs:{identifier:e.runtimePreview}}):e._e()],1):e._e()],1):e._e()])},ei=[],ti=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BackgroundTheme",{staticClass:"mobile-code-preview"},[e.code?n("GenericModal",{staticClass:"full-code-listing-modal",attrs:{theme:e.isTargetIDE?"code":"light",codeBackgroundColorOverride:e.modalBackgroundColor,isFullscreen:"",visible:e.fullCodeIsVisible},on:{"update:visible":function(t){e.fullCodeIsVisible=t}}},[n("div",{staticClass:"full-code-listing-modal-content"},[n("CodeTheme",[n("CodeListing",e._b({staticClass:"full-code-listing",attrs:{showLineNumbers:""}},"CodeListing",e.codeProps,!1))],1)],1)]):e._e(),n("CodeTheme",[e.code?n("MobileCodeListing",e._b({attrs:{showLineNumbers:""},on:{"file-name-click":e.toggleFullCode}},"MobileCodeListing",e.codeProps,!1)):e._e()],1),n("CodeTheme",{staticClass:"preview-toggle-container"},[n("PreviewToggle",{attrs:{isActionable:!!e.$slots.default},on:{click:e.togglePreview}})],1),e.$slots.default?n("GenericModal",{staticClass:"runtime-preview-modal",attrs:{theme:e.isTargetIDE?"dynamic":"light",isFullscreen:"",visible:e.previewIsVisible},on:{"update:visible":function(t){e.previewIsVisible=t}}},[n("div",{staticClass:"runtime-preview-modal-content"},[n("span",{staticClass:"runtime-preview-label"},[e._v(e._s(e.$tc("tutorials.preview.title",1)))]),e._t("default")],2)]):e._e()],1)},ni=[],si=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"code-listing-preview",attrs:{"data-syntax":e.syntax}},[n("CodeListing",{attrs:{fileName:e.fileName,syntax:e.syntax,fileType:e.fileType,content:e.previewedLines,startLineNumber:e.displayedRange.start,highlights:e.highlights,showLineNumbers:"",isFileNameActionable:""},on:{"file-name-click":function(t){return e.$emit("file-name-click")}}})],1)},ii=[],ri={name:"MobileCodeListing",components:{CodeListing:Ms["a"]},props:{fileName:String,syntax:String,fileType:String,content:{type:Array,required:!0},highlights:{type:Array,default:()=>[]}},computed:{highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},firstHighlightRange(){if(0===this.highlightedLineNumbers.size)return{start:1,end:this.content.length};const e=Math.min(...this.highlightedLineNumbers.values());let t=e;while(this.highlightedLineNumbers.has(t+1))t+=1;return{start:e,end:t}},displayedRange(){const e=this.firstHighlightRange,t=e.start-2<1?1:e.start-2,n=e.end+3>=this.content.length+1?this.content.length+1:e.end+3;return{start:t,end:n}},previewedLines(){return this.content.slice(this.displayedRange.start-1,this.displayedRange.end-1)}}},oi=ri,ai=(n("fae5"),Object(_["a"])(oi,si,ii,!1,null,"5ad4e037",null)),ci=ai.exports,li=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"toggle-preview"},[e.isActionable?n("a",{staticClass:"toggle-text",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[e._v(" "+e._s(e.$tc("tutorials.preview.title",1))+" "),n("InlinePlusCircleIcon",{staticClass:"toggle-icon icon-inline"})],1):n("span",{staticClass:"toggle-text"},[e._v(" "+e._s(e.$tc("tutorials.preview.title",0))+" ")])])},ui=[],di=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-plus-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-plus-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M4 6.52h6v1h-6v-1z"}}),n("path",{attrs:{d:"M6.5 4.010h1v6h-1v-6z"}})])},pi=[],hi={name:"InlinePlusCircleIcon",components:{SVGIcon:y["a"]}},mi=hi,fi=Object(_["a"])(mi,di,pi,!1,null,null,null),vi=fi.exports,bi={name:"MobileCodePreviewToggle",components:{InlinePlusCircleIcon:vi},props:{isActionable:{type:Boolean,required:!0}}},gi=bi,yi=(n("bf0a"),Object(_["a"])(gi,li,ui,!1,null,"78763c14",null)),Ci=yi.exports,wi={name:"MobileCodePreview",inject:["isTargetIDE"],mixins:[T["a"]],components:{GenericModal:Jt["a"],CodeListing:Ms["a"],MobileCodeListing:ci,PreviewToggle:Ci,CodeTheme:Ls["a"],BackgroundTheme:Ys},props:{code:{type:String,required:!0}},computed:{codeProps(){return this.references[this.code]},modalBackgroundColor(){const{codeColors:e}=this.store.state;return e?e.background:null}},data(){return{previewIsVisible:!1,fullCodeIsVisible:!1}},methods:{togglePreview(){this.previewIsVisible=!this.previewIsVisible},toggleFullCode(){this.fullCodeIsVisible=!this.fullCodeIsVisible}}},_i=wi,ki=(n("3fcc"),Object(_["a"])(_i,ti,ni,!1,null,"1aed4baa",null)),Si=ki.exports;const{BreakpointName:xi}=o["a"].constants;var Ti={name:"Step",components:{Asset:Ae["a"],MobileCodePreview:Si,ContentNode:Ne["default"]},inject:["isTargetIDE","isClientMobile","store"],props:{code:{type:String,required:!1},content:{type:Array,required:!0},caption:{type:Array,required:!1},media:{type:String,required:!1},runtimePreview:{type:String,required:!1},sectionNumber:{type:Number,required:!0},stepNumber:{type:Number,required:!0},numberOfSteps:{type:Number,required:!0},index:{type:Number,required:!0},currentIndex:{type:Number,required:!0}},data(){return{tutorialState:this.store.state}},computed:{isBreakpointSmall(){return this.tutorialState.breakpoint===xi.small},isActive:({index:e,currentIndex:t})=>e===t}},Ii=Ti,Ai=(n("c643"),Object(_["a"])(Ii,Zs,ei,!1,null,"eb45ec92",null)),$i=Ai.exports;const{BreakpointName:Oi}=o["a"].constants,{IntersectionDirections:Ni}=Je["a"].constants,Pi="-35% 0% -65% 0%";var qi={name:"SectionSteps",components:{ContentNode:Ne["default"],Step:$i,Asset:Ae["a"],CodePreview:zs,BackgroundTheme:Ys},mixins:[Je["a"]],constants:{IntersectionMargins:Pi},inject:["isTargetIDE","store"],data(){const e=this.content.findIndex(this.isStepNode),{code:t,media:n,runtimePreview:s}=this.content[e]||{};return{tutorialState:this.store.state,visibleAsset:{media:n,code:t,runtimePreview:s},activeStep:e}},computed:{assetContainerClasses(){return{"for-step-code":!!this.visibleAsset.code,ide:this.isTargetIDE}},numberOfSteps(){return this.content.filter(this.isStepNode).length},contentNodes(){return this.content.reduce(({stepCounter:e,nodes:t},n,s)=>{const{type:i,...r}=n,o=this.isStepNode(n),a=o?e+1:e;return o?{stepCounter:e+1,nodes:t.concat({component:$i,type:i,props:{...r,stepNumber:a,index:s,numberOfSteps:this.numberOfSteps,sectionNumber:this.sectionNumber}})}:{stepCounter:e,nodes:t.concat({component:Ne["default"],type:i,props:{content:[n]}})}},{stepCounter:0,nodes:[]}).nodes},isBreakpointSmall(){return this.tutorialState.breakpoint===Oi.small},stepNodes:({contentNodes:e,isStepNode:t})=>e.filter(t),intersectionRootMargin:()=>Pi},async mounted(){await Object(Gs["b"])(8),this.findClosestStepNode()},methods:{isStepNode({type:e}){return"step"===e},contentClass(e){return{["interstitial interstitial-"+(e+1)]:!this.isStepNode(this.content[e])}},onReverseIntoLastStep(){const{asset:e}=this.$refs;if(e){const t=e.$el.querySelector("video");t&&(t.currentTime=0,t.play().catch(()=>{}))}},onFocus(e){const{code:t,media:n,runtimePreview:s}=this.content[e];this.activeStep=e,this.visibleAsset={code:t,media:n,runtimePreview:s}},onRuntimePreviewToggle(e){this.$emit("runtime-preview-toggle",e)},findClosestStepNode(){const e=.333*window.innerHeight;let t=null,n=0;this.stepNodes.forEach(s=>{const{index:i}=s.props,r=this.$refs.contentNodes[i].$refs.step;if(!r)return;const{top:o,bottom:a}=r.getBoundingClientRect(),c=o-e,l=a-e,u=Math.abs(c+l);(0===n||u<=n)&&(n=u,t=i)}),null!==t&&this.onFocus(t)},getIntersectionTargets(){const{stepNodes:e,$refs:t}=this;return e.map(({props:{index:e}})=>t.contentNodes[e].$refs.step)},onIntersect(e){const{target:t,isIntersecting:n}=e;if(!n)return;const s=parseFloat(t.getAttribute("data-index"));this.intersectionScrollDirection===Ni.down&&s===this.stepNodes[this.stepNodes.length-1].props.index&&this.onReverseIntoLastStep(),this.onFocus(s)}},props:{content:{type:Array,required:!0},isRuntimePreviewVisible:{type:Boolean,require:!0},sectionNumber:{type:Number,required:!0}}},Di=qi,ji=(n("d4f3"),Object(_["a"])(Di,qs,Ds,!1,null,"2786be2a",null)),Ri=ji.exports,Mi={name:"Section",components:{Intro:Ps,LinkableSection:tt,Steps:Ri},computed:{introProps(){const[{content:e,media:t},...n]=this.contentSection;return{content:e,expandedSections:n,media:t,sectionAnchor:this.anchor,sectionNumber:this.sectionNumber,title:this.title}}},props:{anchor:{type:String,required:!0},title:{type:String,required:!0},contentSection:{type:Array,required:!0},stepsSection:{type:Array,required:!0},sectionNumber:{type:Number,required:!0},isRuntimePreviewVisible:{type:Boolean,required:!0}},methods:{onRuntimePreviewToggle(e){this.$emit("runtime-preview-toggle",e)}}},Bi=Mi,Li=(n("9dc4"),Object(_["a"])(Bi,xs,Ts,!1,null,"6b3a0b3a",null)),Ei=Li.exports,Fi={name:"SectionList",components:{Section:Ei},data(){return{isRuntimePreviewVisible:!0}},props:{tasks:{type:Array,required:!0}},methods:{onRuntimePreviewToggle(e){this.isRuntimePreviewVisible=e}}},Vi=Fi,Ui=(n("4d07"),Object(_["a"])(Vi,ks,Ss,!1,null,"79a75e9e",null)),Hi=Ui.exports;const zi={assessments:ls,hero:Sn,tasks:Hi,callToAction:Pt},Gi=new Set(Object.keys(zi)),Wi={name:"TutorialSection",render:function(e){const{kind:t,...n}=this.section,s=zi[t];return s?e(s,{props:n}):null},props:{section:{type:Object,required:!0,validator:e=>Gi.has(e.kind)}}};var Qi={name:"Tutorial",mixins:[we["a"],_s["a"]],components:{NavigationBar:Ce,Section:Wi,PortalTarget:h["PortalTarget"],BreakpointEmitter:o["a"]},inject:["isTargetIDE","store"],computed:{heroSection(){return this.sections.find(({kind:e})=>"hero"===e)},tutorialTitle(){return(this.heroSection||{}).title},pageTitle(){return this.tutorialTitle?`${this.tutorialTitle} — ${this.metadata.category} Tutorials`:void 0},pageDescription:({heroSection:e,extractFirstParagraphText:t})=>e?t(e.content):null},props:{sections:{type:Array,required:!0},references:{type:Object,required:!0},hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},identifierUrl:{type:String,required:!0}},methods:{handleBreakpointChange(e){this.store.updateBreakpoint(e)},handleCodeColorsChange(e){ws["a"].updateCodeColors(e)}},created(){m["a"].setAvailableLocales(this.metadata.availableLocales),this.store.reset(),this.store.setReferences(this.references)},watch:{references(e){this.store.setReferences(e)},"metadata.availableLocales":function(e){m["a"].setAvailableLocales(e)}},mounted(){this.$bridge.on("codeColors",this.handleCodeColorsChange),this.$bridge.send({type:"requestCodeColors"})},provide(){return{isClientMobile:this.isClientMobile}},beforeDestroy(){this.$bridge.off("codeColors",this.handleCodeColorsChange)}},Ki=Qi,Xi=(n("424f"),Object(_["a"])(Ki,ys,Cs,!1,null,"611d0574",null)),Ji=Xi.exports,Yi=n("0caf"),Zi=n("146e");const er={article:"article",tutorial:"project"};var tr={name:"Topic",inject:{isTargetIDE:{default:!1}},mixins:[Yi["a"],Zi["a"]],data(){return{topicData:null}},computed:{navigationBarHeight(){return this.isTargetIDE?0:52},store(){return u},hierarchy(){const{hierarchy:e={}}=this.topicData,{technologyNavigation:t=["overview","tutorials","resources"]}=e||{};return{...e,technologyNavigation:t}},topicKey:({$route:e,topicData:t})=>[e.path,t.identifier.interfaceLanguage].join()},beforeRouteEnter(e,t,n){e.meta.skipFetchingData?n(e=>e.newContentMounted()):Object(r["c"])(e,t,n).then(e=>n(t=>{t.topicData=e})).catch(n)},beforeRouteUpdate(e,t,n){Object(r["e"])(e,t)?Object(r["c"])(e,t,n).then(e=>{this.topicData=e,n()}).catch(n):n()},created(){this.store.reset()},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge)},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge)},methods:{componentFor(e){const{kind:t}=e;return{[er.article]:gs,[er.tutorial]:Ji}[t]},propsFor(e){const{hierarchy:t,kind:n,metadata:s,references:i,sections:r,identifier:o}=e;return{[er.article]:{hierarchy:t,metadata:s,references:i,sections:r,identifierUrl:o.url},[er.tutorial]:{hierarchy:t,metadata:s,references:i,sections:r,identifierUrl:o.url}}[n]}},provide(){return{navigationBarHeight:this.navigationBarHeight,store:this.store}},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},nr=tr,sr=Object(_["a"])(nr,s,i,!1,null,null,null);t["default"]=sr.exports},"32b1":function(e,t,n){},"33ff":function(e,t,n){"use strict";n("4e3e")},3976:function(e,t,n){"use strict";n("0c11")},"3e1b":function(e,t,n){"use strict";n("c5c1")},"3fcc":function(e,t,n){"use strict";n("0c14")},"424f":function(e,t,n){"use strict";n("99b6")},4718:function(e,t,n){},"4b4a":function(e,t,n){},"4d07":function(e,t,n){"use strict";n("b52e")},"4e3e":function(e,t,n){},5237:function(e,t,n){"use strict";n("4b4a")},"525c":function(e,t,n){},5892:function(e,t,n){},5913:function(e,t,n){},"63a8":function(e,t,n){},"653a":function(e,t,n){"use strict";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("router-link",{staticClass:"nav-title-content",attrs:{to:e.to}},[n("span",{staticClass:"title"},[e._t("default")],2),n("span",{staticClass:"subhead"},[e._v(" "),e._t("subhead")],2)])},i=[],r={name:"NavTitleContainer",props:{to:{type:[String,Object],required:!0}}},o=r,a=(n("f1e6"),n("2877")),c=Object(a["a"])(o,s,i,!1,null,"854b4dd6",null);t["a"]=c.exports},6866:function(e,t,n){"use strict";n("5892")},7096:function(e,t,n){},"735b":function(e,t,n){},7748:function(e,t,n){},"79ef":function(e,t,n){"use strict";n("bcaa")},"7b17":function(e,t,n){},"7f7b":function(e,t,n){"use strict";n("735b")},"7fae":function(e,t,n){"use strict";n("a53d")},9924:function(e,t,n){},9938:function(e,t,n){"use strict";n("d513")},"99b6":function(e,t,n){},"9dc4":function(e,t,n){"use strict";n("fe9d")},a0d4:function(e,t,n){},a40c:function(e,t,n){},a53d:function(e,t,n){},a95e:function(e,t,n){},aa4c:function(e,t,n){},aece:function(e,t,n){"use strict";n("c0df")},b27b:function(e,t,n){"use strict";n("2a05")},b52e:function(e,t,n){},bcaa:function(e,t,n){},bf0a:function(e,t,n){"use strict";n("4718")},c0df:function(e,t,n){},c5c1:function(e,t,n){},c643:function(e,t,n){"use strict";n("9924")},c7dd:function(e,t,n){"use strict";n("aa4c")},cb8d:function(e,t,n){"use strict";n("0466")},d4f3:function(e,t,n){"use strict";n("fc13")},d513:function(e,t,n){},d86f:function(e,t,n){},da20:function(e,t,n){"use strict";n("a40c")},de60:function(e,t,n){"use strict";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"download-icon",attrs:{viewBox:"0 0 14 14",themeId:"download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},i=[],r=n("be08"),o={name:"DownloadIcon",components:{SVGIcon:r["a"]}},a=o,c=n("2877"),l=Object(c["a"])(a,s,i,!1,null,null,null);t["a"]=l.exports},e38e:function(e,t,n){},e688:function(e,t,n){"use strict";n("5913")},e84c:function(e,t,n){"use strict";n("d86f")},e9b0:function(e,t,n){"use strict";n("ee09")},ea88:function(e,t,n){"use strict";n("ed98")},ed71:function(e,t,n){"use strict";n("7096")},ed98:function(e,t,n){},ee09:function(e,t,n){},f1e6:function(e,t,n){"use strict";n("a0d4")},f264:function(e,t,n){"use strict";n("63a8")},fae5:function(e,t,n){"use strict";n("32b1")},fc13:function(e,t,n){},fe9d:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/topic.bb695832.js b/docs/js/topic.bb695832.js deleted file mode 100644 index 7edd0ae..0000000 --- a/docs/js/topic.bb695832.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["topic"],{"00f4":function(e,t,n){"use strict";n("282f")},"0169":function(e,t,n){"use strict";n("0951")},"0466":function(e,t,n){},"0530":function(e,t,n){"use strict";n("dbeb")},"0951":function(e,t,n){},"0b61":function(e,t,n){},1006:function(e,t,n){"use strict";n("a95e")},"14b7":function(e,t,n){},"1a91":function(e,t,n){"use strict";n("db87")},"1dd5":function(e,t,n){"use strict";n("7b17")},"282f":function(e,t,n){},"2f9d":function(e,t,n){"use strict";n("525c")},"311e":function(e,t,n){},3213:function(e,t,n){"use strict";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[e.topicData?n(e.componentFor(e.topicData),e._b({key:e.topicKey,tag:"component",attrs:{hierarchy:e.hierarchy}},"component",e.propsFor(e.topicData),!1)):e._e()],1)},s=[],r=n("25a9"),o=n("a97e");const{BreakpointName:a}=o["a"].constants;var c,l,u={state:{linkableSections:[],breakpoint:a.large},addLinkableSection(e){const t={...e,visibility:0};t.sectionNumber=this.state.linkableSections.length,this.state.linkableSections.push(t)},reset(){this.state.linkableSections=[],this.state.breakpoint=a.large},updateLinkableSection(e){this.state.linkableSections=this.state.linkableSections.map(t=>e.anchor===t.anchor?{...t,visibility:e.visibility}:t)},updateBreakpoint(e){this.state.breakpoint=e}},d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"article"},[e.isTargetIDE?e._e():n("NavigationBar",{attrs:{chapters:e.hierarchy.modules,technology:e.metadata.category,topic:e.heroTitle||"",rootReference:e.hierarchy.reference,identifierUrl:e.identifierUrl}}),n("main",{attrs:{id:"main",role:"main",tabindex:"0"}},[e._t("above-hero"),e._l(e.sections,(function(t,i){return n(e.componentFor(t),e._b({key:i,tag:"component"},"component",e.propsFor(t),!1))}))],2),n("PortalTarget",{attrs:{name:"modal-destination",multiple:""}})],1)},p=[],h=n("2b88"),m=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavBase",{attrs:{id:"nav","aria-label":e.technology,hasSolidBackground:""}},[n("template",{slot:"default"},[n("ReferenceUrlProvider",{attrs:{reference:e.rootReference},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.urlWithParams;return n("NavTitleContainer",{attrs:{to:i}},[n("template",{slot:"default"},[e._v(e._s(e.technology))]),n("template",{slot:"subhead"},[e._v("Tutorials")])],2)}}])})],1),n("template",{slot:"after-title"},[n("div",{staticClass:"separator"})]),n("template",{slot:"tray"},[n("div",{staticClass:"mobile-dropdown-container"},[n("MobileDropdown",{attrs:{options:e.chapters,sections:e.optionsForSections,currentOption:e.currentSection?e.currentSection.title:""},on:{"select-section":e.onSelectSection}})],1),n("div",{staticClass:"dropdown-container"},[n("PrimaryDropdown",{staticClass:"primary-dropdown",attrs:{options:e.chapters,currentOption:e.topic}}),n("ChevronIcon",{staticClass:"icon-inline"}),e.currentSection?n("SecondaryDropdown",{staticClass:"secondary-dropdown",attrs:{options:e.optionsForSections,currentOption:e.currentSection.title,sectionTracker:e.sectionIndicatorText},on:{"select-section":e.onSelectSection}}):e._e()],1),e._t("tray",null,{siblings:e.chapters.length+e.optionsForSections.length})],2)],2)},f=[],v=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"chevron-icon",attrs:{viewBox:"0 0 14 14",themeId:"chevron"}},[n("path",{attrs:{d:"M3.22 1.184l0.325-0.38 7.235 6.201-7.235 6.19-0.325-0.38 6.792-5.811-6.792-5.82z"}})])},g=[],b=n("be08"),y={name:"ChevronIcon",components:{SVGIcon:b["a"]}},C=y,w=n("2877"),_=Object(w["a"])(C,v,g,!1,null,null,null),k=_.exports,S=n("d26a"),x={name:"ReferenceUrlProvider",inject:{references:{default:()=>({})}},props:{reference:{type:String,required:!0}},computed:{resolvedReference:({references:e,reference:t})=>e[t]||{},url:({resolvedReference:e})=>e.url,title:({resolvedReference:e})=>e.title},render(){return this.$scopedSlots.default({url:this.url,urlWithParams:Object(S["b"])(this.url,this.$route.query),title:this.title,reference:this.resolvedReference})}},T=x,I=Object(w["a"])(T,c,l,!1,null,null,null),A=I.exports,O=n("8a61"),N=n("cbcf"),$=n("653a"),P=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("NavMenuItems",{staticClass:"mobile-dropdown"},e._l(e.options,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(i){var s=i.title;return n("NavMenuItemBase",{staticClass:"chapter-list",attrs:{role:"group"}},[n("p",{staticClass:"chapter-name"},[e._v(e._s(s))]),n("ul",{staticClass:"tutorial-list"},e._l(t.projects,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.url,s=t.urlWithParams,r=t.title;return n("li",{staticClass:"tutorial-list-item"},[n("router-link",{staticClass:"option tutorial",attrs:{to:s,value:r}},[e._v(" "+e._s(r)+" ")]),i===e.$route.path?n("ul",{staticClass:"section-list",attrs:{role:"listbox"}},e._l(e.sections,(function(t){return n("li",{key:t.title},[n("router-link",{class:e.classesFor(t),attrs:{to:{path:t.path,query:e.$route.query},value:t.title},nativeOn:{click:function(n){return e.onClick(t)}}},[e._v(" "+e._s(t.title)+" ")])],1)})),0):e._e()],1)}}],null,!0)})})),1)])}}],null,!0)})})),1)},q=[],D=n("863d"),j=n("9b30"),R={name:"MobileDropdown",components:{NavMenuItems:j["a"],NavMenuItemBase:D["a"],ReferenceUrlProvider:A},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sections:{type:Array,required:!1,default:()=>[]}},methods:{classesFor(e){return["option","section",{active:this.currentOption===e.title},this.depthClass(e)]},depthClass(e){const{depth:t=0}=e;return"depth"+t},onClick(e){this.$emit("select-section",e.path)}}},M=R,B=(n("e688"),Object(w["a"])(M,P,q,!1,null,"154acfbd",null)),E=B.exports,L=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("DropdownCustom",{staticClass:"tutorial-dropdown",attrs:{value:e.currentOption,"aria-label":"Current section",isSmall:""},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.closeAndFocusToggler,s=t.contentClasses,r=t.navigateOverOptions,o=t.OptionClass,a=t.ActiveOptionClass;return[n("ul",{staticClass:"options",class:s,attrs:{role:"listbox",tabindex:"0"}},e._l(e.options,(function(t){return n("router-link",{key:t.title,attrs:{to:{path:t.path,query:e.$route.query},custom:""},scopedSlots:e._u([{key:"default",fn:function(s){var c,l=s.navigate;return[n("li",{class:[o,(c={},c[a]=e.currentOption===t.title,c)],attrs:{role:"option",value:t.title,"aria-selected":e.currentOption===t.title,"aria-current":e.ariaCurrent(t.title),tabindex:-1},on:{click:function(n){return e.setActive(t,l,i,n)},keydown:[function(n){return!n.type.indexOf("key")&&e._k(n.keyCode,"enter",13,n.key,"Enter")?null:e.setActive(t,l,i,n)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:i.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:i.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),r(t,1))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),r(t,-1))}]}},[e._v(" "+e._s(t.title)+" ")])]}}],null,!0)})})),1)]}}])},[n("template",{slot:"toggle-post-content"},[n("span",{staticClass:"section-tracker"},[e._v(e._s(e.sectionTracker))])])],2)},F=[],V=function(){var e,t=this,n=t.$createElement,i=t._self._c||n;return i("BaseDropdown",{staticClass:"dropdown-custom",class:(e={},e[t.OpenedClass]=t.isOpen,e["dropdown-small"]=t.isSmall,e),attrs:{value:t.value},scopedSlots:t._u([{key:"dropdown",fn:function(e){var n=e.dropdownClasses;return[i("span",{staticClass:"visuallyhidden",attrs:{id:"DropdownLabel_"+t._uid}},[t._v(t._s(t.ariaLabel))]),i("button",{ref:"dropdownToggle",staticClass:"form-dropdown-toggle",class:n,attrs:{role:"button",id:"DropdownToggle_"+t._uid,"aria-labelledby":"DropdownLabel_"+t._uid+" DropdownToggle_"+t._uid,"aria-expanded":t.isOpen?"true":"false","aria-haspopup":"true"},on:{click:t.toggleDropdown,keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.closeAndFocusToggler.apply(null,arguments)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))}]}},[i("span",{staticClass:"form-dropdown-title"},[t._v(t._s(t.value))]),t._t("toggle-post-content")],2)]}}],null,!0)},[i("template",{slot:"eyebrow"},[t._t("eyebrow")],2),i("template",{slot:"after"},[t._t("default",null,null,{value:t.value,isOpen:t.isOpen,contentClasses:["form-dropdown-content",{"is-open":t.isOpen}],closeDropdown:t.closeDropdown,onChangeAction:t.onChangeAction,closeAndFocusToggler:t.closeAndFocusToggler,navigateOverOptions:t.navigateOverOptions,OptionClass:t.OptionClass,ActiveOptionClass:t.ActiveOptionClass})],2)],2)},U=[],H=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"form-element"},[e._t("dropdown",(function(){return[n("select",e._b({directives:[{name:"model",rawName:"v-model",value:e.modelValue,expression:"modelValue"}],class:e.dropdownClasses,on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t="_value"in e?e._value:e.value;return t}));e.modelValue=t.target.multiple?n:n[0]}}},"select",e.$attrs,!1),[e._t("default")],2)]}),{dropdownClasses:e.dropdownClasses,value:e.value}),n("InlineChevronDownIcon",{staticClass:"form-icon",attrs:{"aria-hidden":"true"}}),e.$slots.eyebrow?n("span",{staticClass:"form-label",attrs:{"aria-hidden":"true"}},[e._t("eyebrow")],2):e._e(),e._t("after")],2)},z=[],G=n("7948"),W={name:"BaseDropdown",inheritAttrs:!1,props:{value:{type:String,default:""}},components:{InlineChevronDownIcon:G["a"]},computed:{modelValue:{get:({value:e})=>e,set(e){this.$emit("input",e)}},dropdownClasses({value:e}){return["form-dropdown",{"form-dropdown-selectnone":""===e,"no-eyebrow":!this.$slots.eyebrow}]}}},Q=W,K=(n("ed71"),Object(w["a"])(Q,H,z,!1,null,"998803d8",null)),X=K.exports;const J="is-open",Y="option",Z="option-active";var ee={name:"DropdownCustom",components:{BaseDropdown:X},constants:{OpenedClass:J,OptionClass:Y,ActiveOptionClass:Z},props:{value:{type:String,default:""},ariaLabel:{type:String,default:""},isSmall:{type:Boolean,default:!1}},data(){return{isOpen:!1,OpenedClass:J,OptionClass:Y,ActiveOptionClass:Z}},mounted(){document.addEventListener("click",this.closeOnLoseFocus)},beforeDestroy(){document.removeEventListener("click",this.closeOnLoseFocus)},methods:{onChangeAction(e){this.$emit("input",e)},toggleDropdown(){this.isOpen?this.closeDropdown():this.openDropdown()},async closeAndFocusToggler(){this.closeDropdown(),await this.$nextTick(),this.$refs.dropdownToggle.focus({preventScroll:!0})},closeDropdown(){this.isOpen=!1,this.$emit("close")},openDropdown(){this.isOpen=!0,this.$emit("open"),this.focusActiveLink()},closeOnLoseFocus(e){!this.$el.contains(e.target)&&this.isOpen&&this.closeDropdown()},navigateOverOptions({target:e},t){const n=this.$el.querySelectorAll("."+Y),i=Array.from(n),s=i.indexOf(e),r=i[s+t];r&&r.focus({preventScroll:!0})},async focusActiveLink(){const e=this.$el.querySelector("."+Z);e&&(await this.$nextTick(),e.focus({preventScroll:!0}))}}},te=ee,ne=(n("e84c"),Object(w["a"])(te,V,U,!1,null,"12dd746a",null)),ie=ne.exports,se={name:"SecondaryDropdown",components:{DropdownCustom:ie},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sectionTracker:{type:String,required:!1}},methods:{ariaCurrent(e){return this.currentOption===e&&"section"},setActive(e,t,n,i){t(i),this.$emit("select-section",e.path),n()}}},re=se,oe=(n("5952"),Object(w["a"])(re,L,F,!1,null,"4a151342",null)),ae=oe.exports,ce=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("DropdownCustom",{staticClass:"tutorial-dropdown",attrs:{value:e.currentOption,"aria-label":"Current tutorial",isSmall:""},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.closeAndFocusToggler,s=t.contentClasses,r=t.closeDropdown,o=t.navigateOverOptions,a=t.OptionClass,c=t.ActiveOptionClass;return[n("ul",{staticClass:"options",class:s,attrs:{tabindex:"0"}},e._l(e.options,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(s){var l=s.title;return n("li",{staticClass:"chapter-list",attrs:{role:"group"}},[n("p",{staticClass:"chapter-name"},[e._v(e._s(l))]),n("ul",{attrs:{role:"listbox"}},e._l(t.projects,(function(t){return n("ReferenceUrlProvider",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.urlWithParams,l=t.title;return[n("router-link",{attrs:{to:s,custom:""},scopedSlots:e._u([{key:"default",fn:function(t){var s,u=t.navigate,d=t.isActive;return[n("li",{class:(s={},s[a]=!0,s[c]=d,s),attrs:{role:"option",value:l,"aria-selected":d,"aria-current":!!d&&"tutorial",tabindex:-1},on:{click:function(t){return e.setActive(u,r,t)},keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.setActive(u,r,t)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"])?null:i.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:i.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),o(t,1))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),o(t,-1))}]}},[e._v(" "+e._s(l)+" ")])]}}],null,!0)})]}}],null,!0)})})),1)])}}],null,!0)})})),1)]}}])})},le=[],ue={name:"PrimaryDropdown",components:{DropdownCustom:ie,ReferenceUrlProvider:A},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0}},methods:{setActive(e,t,n){e(n),t()}}},de=ue,pe=(n("e4e4"),Object(w["a"])(de,ce,le,!1,null,"78dc103f",null)),he=pe.exports;const me={title:"Introduction",url:"#introduction",reference:"introduction",sectionNumber:0,depth:0};var fe={name:"NavigationBar",components:{NavTitleContainer:$["a"],NavBase:N["a"],ReferenceUrlProvider:A,PrimaryDropdown:he,SecondaryDropdown:ae,MobileDropdown:E,ChevronIcon:k},mixins:[O["a"]],inject:["store","references"],props:{chapters:{type:Array,required:!0},technology:{type:String,required:!0},topic:{type:String,required:!0},rootReference:{type:String,required:!0},identifierUrl:{type:String,required:!0}},data(){return{currentSection:me,tutorialState:this.store.state}},watch:{pageSectionWithHighestVisibility(e){e&&(this.currentSection=e)}},computed:{currentProject(){return this.chapters.reduce((e,{projects:t})=>e.concat(t),[]).find(e=>e.reference===this.identifierUrl)},pageSections(){if(!this.currentProject)return[];const e=[me].concat(this.currentProject.sections);return this.tutorialState.linkableSections.map((t,n)=>{const i=e[n],s=this.references[i.reference],{url:r,title:o}=s||i;return{...t,title:o,path:r}})},optionsForSections(){return this.pageSections.map(({depth:e,path:t,title:n})=>({depth:e,path:t,title:n}))},pageSectionWithHighestVisibility(){return[...this.pageSections].sort((e,t)=>t.visibility-e.visibility).find(e=>e.visibility>0)},sectionIndicatorText(){const e=this.tutorialState.linkableSections.length-1,{sectionNumber:t}=this.currentSection||{};if(0!==t)return`(${t} of ${e})`}},methods:{onSelectSection(e){const t=e.split("#")[1];this.handleFocusAndScroll(t)}}},ve=fe,ge=(n("8782"),Object(w["a"])(ve,m,f,!1,null,"af20c2a0",null)),be=ge.exports,ye=n("bf08"),Ce=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"body"},[n("BodyContent",{attrs:{content:e.content}})],1)},we=[],_e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("article",{staticClass:"body-content"},e._l(e.content,(function(t,i){return n(e.componentFor(t),e._b({key:i,tag:"component",staticClass:"layout"},"component",e.propsFor(t),!1))})),1)},ke=[],Se=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"columns",class:e.classes},[e._l(e.columns,(function(t,i){return[n("Asset",{key:t.media,attrs:{identifier:t.media,videoAutoplays:!1}}),t.content?n("ContentNode",{key:i,attrs:{content:t.content}}):e._e()]}))],2)},xe=[],Te=n("80e4"),Ie=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseContentNode",{attrs:{content:e.articleContent}})},Ae=[],Oe=n("5677"),Ne={name:"ContentNode",components:{BaseContentNode:Oe["default"]},props:Oe["default"].props,computed:{articleContent(){return this.map(e=>{switch(e.type){case Oe["default"].BlockType.codeListing:return{...e,showLineNumbers:!0};case Oe["default"].BlockType.heading:{const{anchor:t,...n}=e;return n}default:return e}})}},methods:Oe["default"].methods,BlockType:Oe["default"].BlockType,InlineType:Oe["default"].InlineType},$e=Ne,Pe=(n("cb8d"),Object(w["a"])($e,Ie,Ae,!1,null,"3cfe1c35",null)),qe=Pe.exports,De={name:"Columns",components:{Asset:Te["a"],ContentNode:qe},props:{columns:{type:Array,required:!0}},computed:{classes(){return{"cols-2":2===this.columns.length,"cols-3":3===this.columns.length}}}},je=De,Re=(n("e9b0"),Object(w["a"])(je,Se,xe,!1,null,"30edf911",null)),Me=Re.exports,Be=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"content-and-media",class:e.classes},[n("ContentNode",{attrs:{content:e.content}}),n("Asset",{attrs:{identifier:e.media}})],1)},Ee=[];const Le={leading:"leading",trailing:"trailing"};var Fe={name:"ContentAndMedia",components:{Asset:Te["a"],ContentNode:qe},props:{content:qe.props.content,media:Te["a"].props.identifier,mediaPosition:{type:String,default:()=>Le.trailing,validator:e=>Object.prototype.hasOwnProperty.call(Le,e)}},computed:{classes(){return{"media-leading":this.mediaPosition===Le.leading,"media-trailing":this.mediaPosition===Le.trailing}}},MediaPosition:Le},Ve=Fe,Ue=(n("1006"),Object(w["a"])(Ve,Be,Ee,!1,null,"3fa44f9e",null)),He=Ue.exports,ze=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"full-width"},e._l(e.groups,(function(t,i){return n(e.componentFor(t),e._b({key:i,tag:"component",staticClass:"group"},"component",e.propsFor(t),!1),[n("ContentNode",{attrs:{content:t.content}})],1)})),1)},Ge=[],We=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.tag,{tag:"component",attrs:{id:e.anchor}},[e._t("default")],2)},Qe=[],Ke=n("72e7"),Xe={name:"LinkableElement",mixins:[Ke["a"]],inject:{navigationBarHeight:{default(){}},store:{default(){return{addLinkableSection(){},updateLinkableSection(){}}}}},props:{anchor:{type:String,required:!0},depth:{type:Number,default:()=>0},tag:{type:String,default:()=>"div"},title:{type:String,required:!0}},computed:{intersectionRootMargin(){const e=this.navigationBarHeight?`-${this.navigationBarHeight}px`:"0%";return e+" 0% -50% 0%"}},created(){this.store.addLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:0})},methods:{onIntersect(e){const t=Math.min(1,e.intersectionRatio);this.store.updateLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:t})}}},Je=Xe,Ye=Object(w["a"])(Je,We,Qe,!1,null,null,null),Ze=Ye.exports;const{BlockType:et}=qe;var tt={name:"FullWidth",components:{ContentNode:qe,LinkableElement:Ze},props:qe.props,computed:{groups:({content:e})=>e.reduce((e,t)=>0===e.length||t.type===et.heading?[...e,{heading:t.type===et.heading?t:null,content:[t]}]:[...e.slice(0,e.length-1),{heading:e[e.length-1].heading,content:e[e.length-1].content.concat(t)}],[])},methods:{componentFor(e){return e.heading?Ze:"div"},depthFor(e){switch(e.level){case 1:case 2:return 0;default:return 1}},propsFor(e){return e.heading?{anchor:e.heading.anchor,depth:this.depthFor(e.heading),title:e.heading.text}:{}}}},nt=tt,it=(n("aece"),Object(w["a"])(nt,ze,Ge,!1,null,"1f2be54b",null)),st=it.exports;const rt={columns:"columns",contentAndMedia:"contentAndMedia",fullWidth:"fullWidth"};var ot={name:"BodyContent",props:{content:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(rt,e))}},methods:{componentFor(e){return{[rt.columns]:Me,[rt.contentAndMedia]:He,[rt.fullWidth]:st}[e.kind]},propsFor(e){const{content:t,kind:n,media:i,mediaPosition:s}=e;return{[rt.columns]:{columns:t},[rt.contentAndMedia]:{content:t,media:i,mediaPosition:s},[rt.fullWidth]:{content:t}}[n]}},LayoutKind:rt},at=ot,ct=(n("1dd5"),Object(w["a"])(at,_e,ke,!1,null,"4d5a806e",null)),lt=ct.exports,ut={name:"Body",components:{BodyContent:lt},props:lt.props},dt=ut,pt=(n("5237"),Object(w["a"])(dt,Ce,we,!1,null,"6499e2f2",null)),ht=pt.exports,mt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialCTA",e._b({},"TutorialCTA",e.$props,!1))},ft=[],vt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BaseCTA",e._b({attrs:{label:"Next"}},"BaseCTA",e.baseProps,!1))},gt=[],bt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"call-to-action"},[n("Row",[n("LeftColumn",[n("span",{staticClass:"label"},[e._v(e._s(e.label))]),n("h2",[e._v(" "+e._s(e.title)+" ")]),e.abstract?n("ContentNode",{staticClass:"description",attrs:{content:[e.abstractParagraph]}}):e._e(),e.action?n("Button",{attrs:{action:e.action}}):e._e()],1),n("RightColumn",{staticClass:"right-column"},[e.media?n("Asset",{staticClass:"media",attrs:{identifier:e.media}}):e._e()],1)],1)],1)},yt=[],Ct=n("0f00"),wt=n("620a"),_t=n("c081"),kt={name:"CallToAction",components:{Asset:Te["a"],Button:_t["a"],ContentNode:Oe["default"],LeftColumn:{render(e){return e(wt["a"],{props:{span:{large:5,small:12}}},this.$slots.default)}},RightColumn:{render(e){return e(wt["a"],{props:{span:{large:6,small:12}}},this.$slots.default)}},Row:Ct["a"]},props:{title:{type:String,required:!0},label:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}},computed:{abstractParagraph(){return{type:"paragraph",inlineContent:this.abstract}}}},St=kt,xt=(n("80f7"),Object(w["a"])(St,bt,yt,!1,null,"2016b288",null)),Tt=xt.exports,It={name:"CallToAction",components:{BaseCTA:Tt},computed:{baseProps(){return{title:this.title,abstract:this.abstract,action:this.action,media:this.media}}},props:{title:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}}},At=It,Ot=Object(w["a"])(At,vt,gt,!1,null,null,null),Nt=Ot.exports,$t={name:"CallToAction",components:{TutorialCTA:Nt},props:Nt.props},Pt=$t,qt=(n("3e1b"),Object(w["a"])(Pt,mt,ft,!1,null,"426a965c",null)),Dt=qt.exports,jt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialHero",e._b({},"TutorialHero",e.$props,!1))},Rt=[],Mt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"tutorial-hero",attrs:{anchor:"introduction",title:e.sectionTitle}},[n("div",{staticClass:"hero dark"},[e.backgroundImageUrl?n("div",{staticClass:"bg",style:e.bgStyle}):e._e(),e._t("above-title"),n("Row",[n("Column",[n("Headline",{attrs:{level:1}},[e.chapter?n("template",{slot:"eyebrow"},[e._v(e._s(e.chapter))]):e._e(),e._v(" "+e._s(e.title)+" ")],2),e.content||e.video?n("div",{staticClass:"intro"},[e.content?n("ContentNode",{attrs:{content:e.content}}):e._e(),e.video?[n("p",[n("a",{staticClass:"call-to-action",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.toggleCallToActionModal.apply(null,arguments)}}},[e._v(" Watch intro video "),n("PlayIcon",{staticClass:"cta-icon icon-inline"})],1)]),n("GenericModal",{attrs:{visible:e.callToActionModalVisible,isFullscreen:"",theme:"dark"},on:{"update:visible":function(t){e.callToActionModalVisible=t}}},[n("Asset",{directives:[{name:"show",rawName:"v-show",value:e.callToActionModalVisible,expression:"callToActionModalVisible"}],ref:"asset",staticClass:"video-asset",attrs:{identifier:e.video},on:{videoEnded:e.handleVideoEnd}})],1)]:e._e()],2):e._e(),n("Metadata",{staticClass:"metadata",attrs:{projectFilesUrl:e.projectFilesUrl,estimatedTimeInMinutes:e.estimatedTimeInMinutes,xcodeRequirement:e.xcodeRequirementData}})],1)],1)],2)])},Bt=[],Et=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"headline"},[e.$slots.eyebrow?n("span",{staticClass:"eyebrow"},[e._t("eyebrow")],2):e._e(),n("Heading",{staticClass:"heading",attrs:{level:e.level}},[e._t("default")],2)],1)},Lt=[];const Ft=1,Vt=6,Ut={type:Number,required:!0,validator:e=>e>=Ft&&e<=Vt},Ht={name:"Heading",render:function(e){return e("h"+this.level,this.$slots.default)},props:{level:Ut}};var zt={name:"Headline",components:{Heading:Ht},props:{level:Ut}},Gt=zt,Wt=(n("323a"),Object(w["a"])(Gt,Et,Lt,!1,null,"1898f592",null)),Qt=Wt.exports,Kt=n("c161"),Xt=n("c4dd"),Jt=n("748c"),Yt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"metadata"},[e.estimatedTimeInMinutes?n("div",{staticClass:"item",attrs:{"aria-label":e.estimatedTimeInMinutes+" minutes estimated time"}},[n("div",{staticClass:"content",attrs:{"aria-hidden":"true"}},[n("div",{staticClass:"duration"},[e._v(" "+e._s(e.estimatedTimeInMinutes)+" "),n("div",{staticClass:"minutes"},[e._v("min")])])]),n("div",{staticClass:"bottom",attrs:{"aria-hidden":"true"}},[e._v("Estimated Time")])]):e._e(),e.projectFilesUrl?n("div",{staticClass:"item"},[n("DownloadIcon",{staticClass:"item-large-icon icon-inline"}),n("div",{staticClass:"content bottom"},[n("a",{staticClass:"content-link project-download",attrs:{href:e.projectFilesUrl}},[e._v(" Project files "),n("InlineDownloadIcon",{staticClass:"small-icon icon-inline"})],1)])],1):e._e(),e.xcodeRequirement?n("div",{staticClass:"item"},[n("XcodeIcon",{staticClass:"item-large-icon icon-inline"}),n("div",{staticClass:"content bottom"},[e.isTargetIDE?n("span",[e._v(e._s(e.xcodeRequirement.title))]):n("a",{staticClass:"content-link",attrs:{href:e.xcodeRequirement.url}},[e._v(" "+e._s(e.xcodeRequirement.title)+" "),n("InlineChevronRightIcon",{staticClass:"icon-inline small-icon xcode-icon"})],1)])],1):e._e()])},Zt=[],en=n("de60"),tn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"xcode-icon",attrs:{viewBox:"0 0 14 14",themeId:"xcode"}},[n("path",{attrs:{d:"M2.668 4.452l-1.338-2.229 0.891-0.891 2.229 1.338 1.338 2.228 3.667 3.666 0.194-0.194 2.933 2.933c0.13 0.155 0.209 0.356 0.209 0.576 0 0.497-0.403 0.9-0.9 0.9-0.22 0-0.421-0.079-0.577-0.209l0.001 0.001-2.934-2.933 0.181-0.181-3.666-3.666z"}}),n("path",{attrs:{d:"M11.824 1.277l-0.908 0.908c-0.091 0.091-0.147 0.216-0.147 0.354 0 0.106 0.033 0.205 0.090 0.286l-0.001-0.002 0.058 0.069 0.185 0.185c0.090 0.090 0.215 0.146 0.353 0.146 0.107 0 0.205-0.033 0.286-0.090l-0.002 0.001 0.069-0.057 0.909-0.908c0.118 0.24 0.187 0.522 0.187 0.82 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.577-0.068-0.826-0.189l0.011 0.005-5.5 5.5c0.116 0.238 0.184 0.518 0.184 0.813 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.576-0.068-0.826-0.189l0.011 0.005 0.908-0.909c0.090-0.090 0.146-0.215 0.146-0.353 0-0.107-0.033-0.205-0.090-0.286l0.001 0.002-0.057-0.069-0.185-0.185c-0.091-0.091-0.216-0.147-0.354-0.147-0.106 0-0.205 0.033-0.286 0.090l0.002-0.001-0.069 0.058-0.908 0.908c-0.116-0.238-0.184-0.518-0.184-0.813 0-1.045 0.847-1.892 1.892-1.892 0.293 0 0.571 0.067 0.819 0.186l-0.011-0.005 5.5-5.5c-0.116-0.238-0.184-0.519-0.184-0.815 0-1.045 0.847-1.892 1.892-1.892 0.296 0 0.577 0.068 0.827 0.19l-0.011-0.005z"}})])},nn=[],sn={name:"XcodeIcon",components:{SVGIcon:b["a"]}},rn=sn,on=Object(w["a"])(rn,tn,nn,!1,null,null,null),an=on.exports,cn=n("34b0"),ln=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-download-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},un=[],dn={name:"InlineDownloadIcon",components:{SVGIcon:b["a"]}},pn=dn,hn=Object(w["a"])(pn,ln,un,!1,null,null,null),mn=hn.exports,fn={name:"HeroMetadata",components:{InlineDownloadIcon:mn,InlineChevronRightIcon:cn["a"],DownloadIcon:en["a"],XcodeIcon:an},inject:["isTargetIDE"],props:{projectFilesUrl:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:Object,required:!1}}},vn=fn,gn=(n("5356"),Object(w["a"])(vn,Yt,Zt,!1,null,"2fa6f125",null)),bn=gn.exports,yn={name:"Hero",components:{PlayIcon:Xt["a"],GenericModal:Kt["a"],Column:{render(e){return e(wt["a"],{props:{span:{large:7,medium:9,small:12}}},this.$slots.default)}},ContentNode:Oe["default"],Headline:Qt,Metadata:bn,Row:Ct["a"],Asset:Te["a"],LinkableSection:Ze},inject:["references"],props:{title:{type:String,required:!0},chapter:{type:String},content:{type:Array},projectFiles:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:String,required:!1},video:{type:String},backgroundImage:{type:String}},computed:{backgroundImageUrl(){const e=this.references[this.backgroundImage]||{},{variants:t=[]}=e,n=t.find(e=>e.traits.includes("light"));return(n||{}).url},projectFilesUrl(){return this.projectFiles?Object(Jt["c"])(this.references[this.projectFiles].url):null},bgStyle(){return{backgroundImage:Object(Jt["f"])(this.backgroundImageUrl)}},xcodeRequirementData(){return this.references[this.xcodeRequirement]},sectionTitle(){return"Introduction"}},data(){return{callToActionModalVisible:!1}},methods:{async toggleCallToActionModal(){this.callToActionModalVisible=!0,await this.$nextTick();const e=this.$refs.asset.$el.querySelector("video");if(e)try{await e.play(),e.muted=!1}catch(t){}},handleVideoEnd(){this.callToActionModalVisible=!1}}},Cn=yn,wn=(n("0169"),Object(w["a"])(Cn,Mt,Bt,!1,null,"1a8cd6d3",null)),_n=wn.exports,kn={name:"Hero",components:{TutorialHero:_n},props:_n.props},Sn=kn,xn=(n("2f9d"),Object(w["a"])(Sn,jt,Rt,!1,null,"35a9482f",null)),Tn=xn.exports,In=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("TutorialAssessments",e._b({},"TutorialAssessments",e.$props,!1),[n("p",{attrs:{slot:"success"},slot:"success"},[e._v("Great job, you've answered all the questions for this article.")])])},An=[],On=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"assessments-wrapper",attrs:{anchor:e.anchor,title:e.title}},[n("Row",{ref:"assessments",staticClass:"assessments"},[n("MainColumn",[n("Row",{staticClass:"banner"},[n("HeaderColumn",[n("h2",{staticClass:"title"},[e._v(e._s(e.title))])])],1),e.completed?n("div",{staticClass:"success"},[e._t("success",(function(){return[n("p",[e._v(e._s(e.SuccessMessage))])]}))],2):n("div",[n("Progress",e._b({ref:"progress"},"Progress",e.progress,!1)),n("Quiz",{key:e.activeIndex,attrs:{choices:e.activeAssessment.choices,content:e.activeAssessment.content,isLast:e.isLast,title:e.activeAssessment.title},on:{submit:e.onSubmit,advance:e.onAdvance,"see-results":e.onSeeResults}})],1),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"assertive"}},[e.completed?e._t("success",(function(){return[e._v(" "+e._s(e.SuccessMessage)+" ")]})):e._e()],2)],1)],1)],1)},Nn=[],$n=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("Row",[n("p",{staticClass:"title"},[e._v("Question "+e._s(e.index)+" of "+e._s(e.total))])])},Pn=[],qn={name:"AssessmentsProgress",components:{Row:Ct["a"]},props:{index:{type:Number,required:!0},total:{type:Number,required:!0}}},Dn=qn,jn=(n("0530"),Object(w["a"])(Dn,$n,Pn,!1,null,"8ec95972",null)),Rn=jn.exports,Mn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"quiz"},[n("ContentNode",{staticClass:"title",attrs:{content:e.title}}),e.content?n("ContentNode",{staticClass:"question-content",attrs:{content:e.content}}):e._e(),n("div",{staticClass:"choices"},[e._l(e.choices,(function(t,i){return n("label",{key:i,class:e.choiceClasses[i]},[n(e.getIconComponent(i),{tag:"component",staticClass:"choice-icon"}),n("input",{directives:[{name:"model",rawName:"v-model",value:e.selectedIndex,expression:"selectedIndex"}],attrs:{type:"radio",name:"assessment"},domProps:{value:i,checked:e._q(e.selectedIndex,i)},on:{change:function(t){e.selectedIndex=i}}}),n("ContentNode",{staticClass:"question",attrs:{content:t.content}}),e.userChoices[i].checked?[n("ContentNode",{staticClass:"answer",attrs:{content:t.justification}}),t.reaction?n("p",{staticClass:"answer"},[e._v(e._s(t.reaction))]):e._e()]:e._e()],2)})),n("div",{staticClass:"visuallyhidden",attrs:{"aria-live":"assertive"}},[e._v(" "+e._s(e.ariaLiveText)+" ")])],2),n("div",{staticClass:"controls"},[n("ButtonLink",{staticClass:"check",attrs:{disabled:null===e.selectedIndex||e.showNextQuestion},nativeOn:{click:function(t){return e.submit.apply(null,arguments)}}},[e._v(" Submit ")]),e.isLast?n("ButtonLink",{staticClass:"results",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.seeResults.apply(null,arguments)}}},[e._v(" Next ")]):n("ButtonLink",{staticClass:"next",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.advance.apply(null,arguments)}}},[e._v(" Next Question ")])],1)],1)},Bn=[],En=n("76ab"),Ln=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"reset-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"reset-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M3.828 4.539l0.707-0.707 5.657 5.657-0.707 0.707-5.657-5.657z"}}),n("path",{attrs:{d:"M3.828 9.489l5.657-5.657 0.707 0.707-5.657 5.657-0.707-0.707z"}})])},Fn=[],Vn={name:"ResetCircleIcon",components:{SVGIcon:b["a"]}},Un=Vn,Hn=Object(w["a"])(Un,Ln,Fn,!1,null,null,null),zn=Hn.exports,Gn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"check-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"check-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M9.626 3.719l0.866 0.5-3.5 6.062-3.464-2 0.5-0.866 2.6 1.5z"}})])},Wn=[],Qn={name:"CheckCircleIcon",components:{SVGIcon:b["a"]}},Kn=Qn,Xn=Object(w["a"])(Kn,Gn,Wn,!1,null,null,null),Jn=Xn.exports,Yn={name:"Quiz",components:{CheckCircleIcon:Jn,ResetCircleIcon:zn,ContentNode:Oe["default"],ButtonLink:En["a"]},props:{content:{type:Array,required:!1},choices:{type:Array,required:!0},isLast:{type:Boolean,default:!1},title:{type:Array,required:!0}},data(){return{userChoices:this.choices.map(()=>({checked:!1})),selectedIndex:null,checkedIndex:null}},computed:{correctChoices(){return this.choices.reduce((e,t,n)=>t.isCorrect?e.add(n):e,new Set)},choiceClasses(){return this.userChoices.map((e,t)=>({choice:!0,active:this.selectedIndex===t,disabled:e.checked||this.showNextQuestion,correct:e.checked&&this.choices[t].isCorrect,incorrect:e.checked&&!this.choices[t].isCorrect}))},showNextQuestion(){return Array.from(this.correctChoices).every(e=>this.userChoices[e].checked)},ariaLiveText:({checkedIndex:e,choices:t})=>{if(null===e)return"";const{isCorrect:n}=t[e];return`Answer number ${e+1} is ${n?"correct":"incorrect"}`}},methods:{getIconComponent(e){const t=this.userChoices[e];if(t&&t.checked)return this.choices[e].isCorrect?Jn:zn},submit(){this.$set(this.userChoices,this.selectedIndex,{checked:!0}),this.checkedIndex=this.selectedIndex,this.$emit("submit")},advance(){this.$emit("advance")},seeResults(){this.$emit("see-results")}}},Zn=Yn,ei=(n("5c7b"),Object(w["a"])(Zn,Mn,Bn,!1,null,"455ff2a6",null)),ti=ei.exports;const ni=12,ii="Great job, you've answered all the questions for this tutorial.";var si={name:"Assessments",constants:{SuccessMessage:ii},components:{LinkableSection:Ze,Quiz:ti,Progress:Rn,Row:Ct["a"],HeaderColumn:{render(e){return e(wt["a"],{props:{isCentered:{large:!0},span:{large:10}}},this.$slots.default)}},MainColumn:{render(e){return e(wt["a"],{props:{isCentered:{large:!0},span:{large:10,medium:10,small:12}}},this.$slots.default)}}},props:{assessments:{type:Array,required:!0},anchor:{type:String,required:!0}},inject:["navigationBarHeight"],data(){return{activeIndex:0,completed:!1,SuccessMessage:ii}},computed:{activeAssessment(){return this.assessments[this.activeIndex]},isLast(){return this.activeIndex===this.assessments.length-1},progress(){return{index:this.activeIndex+1,total:this.assessments.length}},title(){return"Check Your Understanding"}},methods:{scrollTo(e,t=0){e.scrollIntoView(!0),window.scrollBy(0,-this.navigationBarHeight-t)},onSubmit(){this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,ni)})},onAdvance(){this.activeIndex+=1,this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,ni)})},onSeeResults(){this.completed=!0,this.$nextTick(()=>{this.scrollTo(this.$refs.assessments.$el,ni)})}}},ri=si,oi=(n("53b5"),Object(w["a"])(ri,On,Nn,!1,null,"c1de71de",null)),ai=oi.exports,ci={name:"Assessments",components:{TutorialAssessments:ai},props:ai.props},li=ci,ui=(n("f264"),Object(w["a"])(li,In,An,!1,null,"3c94366b",null)),di=ui.exports;const pi={articleBody:"articleBody",callToAction:"callToAction",hero:"hero",assessments:"assessments"};var hi={name:"Article",components:{NavigationBar:be,PortalTarget:h["PortalTarget"]},mixins:[ye["a"]],inject:{isTargetIDE:{default:!1},store:{default(){return{reset(){}}}}},props:{hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},references:{type:Object,required:!0},sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(pi,e))},identifierUrl:{type:String,required:!0}},computed:{heroSection(){return this.sections.find(this.isHero)},heroTitle(){return(this.heroSection||{}).title},pageTitle(){return this.heroTitle?`${this.heroTitle} — ${this.metadata.category} Tutorials`:void 0},pageDescription:({heroSection:e,extractFirstParagraphText:t})=>e?t(e.content):null},methods:{componentFor(e){const{kind:t}=e;return{[pi.articleBody]:ht,[pi.callToAction]:Dt,[pi.hero]:Tn,[pi.assessments]:di}[t]},isHero(e){return e.kind===pi.hero},propsFor(e){const{abstract:t,action:n,anchor:i,assessments:s,backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:c,kind:l,media:u,projectFiles:d,title:p,video:h,xcodeRequirement:m}=e;return{[pi.articleBody]:{content:a},[pi.callToAction]:{abstract:t,action:n,media:u,title:p},[pi.hero]:{backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:c,projectFiles:d,title:p,video:h,xcodeRequirement:m},[pi.assessments]:{anchor:i,assessments:s}}[l]}},provide(){return{references:this.references}},created(){this.store.reset()},SectionKind:pi},mi=hi,fi=(n("3a78"),Object(w["a"])(mi,d,p,!1,null,"d9f204d0",null)),vi=fi.exports,gi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"tutorial"},[e.isTargetIDE?e._e():n("NavigationBar",{attrs:{technology:e.metadata.category,chapters:e.hierarchy.modules,topic:e.tutorialTitle||"",rootReference:e.hierarchy.reference,identifierUrl:e.identifierUrl}}),n("main",{attrs:{id:"main",role:"main",tabindex:"0"}},[e._l(e.sections,(function(e,t){return n("Section",{key:t,attrs:{section:e}})})),n("BreakpointEmitter",{on:{change:e.handleBreakpointChange}})],2),n("PortalTarget",{attrs:{name:"modal-destination",multiple:""}})],1)},bi=[],yi=n("66c9"),Ci=n("7689"),wi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"sections"},e._l(e.tasks,(function(t,i){return n("Section",e._b({key:i,attrs:{id:t.anchor,sectionNumber:i+1,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}},"Section",t,!1))})),1)},_i=[],ki=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("LinkableSection",{staticClass:"section",attrs:{anchor:e.anchor,title:e.introProps.title}},[n("Intro",e._b({},"Intro",e.introProps,!1)),e.stepsSection.length>0?n("Steps",{attrs:{content:e.stepsSection,isRuntimePreviewVisible:e.isRuntimePreviewVisible,sectionNumber:e.sectionNumber},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}}):e._e()],1)},Si=[],xi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"intro-container"},[n("Row",{class:["intro","intro-"+e.sectionNumber,{ide:e.isTargetIDE}]},[n("Column",{staticClass:"left"},[n("Headline",{attrs:{level:2}},[n("router-link",{attrs:{slot:"eyebrow",to:e.sectionLink},slot:"eyebrow"},[e._v(" Section "+e._s(e.sectionNumber)+" ")]),e._v(" "+e._s(e.title)+" ")],1),n("ContentNode",{attrs:{content:e.content}})],1),n("Column",{staticClass:"right"},[n("div",{staticClass:"media"},[e.media?n("Asset",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e()],1)])],1),e.expandedSections.length>0?n("ExpandedIntro",{staticClass:"expanded-intro",attrs:{content:e.expandedSections}}):e._e()],1)},Ti=[],Ii={name:"SectionIntro",inject:{isClientMobile:{default:()=>!1},isTargetIDE:{default:()=>!1}},components:{Asset:Te["a"],ContentNode:Oe["default"],ExpandedIntro:lt,Headline:Qt,Row:Ct["a"],Column:{render(e){return e(wt["a"],{props:{span:{large:6,small:12}}},this.$slots.default)}}},props:{sectionAnchor:{type:String,required:!0},content:{type:Array,required:!0},media:{type:String,required:!0},title:{type:String,required:!0},sectionNumber:{type:Number,required:!0},expandedSections:{type:Array,default:()=>[]}},methods:{focus(){this.$emit("focus",this.media)}},computed:{sectionLink(){return{path:this.$route.path,hash:this.sectionAnchor,query:this.$route.query}}}},Ai=Ii,Oi=(n("4896"),Object(w["a"])(Ai,xi,Ti,!1,null,"54daa228",null)),Ni=Oi.exports,$i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"steps"},[n("div",{staticClass:"content-container"},e._l(e.contentNodes,(function(t,i){return n(t.component,e._b({key:i,ref:"contentNodes",refInFor:!0,tag:"component",class:e.contentClass(i),attrs:{currentIndex:e.activeStep}},"component",t.props,!1))})),1),e.isBreakpointSmall?e._e():n("BackgroundTheme",{staticClass:"asset-container",class:e.assetContainerClasses},[n("transition",{attrs:{name:"fade"}},[e.visibleAsset.media?n("div",{key:e.visibleAsset.media,class:["asset-wrapper",{ide:e.isTargetIDE}]},[n("Asset",{ref:"asset",staticClass:"step-asset",attrs:{identifier:e.visibleAsset.media,showsReplayButton:"",showsVideoControls:!1}})],1):e._e(),e.visibleAsset.code?n("CodePreview",{attrs:{code:e.visibleAsset.code,preview:e.visibleAsset.runtimePreview,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{"runtime-preview-toggle":e.onRuntimePreviewToggle}},[e.visibleAsset.runtimePreview?n("transition",{attrs:{name:"fade"}},[n("Asset",{key:e.visibleAsset.runtimePreview,attrs:{identifier:e.visibleAsset.runtimePreview}})],1):e._e()],1):e._e()],1)],1)],1)},Pi=[],qi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["code-preview",{ide:e.isTargetIDE}]},[n("CodeTheme",[e.code?n("CodeListing",e._b({attrs:{showLineNumbers:""}},"CodeListing",e.codeProps,!1)):e._e()],1),n("div",{staticClass:"runtime-preview",class:e.runtimePreviewClasses,style:e.previewStyles},[n("div",{staticClass:"runtimve-preview__container"},[n("button",{staticClass:"header",attrs:{disabled:!e.hasRuntimePreview,title:e.runtimePreviewTitle},on:{click:e.togglePreview}},[n("span",{staticClass:"runtime-preview-label",attrs:{"aria-label":e.textAriaLabel}},[e._v(e._s(e.togglePreviewText))]),n("DiagonalArrowIcon",{staticClass:"icon-inline preview-icon",class:[e.shouldDisplayHideLabel?"preview-hide":"preview-show"]})],1),n("transition",{on:{leave:e.handleLeave}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.shouldDisplayHideLabel,expression:"shouldDisplayHideLabel"}],staticClass:"runtime-preview-asset"},[e._t("default")],2)])],1)])],1)},Di=[],ji=n("7b69"),Ri=n("6667"),Mi=n("8590");const{BreakpointName:Bi}=o["a"].constants;function Ei({width:e,height:t},n=1){const i=400,s=e<=i?1.75:3;return{width:e/(s/n),height:t/(s/n)}}var Li={name:"CodePreview",inject:["references","isTargetIDE","store"],components:{DiagonalArrowIcon:Ri["a"],CodeListing:ji["a"],CodeTheme:Mi["a"]},props:{code:{type:String,required:!0},preview:{type:String,required:!1},isRuntimePreviewVisible:{type:Boolean,required:!0}},data(){return{tutorialState:this.store.state}},computed:{currentBreakpoint(){return this.tutorialState.breakpoint},hasRuntimePreview(){return!!this.preview},previewAssetSize(){const e=this.hasRuntimePreview?this.references[this.preview]:{},t=(e.variants||[{}])[0]||{},n={width:900};let i=t.size||{};i.width||i.height||(i=n);const s=this.currentBreakpoint===Bi.medium?.8:1;return Ei(i,s)},previewSize(){const e={width:102};return this.shouldDisplayHideLabel&&this.previewAssetSize?{width:this.previewAssetSize.width}:e},previewStyles(){const{width:e}=this.previewSize;return{width:e+"px"}},codeProps(){return this.references[this.code]},runtimePreviewClasses(){return{collapsed:!this.shouldDisplayHideLabel,disabled:!this.hasRuntimePreview,"runtime-preview-ide":this.isTargetIDE}},shouldDisplayHideLabel(){return this.hasRuntimePreview&&this.isRuntimePreviewVisible},runtimePreviewTitle(){return this.hasRuntimePreview?null:"No preview available for this step."},togglePreviewText(){return this.hasRuntimePreview?"Preview":"No Preview"},textAriaLabel:({shouldDisplayHideLabel:e,togglePreviewText:t})=>`${t}, ${e?"Hide":"Show"}`},methods:{handleLeave(e,t){setTimeout(t,200)},togglePreview(){this.hasRuntimePreview&&this.$emit("runtime-preview-toggle",!this.isRuntimePreviewVisible)}}},Fi=Li,Vi=(n("5053"),Object(w["a"])(Fi,qi,Di,!1,null,"9acc0234",null)),Ui=Vi.exports,Hi=n("3908"),zi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{style:e.backgroundStyle},[e._t("default")],2)},Gi=[],Wi={name:"BackgroundTheme",data(){return{codeThemeState:yi["a"].state}},computed:{backgroundStyle(){const{codeColors:e}=this.codeThemeState;return e?{"--background":e.background}:null}}},Qi=Wi,Ki=Object(w["a"])(Qi,zi,Gi,!1,null,null,null),Xi=Ki.exports,Ji=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["step-container","step-"+e.stepNumber]},[n("div",{ref:"step",staticClass:"step",class:{focused:e.isActive},attrs:{"data-index":e.index}},[n("p",{staticClass:"step-label"},[e._v("Step "+e._s(e.stepNumber))]),n("ContentNode",{attrs:{content:e.content}}),e.caption&&e.caption.length>0?n("ContentNode",{staticClass:"caption",attrs:{content:e.caption}}):e._e()],1),e.isBreakpointSmall||!e.isTargetIDE?n("div",{staticClass:"media-container"},[e.media?n("Asset",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e(),e.code?n("MobileCodePreview",{attrs:{code:e.code}},[e.runtimePreview?n("Asset",{staticClass:"preview",attrs:{identifier:e.runtimePreview}}):e._e()],1):e._e()],1):e._e()])},Yi=[],Zi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("BackgroundTheme",{staticClass:"mobile-code-preview"},[e.code?n("GenericModal",{staticClass:"full-code-listing-modal",attrs:{theme:e.isTargetIDE?"code":"light",codeBackgroundColorOverride:e.modalBackgroundColor,isFullscreen:"",visible:e.fullCodeIsVisible},on:{"update:visible":function(t){e.fullCodeIsVisible=t}}},[n("div",{staticClass:"full-code-listing-modal-content"},[n("CodeTheme",[n("CodeListing",e._b({staticClass:"full-code-listing",attrs:{showLineNumbers:""}},"CodeListing",e.codeProps,!1))],1)],1)]):e._e(),n("CodeTheme",[e.code?n("MobileCodeListing",e._b({attrs:{showLineNumbers:""},on:{"file-name-click":e.toggleFullCode}},"MobileCodeListing",e.codeProps,!1)):e._e()],1),n("CodeTheme",{staticClass:"preview-toggle-container"},[n("PreviewToggle",{attrs:{isActionable:!!e.$slots.default},on:{click:e.togglePreview}})],1),e.$slots.default?n("GenericModal",{staticClass:"runtime-preview-modal",attrs:{theme:e.isTargetIDE?"dynamic":"light",isFullscreen:"",visible:e.previewIsVisible},on:{"update:visible":function(t){e.previewIsVisible=t}}},[n("div",{staticClass:"runtime-preview-modal-content"},[n("span",{staticClass:"runtime-preview-label"},[e._v("Preview")]),e._t("default")],2)]):e._e()],1)},es=[],ts=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"code-listing-preview",attrs:{"data-syntax":e.syntax}},[n("CodeListing",{attrs:{fileName:e.fileName,syntax:e.syntax,fileType:e.fileType,content:e.previewedLines,startLineNumber:e.displayedRange.start,highlights:e.highlights,showLineNumbers:"",isFileNameActionable:""},on:{"file-name-click":function(t){return e.$emit("file-name-click")}}})],1)},ns=[],is={name:"MobileCodeListing",components:{CodeListing:ji["a"]},props:{fileName:String,syntax:String,fileType:String,content:{type:Array,required:!0},highlights:{type:Array,default:()=>[]}},computed:{highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},firstHighlightRange(){if(0===this.highlightedLineNumbers.size)return{start:1,end:this.content.length};const e=Math.min(...this.highlightedLineNumbers.values());let t=e;while(this.highlightedLineNumbers.has(t+1))t+=1;return{start:e,end:t}},displayedRange(){const e=this.firstHighlightRange,t=e.start-2<1?1:e.start-2,n=e.end+3>=this.content.length+1?this.content.length+1:e.end+3;return{start:t,end:n}},previewedLines(){return this.content.slice(this.displayedRange.start-1,this.displayedRange.end-1)}}},ss=is,rs=(n("fae5"),Object(w["a"])(ss,ts,ns,!1,null,"5ad4e037",null)),os=rs.exports,as=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"toggle-preview"},[e.isActionable?n("a",{staticClass:"toggle-text",attrs:{href:"#"},on:{click:function(t){return t.preventDefault(),e.$emit("click")}}},[e._v(" Preview "),n("InlinePlusCircleIcon",{staticClass:"toggle-icon icon-inline"})],1):n("span",{staticClass:"toggle-text"},[e._v(" No preview ")])])},cs=[],ls=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"inline-plus-circle-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-plus-circle"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z"}}),n("path",{attrs:{d:"M4 6.52h6v1h-6v-1z"}}),n("path",{attrs:{d:"M6.5 4.010h1v6h-1v-6z"}})])},us=[],ds={name:"InlinePlusCircleIcon",components:{SVGIcon:b["a"]}},ps=ds,hs=Object(w["a"])(ps,ls,us,!1,null,null,null),ms=hs.exports,fs={name:"MobileCodePreviewToggle",components:{InlinePlusCircleIcon:ms},props:{isActionable:{type:Boolean,required:!0}}},vs=fs,gs=(n("e97b"),Object(w["a"])(vs,as,cs,!1,null,"d0709828",null)),bs=gs.exports,ys={name:"MobileCodePreview",inject:["references","isTargetIDE","store"],components:{GenericModal:Kt["a"],CodeListing:ji["a"],MobileCodeListing:os,PreviewToggle:bs,CodeTheme:Mi["a"],BackgroundTheme:Xi},props:{code:{type:String,required:!0}},computed:{codeProps(){return this.references[this.code]},modalBackgroundColor(){const{codeColors:e}=this.store.state;return e?e.background:null}},data(){return{previewIsVisible:!1,fullCodeIsVisible:!1}},methods:{togglePreview(){this.previewIsVisible=!this.previewIsVisible},toggleFullCode(){this.fullCodeIsVisible=!this.fullCodeIsVisible}}},Cs=ys,ws=(n("4d5c"),Object(w["a"])(Cs,Zi,es,!1,null,"3bee1128",null)),_s=ws.exports;const{BreakpointName:ks}=o["a"].constants;var Ss={name:"Step",components:{Asset:Te["a"],MobileCodePreview:_s,ContentNode:Oe["default"]},inject:["isTargetIDE","isClientMobile","store"],props:{code:{type:String,required:!1},content:{type:Array,required:!0},caption:{type:Array,required:!1},media:{type:String,required:!1},runtimePreview:{type:String,required:!1},sectionNumber:{type:Number,required:!0},stepNumber:{type:Number,required:!0},numberOfSteps:{type:Number,required:!0},index:{type:Number,required:!0},currentIndex:{type:Number,required:!0}},data(){return{tutorialState:this.store.state}},computed:{isBreakpointSmall(){return this.tutorialState.breakpoint===ks.small},isActive:({index:e,currentIndex:t})=>e===t}},xs=Ss,Ts=(n("52fd"),Object(w["a"])(xs,Ji,Yi,!1,null,"295730d0",null)),Is=Ts.exports;const{BreakpointName:As}=o["a"].constants,{IntersectionDirections:Os}=Ke["a"].constants,Ns="-35% 0% -65% 0%";var $s={name:"SectionSteps",components:{ContentNode:Oe["default"],Step:Is,Asset:Te["a"],CodePreview:Ui,BackgroundTheme:Xi},mixins:[Ke["a"]],constants:{IntersectionMargins:Ns},inject:["isTargetIDE","store"],data(){const e=this.content.findIndex(this.isStepNode),{code:t,media:n,runtimePreview:i}=this.content[e]||{};return{tutorialState:this.store.state,visibleAsset:{media:n,code:t,runtimePreview:i},activeStep:e}},computed:{assetContainerClasses(){return{"for-step-code":!!this.visibleAsset.code,ide:this.isTargetIDE}},numberOfSteps(){return this.content.filter(this.isStepNode).length},contentNodes(){return this.content.reduce(({stepCounter:e,nodes:t},n,i)=>{const{type:s,...r}=n,o=this.isStepNode(n),a=o?e+1:e;return o?{stepCounter:e+1,nodes:t.concat({component:Is,type:s,props:{...r,stepNumber:a,index:i,numberOfSteps:this.numberOfSteps,sectionNumber:this.sectionNumber}})}:{stepCounter:e,nodes:t.concat({component:Oe["default"],type:s,props:{content:[n]}})}},{stepCounter:0,nodes:[]}).nodes},isBreakpointSmall(){return this.tutorialState.breakpoint===As.small},stepNodes:({contentNodes:e,isStepNode:t})=>e.filter(t),intersectionRootMargin:()=>Ns},async mounted(){await Object(Hi["b"])(8),this.findClosestStepNode()},methods:{isStepNode({type:e}){return"step"===e},contentClass(e){return{["interstitial interstitial-"+(e+1)]:!this.isStepNode(this.content[e])}},onReverseIntoLastStep(){const{asset:e}=this.$refs;if(e){const t=e.$el.querySelector("video");t&&(t.currentTime=0,t.play().catch(()=>{}))}},onFocus(e){const{code:t,media:n,runtimePreview:i}=this.content[e];this.activeStep=e,this.visibleAsset={code:t,media:n,runtimePreview:i}},onRuntimePreviewToggle(e){this.$emit("runtime-preview-toggle",e)},findClosestStepNode(){const e=.333*window.innerHeight;let t=null,n=0;this.stepNodes.forEach(i=>{const{index:s}=i.props,r=this.$refs.contentNodes[s].$refs.step;if(!r)return;const{top:o,bottom:a}=r.getBoundingClientRect(),c=o-e,l=a-e,u=Math.abs(c+l);(0===n||u<=n)&&(n=u,t=s)}),null!==t&&this.onFocus(t)},getIntersectionTargets(){const{stepNodes:e,$refs:t}=this;return e.map(({props:{index:e}})=>t.contentNodes[e].$refs.step)},onIntersect(e){const{target:t,isIntersecting:n}=e;if(!n)return;const i=parseFloat(t.getAttribute("data-index"));this.intersectionScrollDirection===Os.down&&i===this.stepNodes[this.stepNodes.length-1].props.index&&this.onReverseIntoLastStep(),this.onFocus(i)}},props:{content:{type:Array,required:!0},isRuntimePreviewVisible:{type:Boolean,require:!0},sectionNumber:{type:Number,required:!0}}},Ps=$s,qs=(n("00f4"),Object(w["a"])(Ps,$i,Pi,!1,null,"25d30c2c",null)),Ds=qs.exports,js={name:"Section",components:{Intro:Ni,LinkableSection:Ze,Steps:Ds},computed:{introProps(){const[{content:e,media:t},...n]=this.contentSection;return{content:e,expandedSections:n,media:t,sectionAnchor:this.anchor,sectionNumber:this.sectionNumber,title:this.title}}},props:{anchor:{type:String,required:!0},title:{type:String,required:!0},contentSection:{type:Array,required:!0},stepsSection:{type:Array,required:!0},sectionNumber:{type:Number,required:!0},isRuntimePreviewVisible:{type:Boolean,required:!0}},methods:{onRuntimePreviewToggle(e){this.$emit("runtime-preview-toggle",e)}}},Rs=js,Ms=(n("9dc4"),Object(w["a"])(Rs,ki,Si,!1,null,"6b3a0b3a",null)),Bs=Ms.exports,Es={name:"SectionList",components:{Section:Bs},data(){return{isRuntimePreviewVisible:!0}},props:{tasks:{type:Array,required:!0}},methods:{onRuntimePreviewToggle(e){this.isRuntimePreviewVisible=e}}},Ls=Es,Fs=(n("4d07"),Object(w["a"])(Ls,wi,_i,!1,null,"79a75e9e",null)),Vs=Fs.exports;const Us={assessments:ai,hero:_n,tasks:Vs,callToAction:Nt},Hs=new Set(Object.keys(Us)),zs={name:"TutorialSection",render:function(e){const{kind:t,...n}=this.section,i=Us[t];return i?e(i,{props:n}):null},props:{section:{type:Object,required:!0,validator:e=>Hs.has(e.kind)}}};var Gs={name:"Tutorial",mixins:[ye["a"],Ci["a"]],components:{NavigationBar:be,Section:zs,PortalTarget:h["PortalTarget"],BreakpointEmitter:o["a"]},inject:["isTargetIDE","store"],computed:{heroSection(){return this.sections.find(({kind:e})=>"hero"===e)},tutorialTitle(){return(this.heroSection||{}).title},pageTitle(){return this.tutorialTitle?`${this.tutorialTitle} — ${this.metadata.category} Tutorials`:void 0},pageDescription:({heroSection:e,extractFirstParagraphText:t})=>e?t(e.content):null},props:{sections:{type:Array,required:!0},references:{type:Object,required:!0},hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},identifierUrl:{type:String,required:!0}},methods:{handleBreakpointChange(e){this.store.updateBreakpoint(e)},handleCodeColorsChange(e){yi["a"].updateCodeColors(e)}},created(){this.store.reset()},mounted(){this.$bridge.on("codeColors",this.handleCodeColorsChange),this.$bridge.send({type:"requestCodeColors"})},provide(){return{references:this.references,isClientMobile:this.isClientMobile}},beforeDestroy(){this.$bridge.off("codeColors",this.handleCodeColorsChange)}},Ws=Gs,Qs=(n("1a91"),Object(w["a"])(Ws,gi,bi,!1,null,"0f871b08",null)),Ks=Qs.exports,Xs=n("0caf"),Js=n("146e");const Ys={article:"article",tutorial:"project"};var Zs={name:"Topic",inject:{isTargetIDE:{default:!1}},mixins:[Xs["a"],Js["a"]],data(){return{topicData:null}},computed:{navigationBarHeight(){return this.isTargetIDE?0:52},store(){return u},hierarchy(){const{hierarchy:e={}}=this.topicData,{technologyNavigation:t=["overview","tutorials","resources"]}=e||{};return{...e,technologyNavigation:t}},topicKey:({$route:e,topicData:t})=>[e.path,t.identifier.interfaceLanguage].join()},beforeRouteEnter(e,t,n){e.meta.skipFetchingData?n(e=>e.newContentMounted()):Object(r["b"])(e,t,n).then(e=>n(t=>{t.topicData=e})).catch(n)},beforeRouteUpdate(e,t,n){Object(r["d"])(e,t)?Object(r["b"])(e,t,n).then(e=>{this.topicData=e,n()}).catch(n):n()},created(){this.store.reset()},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge)},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge)},methods:{componentFor(e){const{kind:t}=e;return{[Ys.article]:vi,[Ys.tutorial]:Ks}[t]},propsFor(e){const{hierarchy:t,kind:n,metadata:i,references:s,sections:r,identifier:o}=e;return{[Ys.article]:{hierarchy:t,metadata:i,references:s,sections:r,identifierUrl:o.url},[Ys.tutorial]:{hierarchy:t,metadata:i,references:s,sections:r,identifierUrl:o.url}}[n]}},provide(){return{navigationBarHeight:this.navigationBarHeight,store:this.store}},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},er=Zs,tr=Object(w["a"])(er,i,s,!1,null,null,null);t["default"]=tr.exports},"323a":function(e,t,n){"use strict";n("0b61")},"32b1":function(e,t,n){},"3a78":function(e,t,n){"use strict";n("90d1")},"3e1b":function(e,t,n){"use strict";n("c5c1")},4896:function(e,t,n){"use strict";n("fa9c")},"4b4a":function(e,t,n){},"4d07":function(e,t,n){"use strict";n("b52e")},"4d5c":function(e,t,n){"use strict";n("7730")},"4eea":function(e,t,n){},5053:function(e,t,n){"use strict";n("61a8")},"51d0":function(e,t,n){},5237:function(e,t,n){"use strict";n("4b4a")},"525c":function(e,t,n){},"52fd":function(e,t,n){"use strict";n("cda1")},5356:function(e,t,n){"use strict";n("7e3c")},"53b5":function(e,t,n){"use strict";n("a662")},5913:function(e,t,n){},5952:function(e,t,n){"use strict";n("14b7")},"5c7b":function(e,t,n){"use strict";n("311e")},"61a8":function(e,t,n){},"63a8":function(e,t,n){},"653a":function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("router-link",{staticClass:"nav-title-content",attrs:{to:e.to}},[n("span",{staticClass:"title"},[e._t("default")],2),n("span",{staticClass:"subhead"},[e._v(" "),e._t("subhead")],2)])},s=[],r={name:"NavTitleContainer",props:{to:{type:[String,Object],required:!0}}},o=r,a=(n("f1e6"),n("2877")),c=Object(a["a"])(o,i,s,!1,null,"854b4dd6",null);t["a"]=c.exports},7096:function(e,t,n){},7730:function(e,t,n){},"7b17":function(e,t,n){},"7e3c":function(e,t,n){},"80f7":function(e,t,n){"use strict";n("4eea")},8782:function(e,t,n){"use strict";n("51d0")},"90d1":function(e,t,n){},"9dc4":function(e,t,n){"use strict";n("fe9d")},a0d4:function(e,t,n){},a662:function(e,t,n){},a95e:function(e,t,n){},aece:function(e,t,n){"use strict";n("c0df")},b52e:function(e,t,n){},c0df:function(e,t,n){},c5c1:function(e,t,n){},cb8d:function(e,t,n){"use strict";n("0466")},cda1:function(e,t,n){},d86f:function(e,t,n){},db87:function(e,t,n){},dbd9:function(e,t,n){},dbeb:function(e,t,n){},de60:function(e,t,n){"use strict";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("SVGIcon",{staticClass:"download-icon",attrs:{viewBox:"0 0 14 14",themeId:"download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},s=[],r=n("be08"),o={name:"DownloadIcon",components:{SVGIcon:r["a"]}},a=o,c=n("2877"),l=Object(c["a"])(a,i,s,!1,null,null,null);t["a"]=l.exports},e4e4:function(e,t,n){"use strict";n("f767")},e688:function(e,t,n){"use strict";n("5913")},e84c:function(e,t,n){"use strict";n("d86f")},e97b:function(e,t,n){"use strict";n("dbd9")},e9b0:function(e,t,n){"use strict";n("ee09")},ed71:function(e,t,n){"use strict";n("7096")},ee09:function(e,t,n){},f1e6:function(e,t,n){"use strict";n("a0d4")},f264:function(e,t,n){"use strict";n("63a8")},f767:function(e,t,n){},fa9c:function(e,t,n){},fae5:function(e,t,n){"use strict";n("32b1")},fe9d:function(e,t,n){}}]); \ No newline at end of file diff --git a/docs/js/tutorials-overview.2a32cd6f.js b/docs/js/tutorials-overview.2a32cd6f.js new file mode 100644 index 0000000..3025a8a --- /dev/null +++ b/docs/js/tutorials-overview.2a32cd6f.js @@ -0,0 +1,10 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["tutorials-overview"],{"032c":function(t,e,n){"use strict";n("9b79")},"0b61":function(t,e,n){},"13d5":function(t,e,n){},"15ac":function(t,e,n){"use strict";n("ddf1")},"17d2":function(t,e,n){},"202a":function(t,e,n){"use strict";n("5899")},"277b":function(t,e,n){"use strict";n("60ca")},"29e3":function(t,e,n){"use strict";n("0b61")},3233:function(t,e,n){"use strict";n("8d8f")},4230:function(t,e,n){"use strict";n("52f5")},"441c":function(t,e,n){},"52f5":function(t,e,n){},5899:function(t,e,n){},"60ca":function(t,e,n){},"653a":function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("router-link",{staticClass:"nav-title-content",attrs:{to:t.to}},[n("span",{staticClass:"title"},[t._t("default")],2),n("span",{staticClass:"subhead"},[t._v(" "),t._t("subhead")],2)])},s=[],a={name:"NavTitleContainer",props:{to:{type:[String,Object],required:!0}}},o=a,r=(n("f1e6"),n("2877")),c=Object(r["a"])(o,i,s,!1,null,"854b4dd6",null);e["a"]=c.exports},6899:function(t,e,n){"use strict";n("441c")},"6fb0":function(t,e,n){"use strict";n("eec8")},"7c60":function(t,e,n){},"8d8f":function(t,e,n){},"8f86":function(t,e,n){},9359:function(t,e,n){"use strict";n("9e08")},9792:function(t,e,n){"use strict";n("c8c8")},"9b79":function(t,e,n){},"9e08":function(t,e,n){},a0d4:function(t,e,n){},a975:function(t,e,n){"use strict";n("7c60")},aebc:function(t,e,n){"use strict";n("c0c9")},b9bf:function(t,e,n){"use strict";n("13d5")},c0c9:function(t,e,n){},c8c8:function(t,e,n){},ca4e:function(t,e,n){"use strict";n("17d2")},ddf1:function(t,e,n){},de60:function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"download-icon",attrs:{viewBox:"0 0 14 14",themeId:"download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},s=[],a=n("be08"),o={name:"DownloadIcon",components:{SVGIcon:a["a"]}},r=o,c=n("2877"),l=Object(c["a"])(r,i,s,!1,null,null,null);e["a"]=l.exports},dfc1:function(t,e,n){},ed64:function(t,e,n){"use strict";n("dfc1")},eec8:function(t,e,n){},f025:function(t,e,n){"use strict";n.r(e);var i,s,a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.topicData?n("Overview",t._b({key:t.topicKey},"Overview",t.overviewProps,!1)):t._e()},o=[],r=n("25a9"),c=n("0caf"),l=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tutorials-overview"},[t.isTargetIDE?t._e():n("Nav",{staticClass:"theme-dark",attrs:{sections:t.otherSections}},[t._v(" "+t._s(t.title)+" ")]),n("main",{staticClass:"main",attrs:{id:"main",role:"main",tabindex:"0"}},[n("div",{staticClass:"radial-gradient"},[t._t("above-hero"),t.heroSection?n("Hero",{attrs:{action:t.heroSection.action,content:t.heroSection.content,estimatedTime:t.metadata.estimatedTime,image:t.heroSection.image,title:t.heroSection.title}}):t._e()],2),t.otherSections.length>0?n("LearningPath",{attrs:{sections:t.otherSections}}):t._e()],1)],1)},u=[],m=n("e425"),d={state:{activeTutorialLink:null,activeVolume:null,references:{}},reset(){this.state.activeTutorialLink=null,this.state.activeVolume=null,this.state.references={}},setActiveSidebarLink(t){this.state.activeTutorialLink=t},setActiveVolume(t){this.state.activeVolume=t},setReferences(t){this.state.references=t}},p=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("NavBase",[n("NavTitleContainer",{attrs:{to:t.buildUrl(t.$route.path,t.$route.query)}},[n("template",{slot:"default"},[t._t("default")],2),n("template",{slot:"subhead"},[t._v(t._s(t.$tc("tutorials.title",2)))])],2),n("template",{slot:"menu-items"},[n("NavMenuItemBase",{staticClass:"in-page-navigation"},[n("TutorialsNavigation",{attrs:{sections:t.sections}})],1),t._t("menu-items")],2)],2)},h=[],v=n("cbcf"),f=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("nav",{staticClass:"tutorials-navigation"},[n("TutorialsNavigationList",t._l(t.sections,(function(e,i){return n("li",{key:e.name+"_"+i,class:t.sectionClasses(e)},[t.isVolume(e)?n(t.componentForVolume(e),t._b({tag:"component",on:{"select-menu":t.onSelectMenu,"deselect-menu":t.onDeselectMenu}},"component",t.propsForVolume(e),!1),t._l(e.chapters,(function(e){return n("li",{key:e.name},[n("TutorialsNavigationLink",[t._v(" "+t._s(e.name)+" ")])],1)})),0):t.isResources(e)?n("TutorialsNavigationLink",[t._v(" "+t._s(t.$t("sections.resources"))+" ")]):t._e()],1)})),0)],1)},b=[],_=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("router-link",{staticClass:"tutorials-navigation-link",class:{active:t.active},attrs:{to:t.fragment},nativeOn:{click:function(e){return t.handleFocusAndScroll(t.fragment.hash)}}},[t._t("default")],2)},g=[],C=n("002d"),y=n("8a61"),T={name:"TutorialsNavigationLink",mixins:[y["a"]],inject:{store:{default:()=>({state:{}})}},data(){return{state:this.store.state}},computed:{active:({state:{activeTutorialLink:t},text:e})=>e===t,fragment:({text:t,$route:e})=>({hash:Object(C["a"])(t),query:e.query}),text:({$slots:{default:[{text:t}]}})=>t.trim()}},S=T,V=(n("6fb0"),n("2877")),k=Object(V["a"])(S,_,g,!1,null,"e9f9b59c",null),I=k.exports,x=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ol",{staticClass:"tutorials-navigation-list",attrs:{role:"list"}},[t._t("default")],2)},N=[],O={name:"TutorialsNavigationList"},$=O,j=(n("202a"),Object(V["a"])($,x,N,!1,null,"6f2800d1",null)),A=j.exports,w=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tutorials-navigation-menu",class:{collapsed:t.collapsed}},[n("button",{staticClass:"toggle",attrs:{"aria-expanded":t.collapsed?"false":"true",type:"button"},on:{click:function(e){return e.stopPropagation(),t.onClick.apply(null,arguments)}}},[n("span",{staticClass:"text"},[t._v(t._s(t.title))]),n("InlineCloseIcon",{staticClass:"toggle-icon icon-inline"})],1),n("transition-expand",[t.collapsed?t._e():n("div",{staticClass:"tutorials-navigation-menu-content"},[n("TutorialsNavigationList",{attrs:{"aria-label":t.$t("tutorials.nav.chapters")}},[t._t("default")],2)],1)])],1)},q=[],L=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"inline-close-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-close"}},[n("path",{attrs:{d:"M11.91 1l1.090 1.090-4.917 4.915 4.906 4.905-1.090 1.090-4.906-4.905-4.892 4.894-1.090-1.090 4.892-4.894-4.903-4.904 1.090-1.090 4.903 4.904z"}})])},E=[],M=n("be08"),D={name:"InlineCloseIcon",components:{SVGIcon:M["a"]}},F=D,R=Object(V["a"])(F,L,E,!1,null,null,null),B=R.exports,G={name:"TransitionExpand",functional:!0,render(t,e){const n={props:{name:"expand"},on:{afterEnter(t){t.style.height="auto"},enter(t){const{width:e}=getComputedStyle(t);t.style.width=e,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";const{height:n}=getComputedStyle(t);t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=n})},leave(t){const{height:e}=getComputedStyle(t);t.style.height=e,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}};return t("transition",n,e.children)}},z=G,P=(n("032c"),Object(V["a"])(z,i,s,!1,null,null,null)),H=P.exports,K={name:"TutorialsNavigationMenu",components:{InlineCloseIcon:B,TransitionExpand:H,TutorialsNavigationList:A},props:{collapsed:{type:Boolean,default:!0},title:{type:String,required:!0}},methods:{onClick(){this.collapsed?this.$emit("select-menu",this.title):this.$emit("deselect-menu")}}},U=K,Z=(n("277b"),Object(V["a"])(U,w,q,!1,null,"489416f8",null)),J=Z.exports;const Q={resources:"resources",volume:"volume"};var W={name:"TutorialsNavigation",components:{TutorialsNavigationLink:I,TutorialsNavigationList:A,TutorialsNavigationMenu:J},constants:{SectionKind:Q},inject:{store:{default:()=>({setActiveVolume(){}})}},data(){return{state:this.store.state}},props:{sections:{type:Array,required:!0}},computed:{activeVolume:({state:t})=>t.activeVolume},methods:{sectionClasses(t){return{volume:this.isVolume(t),"volume--named":this.isNamedVolume(t),resource:this.isResources(t)}},componentForVolume:({name:t})=>t?J:A,isResources:({kind:t})=>t===Q.resources,isVolume:({kind:t})=>t===Q.volume,activateFirstNamedVolume(){const{isNamedVolume:t,sections:e}=this,n=e.find(t);n&&this.store.setActiveVolume(n.name)},isNamedVolume(t){return this.isVolume(t)&&t.name},onDeselectMenu(){this.store.setActiveVolume(null)},onSelectMenu(t){this.store.setActiveVolume(t)},propsForVolume({name:t}){const{activeVolume:e}=this;return t?{collapsed:t!==e,title:t}:{"aria-label":"Chapters"}}},created(){this.activateFirstNamedVolume()}},X=W,Y=(n("a975"),Object(V["a"])(X,f,b,!1,null,"79093ed6",null)),tt=Y.exports,et=n("653a"),nt=n("d26a"),it=n("863d");const st={resources:"resources",volume:"volume"};var at={name:"Nav",constants:{SectionKind:st},components:{NavMenuItemBase:it["a"],NavTitleContainer:et["a"],TutorialsNavigation:tt,NavBase:v["a"]},props:{sections:{type:Array,require:!0}},methods:{buildUrl:nt["b"]}},ot=at,rt=(n("9359"),Object(V["a"])(ot,p,h,!1,null,"b806ee20",null)),ct=rt.exports,lt=n("bf08"),ut=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"hero"},[n("div",{staticClass:"copy-container"},[n("h1",{staticClass:"title"},[t._v(t._s(t.title))]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e(),t.estimatedTime?n("p",{staticClass:"meta"},[n("TimerIcon"),n("span",{staticClass:"meta-content"},[n("strong",{staticClass:"time"},[t._v(t._s(t.estimatedTime))]),n("span",[t._v(" "+t._s(t.$t("tutorials.estimated-time")))])])],1):t._e(),t.action?n("CallToActionButton",{attrs:{action:t.action,"aria-label":t.$t("tutorials.overriding-title",{newTitle:t.action.overridingTitle,title:t.title}),isDark:""}}):t._e()],1),t.image?n("Asset",{attrs:{identifier:t.image}}):t._e()],1)},mt=[],dt=n("80e4"),pt=n("c081"),ht=n("5677"),vt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"timer-icon",attrs:{viewBox:"0 0 14 14",themeId:"timer"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 2c-2.761 0-5 2.239-5 5s2.239 5 5 5c2.761 0 5-2.239 5-5v0c0-2.761-2.239-5-5-5v0z"}}),n("path",{attrs:{d:"M6.51 3.51h1.5v3.5h-1.5v-3.5z"}}),n("path",{attrs:{d:"M6.51 7.010h4v1.5h-4v-1.5z"}})])},ft=[],bt={name:"TimerIcon",components:{SVGIcon:M["a"]}},_t=bt,gt=Object(V["a"])(_t,vt,ft,!1,null,null,null),Ct=gt.exports,yt={name:"Hero",components:{Asset:dt["a"],CallToActionButton:pt["a"],ContentNode:ht["default"],TimerIcon:Ct},props:{action:{type:Object,required:!1},content:{type:Array,required:!1},estimatedTime:{type:String,required:!1},image:{type:String,required:!1},title:{type:String,required:!0}}},Tt=yt,St=(n("29e3"),Object(V["a"])(Tt,ut,mt,!1,null,"383dab71",null)),Vt=St.exports,kt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"learning-path",class:t.classes},[n("div",{staticClass:"main-container"},[t.isTargetIDE?t._e():n("div",{staticClass:"secondary-content-container"},[n("TutorialsNavigation",{attrs:{sections:t.sections,"aria-label":t.$t("sections.on-this-page")}})],1),n("div",{staticClass:"primary-content-container"},[n("div",{staticClass:"content-sections-container"},[t._l(t.volumes,(function(e,i){return n("Volume",t._b({key:"volume_"+i,staticClass:"content-section"},"Volume",t.propsFor(e),!1))})),t._l(t.otherSections,(function(e,i){return n(t.componentFor(e),t._b({key:"resource_"+i,tag:"component",staticClass:"content-section"},"component",t.propsFor(e),!1))}))],2)])])])},It=[],xt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"resources",attrs:{id:"resources",tabindex:"-1"}},[n("VolumeName",{attrs:{name:t.$t("sections.resources"),content:t.content}}),n("TileGroup",{attrs:{tiles:t.tiles}})],1)},Nt=[],Ot=n("72e7");const $t={topOneThird:"-30% 0% -70% 0%",center:"-50% 0% -50% 0%"};var jt={mixins:[Ot["a"]],computed:{intersectionRoot(){return null},intersectionRootMargin(){return $t.center}},methods:{onIntersect(t){if(!t.isIntersecting)return;const e=this.onIntersectViewport;e?e():console.warn("onIntersectViewportCenter not implemented")}}},At=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"volume-name"},[t.image?n("Asset",{staticClass:"image",attrs:{identifier:t.image,"aria-hidden":"true"}}):t._e(),n("h2",{staticClass:"name"},[t._v(" "+t._s(t.name)+" ")]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e()],1)},wt=[],qt={name:"VolumeName",components:{ContentNode:ht["default"],Asset:dt["a"]},props:{image:{type:String,required:!1},content:{type:Array,required:!1},name:{type:String,required:!1}}},Lt=qt,Et=(n("ca4e"),Object(V["a"])(Lt,At,wt,!1,null,"569db166",null)),Mt=Et.exports,Dt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tile-group",class:t.countClass},t._l(t.tiles,(function(e){return n("Tile",t._b({key:e.title},"Tile",t.propsFor(e),!1))})),1)},Ft=[],Rt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tile"},[t.identifier?n("div",{staticClass:"icon"},[n(t.iconComponent,{tag:"component"})],1):t._e(),n("div",{staticClass:"title"},[t._v(t._s(t.title))]),n("ContentNode",{attrs:{content:t.content}}),t.action?n("DestinationDataProvider",{attrs:{destination:t.action},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.url,s=e.title;return n("Reference",{staticClass:"link",attrs:{url:i}},[t._v(" "+t._s(s)+" "),n("InlineChevronRightIcon",{staticClass:"link-icon icon-inline"})],1)}}],null,!1,3874201962)}):t._e()],1)},Bt=[],Gt=n("3b96"),zt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"document-icon",attrs:{viewBox:"0 0 14 14",themeId:"document"}},[n("path",{attrs:{d:"M11.2,5.3,8,2l-.1-.1H2.8V12.1h8.5V6.3l-.1-1ZM8,3.2l2,2.1H8Zm2.4,8H3.6V2.8H7V6.3h3.4Z"}})])},Pt=[],Ht={name:"DocumentIcon",components:{SVGIcon:M["a"]}},Kt=Ht,Ut=(n("3233"),Object(V["a"])(Kt,zt,Pt,!1,null,"3a80772b",null)),Zt=Ut.exports,Jt=n("de60"),Qt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"forum-icon",attrs:{viewBox:"0 0 14 14",themeId:"forum"}},[n("path",{attrs:{d:"M13 1v9h-7l-1.5 3-1.5-3h-2v-9zM12 2h-10v7h1.616l0.884 1.763 0.88-1.763h6.62z"}}),n("path",{attrs:{d:"M3 4h8.001v1h-8.001v-1z"}}),n("path",{attrs:{d:"M3 6h8.001v1h-8.001v-1z"}})])},Wt=[],Xt={name:"ForumIcon",components:{SVGIcon:M["a"]}},Yt=Xt,te=Object(V["a"])(Yt,Qt,Wt,!1,null,null,null),ee=te.exports,ne=n("c4dd"),ie=n("86d8"),se=n("34b0"),ae=n("c7ea");const oe={documentation:"documentation",downloads:"downloads",featured:"featured",forums:"forums",sampleCode:"sampleCode",videos:"videos"};var re={name:"Tile",constants:{Identifier:oe},components:{DestinationDataProvider:ae["a"],InlineChevronRightIcon:se["a"],ContentNode:ht["default"],CurlyBracketsIcon:Gt["a"],DocumentIcon:Zt,DownloadIcon:Jt["a"],ForumIcon:ee,PlayIcon:ne["a"],Reference:ie["a"]},props:{action:{type:Object,required:!1},content:{type:Array,required:!0},identifier:{type:String,required:!1},title:{type:String,require:!0}},computed:{iconComponent:({identifier:t})=>({[oe.documentation]:Zt,[oe.downloads]:Jt["a"],[oe.forums]:ee,[oe.sampleCode]:Gt["a"],[oe.videos]:ne["a"]}[t])}},ce=re,le=(n("6899"),Object(V["a"])(ce,Rt,Bt,!1,null,"96abac22",null)),ue=le.exports,me={name:"TileGroup",components:{Tile:ue},props:{tiles:{type:Array,required:!0}},computed:{countClass:({tiles:t})=>"count-"+t.length},methods:{propsFor:({action:t,content:e,identifier:n,title:i})=>({action:t,content:e,identifier:n,title:i})}},de=me,pe=(n("f0ca"),Object(V["a"])(de,Dt,Ft,!1,null,"015f9f13",null)),he=pe.exports,ve={name:"Resources",mixins:[jt],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{VolumeName:Mt,TileGroup:he},computed:{intersectionRootMargin:()=>$t.topOneThird},props:{content:{type:Array,required:!1},tiles:{type:Array,required:!0}},methods:{onIntersectViewport(){this.store.setActiveSidebarLink("Resources"),this.store.setActiveVolume(null)}}},fe=ve,be=(n("ed64"),Object(V["a"])(fe,xt,Nt,!1,null,"7f8022c1",null)),_e=be.exports,ge=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"volume"},[t.name?n("VolumeName",t._b({},"VolumeName",{name:t.name,image:t.image,content:t.content},!1)):t._e(),t._l(t.chapters,(function(e,i){return n("Chapter",{key:e.name,staticClass:"tile",attrs:{content:e.content,image:e.image,name:e.name,number:i+1,topics:t.lookupTopics(e.tutorials),volumeHasName:!!t.name}})}))],2)},Ce=[],ye=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"chapter",attrs:{id:t.anchor,tabindex:"-1"}},[n("div",{staticClass:"info"},[n("Asset",{attrs:{identifier:t.image,"aria-hidden":"true"}}),n("div",{staticClass:"intro"},[n(t.volumeHasName?"h3":"h2",{tag:"component",staticClass:"name",attrs:{"aria-label":t.name+" - "+t.$tc("tutorials.sections.chapter",{number:t.number})}},[n("span",{staticClass:"eyebrow",attrs:{"aria-hidden":"true"}},[t._v(" "+t._s(t.$t("tutorials.sections.chapter",{number:t.number}))+" ")]),n("span",{staticClass:"name-text",attrs:{"aria-hidden":"true"}},[t._v(t._s(t.name))])]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e()],1)],1),n("TopicList",{attrs:{topics:t.topics}})],1)},Te=[],Se=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ol",{staticClass:"topic-list"},t._l(t.topics,(function(e){return n("li",{key:e.url,staticClass:"topic",class:[t.kindClassFor(e),{"no-time-estimate":!e.estimatedTime}]},[n("div",{staticClass:"topic-icon"},[n(t.iconComponent(e),{tag:"component"})],1),n("router-link",{staticClass:"container",attrs:{to:t.buildUrl(e.url,t.$route.query),"aria-label":t.ariaLabelFor(e)}},[n("div",{staticClass:"link"},[t._v(t._s(e.title))]),e.estimatedTime?n("div",{staticClass:"time"},[n("TimerIcon"),n("span",{staticClass:"time-label"},[t._v(t._s(e.estimatedTime))])],1):t._e()])],1)})),0)},Ve=[],ke=n("a9f1"),Ie=n("8d2d");const xe={article:"article",tutorial:"project"},Ne={article:"article",tutorial:"tutorial"},Oe={[xe.article]:"Article",[xe.tutorial]:"Tutorial"};var $e={name:"ChapterTopicList",components:{TimerIcon:Ct},constants:{TopicKind:xe,TopicKindClass:Ne,TopicKindIconLabel:Oe},props:{topics:{type:Array,required:!0}},methods:{buildUrl:nt["b"],iconComponent:({kind:t})=>({[xe.article]:ke["a"],[xe.tutorial]:Ie["a"]}[t]),kindClassFor:({kind:t})=>({[xe.article]:Ne.article,[xe.tutorial]:Ne.tutorial}[t]),formatTime(t){return t.replace("min"," "+this.$t("tutorials.time.minutes.full")).replace("hrs"," "+this.$t("tutorials.time.hours.full"))},ariaLabelFor(t){const{title:e,estimatedTime:n,kind:i}=t,s=[e,Oe[i]];return n&&s.push(`${this.formatTime(n)} ${this.$t("tutorials.estimated-time")}`),s.join(" - ")}}},je=$e,Ae=(n("9792"),Object(V["a"])(je,Se,Ve,!1,null,"45ec37c5",null)),we=Ae.exports,qe={name:"Chapter",mixins:[jt],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{Asset:dt["a"],ContentNode:ht["default"],TopicList:we},props:{content:{type:Array,required:!1},image:{type:String,required:!0},name:{type:String,required:!0},number:{type:Number,required:!0},topics:{type:Array,required:!0},volumeHasName:{type:Boolean,default:!1}},computed:{anchor:({name:t})=>Object(C["a"])(t),intersectionRootMargin:()=>$t.topOneThird},methods:{onIntersectViewport(){this.store.setActiveSidebarLink(this.name),this.volumeHasName||this.store.setActiveVolume(null)}}},Le=qe,Ee=(n("4230"),Object(V["a"])(Le,ye,Te,!1,null,"7468bc5e",null)),Me=Ee.exports,De={name:"Volume",mixins:[jt],components:{VolumeName:Mt,Chapter:Me},computed:{references:({store:t})=>t.state.references,intersectionRootMargin:()=>$t.topOneThird},inject:{store:{default:()=>({setActiveVolume(){},state:{references:{}}})}},props:{chapters:{type:Array,required:!0},content:{type:Array,required:!1},image:{type:String,required:!1},name:{type:String,required:!1}},methods:{lookupTopics(t){return t.reduce((t,e)=>t.concat(this.references[e]||[]),[])},onIntersectViewport(){this.name&&this.store.setActiveVolume(this.name)}}},Fe=De,Re=(n("b9bf"),Object(V["a"])(Fe,ge,Ce,!1,null,"540dbf10",null)),Be=Re.exports;const Ge={resources:"resources",volume:"volume"};var ze={name:"LearningPath",components:{Resources:_e,TutorialsNavigation:tt,Volume:Be},constants:{SectionKind:Ge},inject:{isTargetIDE:{default:!1}},props:{sections:{type:Array,required:!0,validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(Ge,t.kind))}},computed:{classes:({isTargetIDE:t})=>({ide:t}),partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===Ge.volume?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),volumes:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1]},methods:{componentFor:({kind:t})=>({[Ge.resources]:_e,[Ge.volume]:Be}[t]),propsFor:({chapters:t,content:e,image:n,kind:i,name:s,tiles:a})=>({[Ge.resources]:{content:e,tiles:a},[Ge.volume]:{chapters:t,content:e,image:n,name:s}}[i])}},Pe=ze,He=(n("aebc"),Object(V["a"])(Pe,kt,It,!1,null,"69a72bbc",null)),Ke=He.exports;const Ue={hero:"hero",resources:"resources",volume:"volume"};var Ze={name:"TutorialsOverview",components:{Hero:Vt,LearningPath:Ke,Nav:ct},mixins:[lt["a"]],constants:{SectionKind:Ue},inject:{isTargetIDE:{default:!1}},props:{metadata:{type:Object,default:()=>({})},references:{type:Object,default:()=>({})},sections:{type:Array,default:()=>[],validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(Ue,t.kind))}},computed:{pageTitle:({title:t})=>[t,"Tutorials"].filter(Boolean).join(" "),pageDescription:({heroSection:t,extractFirstParagraphText:e})=>t?e(t.content):null,partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===Ue.hero?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),heroSections:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1],heroSection:({heroSections:t})=>t[0],store:()=>d,title:({metadata:{category:t=""}})=>t},provide(){return{store:this.store}},created(){m["a"].setAvailableLocales(this.metadata.availableLocales),this.store.reset(),this.store.setReferences(this.references)},watch:{references(t){this.store.setReferences(t)},"metadata.availableLocales":function(t){m["a"].setAvailableLocales(t)}}},Je=Ze,Qe=(n("15ac"),Object(V["a"])(Je,l,u,!1,null,"29ed9b58",null)),We=Qe.exports,Xe=n("146e"),Ye={name:"TutorialsOverview",components:{Overview:We},mixins:[c["a"],Xe["a"]],data(){return{topicData:null}},computed:{overviewProps:({topicData:{metadata:t,references:e,sections:n}})=>({metadata:t,references:e,sections:n}),topicKey:({$route:t,topicData:e})=>[t.path,e.identifier.interfaceLanguage].join()},beforeRouteEnter(t,e,n){t.meta.skipFetchingData?n(t=>t.newContentMounted()):Object(r["c"])(t,e,n).then(t=>n(e=>{e.topicData=t})).catch(n)},beforeRouteUpdate(t,e,n){Object(r["e"])(t,e)?Object(r["c"])(t,e,n).then(t=>{this.topicData=t,n()}).catch(n):n()},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge)},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge)},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},tn=Ye,en=Object(V["a"])(tn,a,o,!1,null,null,null);e["default"]=en.exports},f0ca:function(t,e,n){"use strict";n("8f86")},f1e6:function(t,e,n){"use strict";n("a0d4")}}]); \ No newline at end of file diff --git a/docs/js/tutorials-overview.2cadc732.js b/docs/js/tutorials-overview.2cadc732.js deleted file mode 100644 index 5c3bf68..0000000 --- a/docs/js/tutorials-overview.2cadc732.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * This source file is part of the Swift.org open source project - * - * Copyright (c) 2021 Apple Inc. and the Swift project authors - * Licensed under Apache License v2.0 with Runtime Library Exception - * - * See https://swift.org/LICENSE.txt for license information - * See https://swift.org/CONTRIBUTORS.txt for Swift project authors - */ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["tutorials-overview"],{"032c":function(t,e,n){"use strict";n("9b79")},"0431":function(t,e,n){"use strict";n("43e0")},"095b":function(t,e,n){"use strict";n("3601")},"17d2":function(t,e,n){},"1a3b":function(t,e,n){},"1cc5":function(t,e,n){"use strict";n("5780")},"202a":function(t,e,n){"use strict";n("5899")},"2c95":function(t,e,n){},3233:function(t,e,n){"use strict";n("8d8f")},3601:function(t,e,n){},"43e0":function(t,e,n){},"441c":function(t,e,n){},"521e":function(t,e,n){"use strict";n("1a3b")},5668:function(t,e,n){"use strict";n("82d9")},5780:function(t,e,n){},5899:function(t,e,n){},6211:function(t,e,n){"use strict";n("75f3")},"653a":function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("router-link",{staticClass:"nav-title-content",attrs:{to:t.to}},[n("span",{staticClass:"title"},[t._t("default")],2),n("span",{staticClass:"subhead"},[t._v(" "),t._t("subhead")],2)])},a=[],s={name:"NavTitleContainer",props:{to:{type:[String,Object],required:!0}}},o=s,r=(n("f1e6"),n("2877")),c=Object(r["a"])(o,i,a,!1,null,"854b4dd6",null);e["a"]=c.exports},6899:function(t,e,n){"use strict";n("441c")},"6fb0":function(t,e,n){"use strict";n("eec8")},"75f3":function(t,e,n){},"82d9":function(t,e,n){},"8d8f":function(t,e,n){},"8f86":function(t,e,n){},"97b7":function(t,e,n){"use strict";n("c1e7")},"9b79":function(t,e,n){},a0d4:function(t,e,n){},aaa7:function(t,e,n){},b185:function(t,e,n){},b347:function(t,e,n){"use strict";n("aaa7")},c1e7:function(t,e,n){},ca4e:function(t,e,n){"use strict";n("17d2")},d647:function(t,e,n){"use strict";n("b185")},de60:function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"download-icon",attrs:{viewBox:"0 0 14 14",themeId:"download"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z"}}),n("path",{attrs:{d:"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z"}})])},a=[],s=n("be08"),o={name:"DownloadIcon",components:{SVGIcon:s["a"]}},r=o,c=n("2877"),l=Object(c["a"])(r,i,a,!1,null,null,null);e["a"]=l.exports},eec8:function(t,e,n){},f025:function(t,e,n){"use strict";n.r(e);var i,a,s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.topicData?n("Overview",t._b({key:t.topicKey},"Overview",t.overviewProps,!1)):t._e()},o=[],r=n("25a9"),c=n("0caf"),l=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tutorials-overview"},[t.isTargetIDE?t._e():n("Nav",{staticClass:"theme-dark",attrs:{sections:t.otherSections}},[t._v(" "+t._s(t.title)+" ")]),n("main",{staticClass:"main",attrs:{id:"main",role:"main",tabindex:"0"}},[n("div",{staticClass:"radial-gradient"},[t._t("above-hero"),t.heroSection?n("Hero",{attrs:{action:t.heroSection.action,content:t.heroSection.content,estimatedTime:t.metadata.estimatedTime,image:t.heroSection.image,title:t.heroSection.title}}):t._e()],2),t.otherSections.length>0?n("LearningPath",{attrs:{sections:t.otherSections}}):t._e()],1)],1)},u=[],m={state:{activeTutorialLink:null,activeVolume:null},reset(){this.state.activeTutorialLink=null,this.state.activeVolume=null},setActiveSidebarLink(t){this.state.activeTutorialLink=t},setActiveVolume(t){this.state.activeVolume=t}},d=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("NavBase",[n("NavTitleContainer",{attrs:{to:t.buildUrl(t.$route.path,t.$route.query)}},[n("template",{slot:"default"},[t._t("default")],2),n("template",{slot:"subhead"},[t._v("Tutorials")])],2),n("template",{slot:"menu-items"},[n("NavMenuItemBase",{staticClass:"in-page-navigation"},[n("TutorialsNavigation",{attrs:{sections:t.sections}})],1),t._t("menu-items")],2)],2)},p=[],h=n("cbcf"),v=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("nav",{staticClass:"tutorials-navigation"},[n("TutorialsNavigationList",t._l(t.sections,(function(e,i){return n("li",{key:e.name+"_"+i,class:t.sectionClasses(e)},[t.isVolume(e)?n(t.componentForVolume(e),t._b({tag:"component",on:{"select-menu":t.onSelectMenu,"deselect-menu":t.onDeselectMenu}},"component",t.propsForVolume(e),!1),t._l(e.chapters,(function(e){return n("li",{key:e.name},[n("TutorialsNavigationLink",[t._v(" "+t._s(e.name)+" ")])],1)})),0):t.isResources(e)?n("TutorialsNavigationLink",[t._v(" Resources ")]):t._e()],1)})),0)],1)},f=[],b=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("router-link",{staticClass:"tutorials-navigation-link",class:{active:t.active},attrs:{to:t.fragment},nativeOn:{click:function(e){return t.handleFocusAndScroll(t.fragment.hash)}}},[t._t("default")],2)},g=[],_=n("002d"),C=n("8a61"),y={name:"TutorialsNavigationLink",mixins:[C["a"]],inject:{store:{default:()=>({state:{}})}},data(){return{state:this.store.state}},computed:{active:({state:{activeTutorialLink:t},text:e})=>e===t,fragment:({text:t,$route:e})=>({hash:Object(_["a"])(t),query:e.query}),text:({$slots:{default:[{text:t}]}})=>t.trim()}},T=y,S=(n("6fb0"),n("2877")),V=Object(S["a"])(T,b,g,!1,null,"e9f9b59c",null),k=V.exports,I=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ol",{staticClass:"tutorials-navigation-list",attrs:{role:"list"}},[t._t("default")],2)},x=[],N={name:"TutorialsNavigationList"},O=N,j=(n("202a"),Object(S["a"])(O,I,x,!1,null,"6f2800d1",null)),w=j.exports,A=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tutorials-navigation-menu",class:{collapsed:t.collapsed}},[n("button",{staticClass:"toggle",attrs:{"aria-expanded":t.collapsed?"false":"true",type:"button"},on:{click:function(e){return e.stopPropagation(),t.onClick.apply(null,arguments)}}},[n("span",{staticClass:"text"},[t._v(t._s(t.title))]),n("InlineCloseIcon",{staticClass:"toggle-icon icon-inline"})],1),n("transition-expand",[t.collapsed?t._e():n("div",{staticClass:"tutorials-navigation-menu-content"},[n("TutorialsNavigationList",{attrs:{"aria-label":"Chapters"}},[t._t("default")],2)],1)])],1)},q=[],E=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"inline-close-icon",attrs:{viewBox:"0 0 14 14",themeId:"inline-close"}},[n("path",{attrs:{d:"M11.91 1l1.090 1.090-4.917 4.915 4.906 4.905-1.090 1.090-4.906-4.905-4.892 4.894-1.090-1.090 4.892-4.894-4.903-4.904 1.090-1.090 4.903 4.904z"}})])},$=[],L=n("be08"),M={name:"InlineCloseIcon",components:{SVGIcon:L["a"]}},D=M,F=Object(S["a"])(D,E,$,!1,null,null,null),R=F.exports,B={name:"TransitionExpand",functional:!0,render(t,e){const n={props:{name:"expand"},on:{afterEnter(t){t.style.height="auto"},enter(t){const{width:e}=getComputedStyle(t);t.style.width=e,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";const{height:n}=getComputedStyle(t);t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=n})},leave(t){const{height:e}=getComputedStyle(t);t.style.height=e,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}};return t("transition",n,e.children)}},G=B,z=(n("032c"),Object(S["a"])(G,i,a,!1,null,null,null)),P=z.exports,H={name:"TutorialsNavigationMenu",components:{InlineCloseIcon:R,TransitionExpand:P,TutorialsNavigationList:w},props:{collapsed:{type:Boolean,default:!0},title:{type:String,required:!0}},methods:{onClick(){this.collapsed?this.$emit("select-menu",this.title):this.$emit("deselect-menu")}}},K=H,U=(n("d647"),Object(S["a"])(K,A,q,!1,null,"6513d652",null)),Z=U.exports;const J={resources:"resources",volume:"volume"};var Q={name:"TutorialsNavigation",components:{TutorialsNavigationLink:k,TutorialsNavigationList:w,TutorialsNavigationMenu:Z},constants:{SectionKind:J},inject:{store:{default:()=>({setActiveVolume(){}})}},data(){return{state:this.store.state}},props:{sections:{type:Array,required:!0}},computed:{activeVolume:({state:t})=>t.activeVolume},methods:{sectionClasses(t){return{volume:this.isVolume(t),"volume--named":this.isNamedVolume(t),resource:this.isResources(t)}},componentForVolume:({name:t})=>t?Z:w,isResources:({kind:t})=>t===J.resources,isVolume:({kind:t})=>t===J.volume,activateFirstNamedVolume(){const{isNamedVolume:t,sections:e}=this,n=e.find(t);n&&this.store.setActiveVolume(n.name)},isNamedVolume(t){return this.isVolume(t)&&t.name},onDeselectMenu(){this.store.setActiveVolume(null)},onSelectMenu(t){this.store.setActiveVolume(t)},propsForVolume({name:t}){const{activeVolume:e}=this;return t?{collapsed:t!==e,title:t}:{"aria-label":"Chapters"}}},created(){this.activateFirstNamedVolume()}},W=Q,X=(n("095b"),Object(S["a"])(W,v,f,!1,null,"0cbd8adb",null)),Y=X.exports,tt=n("653a"),et=n("d26a"),nt=n("863d");const it={resources:"resources",volume:"volume"};var at={name:"Nav",constants:{SectionKind:it},components:{NavMenuItemBase:nt["a"],NavTitleContainer:tt["a"],TutorialsNavigation:Y,NavBase:h["a"]},props:{sections:{type:Array,require:!0}},methods:{buildUrl:et["b"]}},st=at,ot=(n("6211"),Object(S["a"])(st,d,p,!1,null,"1001350c",null)),rt=ot.exports,ct=n("bf08"),lt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"hero"},[n("div",{staticClass:"copy-container"},[n("h1",{staticClass:"title"},[t._v(t._s(t.title))]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e(),t.estimatedTime?n("p",{staticClass:"meta"},[n("TimerIcon"),n("span",{staticClass:"meta-content"},[n("strong",{staticClass:"time"},[t._v(t._s(t.estimatedTime))]),n("span",[t._v(" Estimated Time")])])],1):t._e(),t.action?n("CallToActionButton",{attrs:{action:t.action,"aria-label":t.action.overridingTitle+" with "+t.title,isDark:""}}):t._e()],1),t.image?n("Asset",{attrs:{identifier:t.image}}):t._e()],1)},ut=[],mt=n("80e4"),dt=n("c081"),pt=n("5677"),ht=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"timer-icon",attrs:{viewBox:"0 0 14 14",themeId:"timer"}},[n("path",{attrs:{d:"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 2c-2.761 0-5 2.239-5 5s2.239 5 5 5c2.761 0 5-2.239 5-5v0c0-2.761-2.239-5-5-5v0z"}}),n("path",{attrs:{d:"M6.51 3.51h1.5v3.5h-1.5v-3.5z"}}),n("path",{attrs:{d:"M6.51 7.010h4v1.5h-4v-1.5z"}})])},vt=[],ft={name:"TimerIcon",components:{SVGIcon:L["a"]}},bt=ft,gt=Object(S["a"])(bt,ht,vt,!1,null,null,null),_t=gt.exports,Ct={name:"Hero",components:{Asset:mt["a"],CallToActionButton:dt["a"],ContentNode:pt["default"],TimerIcon:_t},props:{action:{type:Object,required:!1},content:{type:Array,required:!1},estimatedTime:{type:String,required:!1},image:{type:String,required:!1},title:{type:String,required:!0}}},yt=Ct,Tt=(n("521e"),Object(S["a"])(yt,lt,ut,!1,null,"549fca98",null)),St=Tt.exports,Vt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"learning-path",class:t.classes},[n("div",{staticClass:"main-container"},[t.isTargetIDE?t._e():n("div",{staticClass:"secondary-content-container"},[n("TutorialsNavigation",{attrs:{sections:t.sections,"aria-label":"On this page"}})],1),n("div",{staticClass:"primary-content-container"},[n("div",{staticClass:"content-sections-container"},[t._l(t.volumes,(function(e,i){return n("Volume",t._b({key:"volume_"+i,staticClass:"content-section"},"Volume",t.propsFor(e),!1))})),t._l(t.otherSections,(function(e,i){return n(t.componentFor(e),t._b({key:"resource_"+i,tag:"component",staticClass:"content-section"},"component",t.propsFor(e),!1))}))],2)])])])},kt=[],It=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"resources",attrs:{id:"resources",tabindex:"-1"}},[n("VolumeName",{attrs:{name:"Resources",content:t.content}}),n("TileGroup",{attrs:{tiles:t.tiles}})],1)},xt=[],Nt=n("72e7");const Ot={topOneThird:"-30% 0% -70% 0%",center:"-50% 0% -50% 0%"};var jt={mixins:[Nt["a"]],computed:{intersectionRoot(){return null},intersectionRootMargin(){return Ot.center}},methods:{onIntersect(t){if(!t.isIntersecting)return;const e=this.onIntersectViewport;e?e():console.warn("onIntersectViewportCenter not implemented")}}},wt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"volume-name"},[t.image?n("Asset",{staticClass:"image",attrs:{identifier:t.image,"aria-hidden":"true"}}):t._e(),n("h2",{staticClass:"name"},[t._v(" "+t._s(t.name)+" ")]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e()],1)},At=[],qt={name:"VolumeName",components:{ContentNode:pt["default"],Asset:mt["a"]},props:{image:{type:String,required:!1},content:{type:Array,required:!1},name:{type:String,required:!1}}},Et=qt,$t=(n("ca4e"),Object(S["a"])(Et,wt,At,!1,null,"569db166",null)),Lt=$t.exports,Mt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tile-group",class:t.countClass},t._l(t.tiles,(function(e){return n("Tile",t._b({key:e.title},"Tile",t.propsFor(e),!1))})),1)},Dt=[],Ft=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tile"},[t.identifier?n("div",{staticClass:"icon"},[n(t.iconComponent,{tag:"component"})],1):t._e(),n("div",{staticClass:"title"},[t._v(t._s(t.title))]),n("ContentNode",{attrs:{content:t.content}}),t.action?n("DestinationDataProvider",{attrs:{destination:t.action},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.url,a=e.title;return n("Reference",{staticClass:"link",attrs:{url:i}},[t._v(" "+t._s(a)+" "),n("InlineChevronRightIcon",{staticClass:"link-icon icon-inline"})],1)}}],null,!1,3874201962)}):t._e()],1)},Rt=[],Bt=n("3b96"),Gt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"document-icon",attrs:{viewBox:"0 0 14 14",themeId:"document"}},[n("path",{attrs:{d:"M11.2,5.3,8,2l-.1-.1H2.8V12.1h8.5V6.3l-.1-1ZM8,3.2l2,2.1H8Zm2.4,8H3.6V2.8H7V6.3h3.4Z"}})])},zt=[],Pt={name:"DocumentIcon",components:{SVGIcon:L["a"]}},Ht=Pt,Kt=(n("3233"),Object(S["a"])(Ht,Gt,zt,!1,null,"3a80772b",null)),Ut=Kt.exports,Zt=n("de60"),Jt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("SVGIcon",{staticClass:"forum-icon",attrs:{viewBox:"0 0 14 14",themeId:"forum"}},[n("path",{attrs:{d:"M13 1v9h-7l-1.5 3-1.5-3h-2v-9zM12 2h-10v7h1.616l0.884 1.763 0.88-1.763h6.62z"}}),n("path",{attrs:{d:"M3 4h8.001v1h-8.001v-1z"}}),n("path",{attrs:{d:"M3 6h8.001v1h-8.001v-1z"}})])},Qt=[],Wt={name:"ForumIcon",components:{SVGIcon:L["a"]}},Xt=Wt,Yt=Object(S["a"])(Xt,Jt,Qt,!1,null,null,null),te=Yt.exports,ee=n("c4dd"),ne=n("86d8"),ie=n("34b0"),ae=n("c7ea");const se={documentation:"documentation",downloads:"downloads",featured:"featured",forums:"forums",sampleCode:"sampleCode",videos:"videos"};var oe={name:"Tile",constants:{Identifier:se},components:{DestinationDataProvider:ae["a"],InlineChevronRightIcon:ie["a"],ContentNode:pt["default"],CurlyBracketsIcon:Bt["a"],DocumentIcon:Ut,DownloadIcon:Zt["a"],ForumIcon:te,PlayIcon:ee["a"],Reference:ne["a"]},props:{action:{type:Object,required:!1},content:{type:Array,required:!0},identifier:{type:String,required:!1},title:{type:String,require:!0}},computed:{iconComponent:({identifier:t})=>({[se.documentation]:Ut,[se.downloads]:Zt["a"],[se.forums]:te,[se.sampleCode]:Bt["a"],[se.videos]:ee["a"]}[t])}},re=oe,ce=(n("6899"),Object(S["a"])(re,Ft,Rt,!1,null,"96abac22",null)),le=ce.exports,ue={name:"TileGroup",components:{Tile:le},props:{tiles:{type:Array,required:!0}},computed:{countClass:({tiles:t})=>"count-"+t.length},methods:{propsFor:({action:t,content:e,identifier:n,title:i})=>({action:t,content:e,identifier:n,title:i})}},me=ue,de=(n("f0ca"),Object(S["a"])(me,Mt,Dt,!1,null,"015f9f13",null)),pe=de.exports,he={name:"Resources",mixins:[jt],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{VolumeName:Lt,TileGroup:pe},computed:{intersectionRootMargin:()=>Ot.topOneThird},props:{content:{type:Array,required:!1},tiles:{type:Array,required:!0}},methods:{onIntersectViewport(){this.store.setActiveSidebarLink("Resources"),this.store.setActiveVolume(null)}}},ve=he,fe=(n("5668"),Object(S["a"])(ve,It,xt,!1,null,"49ba6f62",null)),be=fe.exports,ge=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"volume"},[t.name?n("VolumeName",t._b({},"VolumeName",{name:t.name,image:t.image,content:t.content},!1)):t._e(),t._l(t.chapters,(function(e,i){return n("Chapter",{key:e.name,staticClass:"tile",attrs:{content:e.content,image:e.image,name:e.name,number:i+1,topics:t.lookupTopics(e.tutorials),volumeHasName:!!t.name}})}))],2)},_e=[],Ce=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"chapter",attrs:{id:t.anchor,tabindex:"-1"}},[n("div",{staticClass:"info"},[n("Asset",{attrs:{identifier:t.image,"aria-hidden":"true"}}),n("div",{staticClass:"intro"},[n(t.volumeHasName?"h3":"h2",{tag:"component",staticClass:"name",attrs:{"aria-label":t.name+" - Chapter "+t.number}},[n("span",{staticClass:"eyebrow",attrs:{"aria-hidden":"true"}},[t._v("Chapter "+t._s(t.number))]),n("span",{staticClass:"name-text",attrs:{"aria-hidden":"true"}},[t._v(t._s(t.name))])]),t.content?n("ContentNode",{attrs:{content:t.content}}):t._e()],1)],1),n("TopicList",{attrs:{topics:t.topics}})],1)},ye=[],Te=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ol",{staticClass:"topic-list"},t._l(t.topics,(function(e){return n("li",{key:e.url,staticClass:"topic",class:[t.kindClassFor(e),{"no-time-estimate":!e.estimatedTime}]},[n("div",{staticClass:"topic-icon"},[n(t.iconComponent(e),{tag:"component"})],1),n("router-link",{staticClass:"container",attrs:{to:t.buildUrl(e.url,t.$route.query),"aria-label":t.ariaLabelFor(e)}},[n("div",{staticClass:"link"},[t._v(t._s(e.title))]),e.estimatedTime?n("div",{staticClass:"time"},[n("TimerIcon"),n("span",{staticClass:"time-label"},[t._v(t._s(e.estimatedTime))])],1):t._e()])],1)})),0)},Se=[],Ve=n("a9f1"),ke=n("8d2d");const Ie={article:"article",tutorial:"project"},xe={article:"article",tutorial:"tutorial"},Ne={[Ie.article]:"Article",[Ie.tutorial]:"Tutorial"};var Oe={name:"ChapterTopicList",components:{TimerIcon:_t},constants:{TopicKind:Ie,TopicKindClass:xe,TopicKindIconLabel:Ne},props:{topics:{type:Array,required:!0}},methods:{buildUrl:et["b"],iconComponent:({kind:t})=>({[Ie.article]:Ve["a"],[Ie.tutorial]:ke["a"]}[t]),kindClassFor:({kind:t})=>({[Ie.article]:xe.article,[Ie.tutorial]:xe.tutorial}[t]),formatTime:t=>t.replace("min"," minutes").replace("hrs"," hours"),ariaLabelFor({title:t,estimatedTime:e,kind:n}){const i=[t,Ne[n]];return e&&i.push(this.formatTime(e)+" Estimated Time"),i.join(" - ")}}},je=Oe,we=(n("1cc5"),Object(S["a"])(je,Te,Se,!1,null,"da979188",null)),Ae=we.exports,qe={name:"Chapter",mixins:[jt],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{Asset:mt["a"],ContentNode:pt["default"],TopicList:Ae},props:{content:{type:Array,required:!1},image:{type:String,required:!0},name:{type:String,required:!0},number:{type:Number,required:!0},topics:{type:Array,required:!0},volumeHasName:{type:Boolean,default:!1}},computed:{anchor:({name:t})=>Object(_["a"])(t),intersectionRootMargin:()=>Ot.topOneThird},methods:{onIntersectViewport(){this.store.setActiveSidebarLink(this.name),this.volumeHasName||this.store.setActiveVolume(null)}}},Ee=qe,$e=(n("97b7"),Object(S["a"])(Ee,Ce,ye,!1,null,"512b66f6",null)),Le=$e.exports,Me={name:"Volume",mixins:[jt],components:{VolumeName:Lt,Chapter:Le},computed:{intersectionRootMargin:()=>Ot.topOneThird},inject:{references:{default:()=>({})},store:{default:()=>({setActiveVolume(){}})}},props:{chapters:{type:Array,required:!0},content:{type:Array,required:!1},image:{type:String,required:!1},name:{type:String,required:!1}},methods:{lookupTopics(t){return t.reduce((t,e)=>t.concat(this.references[e]||[]),[])},onIntersectViewport(){this.name&&this.store.setActiveVolume(this.name)}}},De=Me,Fe=(n("0431"),Object(S["a"])(De,ge,_e,!1,null,"2d1dbe98",null)),Re=Fe.exports;const Be={resources:"resources",volume:"volume"};var Ge={name:"LearningPath",components:{Resources:be,TutorialsNavigation:Y,Volume:Re},constants:{SectionKind:Be},inject:{isTargetIDE:{default:!1}},props:{sections:{type:Array,required:!0,validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(Be,t.kind))}},computed:{classes:({isTargetIDE:t})=>({ide:t}),partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===Be.volume?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),volumes:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1]},methods:{componentFor:({kind:t})=>({[Be.resources]:be,[Be.volume]:Re}[t]),propsFor:({chapters:t,content:e,image:n,kind:i,name:a,tiles:s})=>({[Be.resources]:{content:e,tiles:s},[Be.volume]:{chapters:t,content:e,image:n,name:a}}[i])}},ze=Ge,Pe=(n("f68c"),Object(S["a"])(ze,Vt,kt,!1,null,"18755bc2",null)),He=Pe.exports;const Ke={hero:"hero",resources:"resources",volume:"volume"};var Ue={name:"TutorialsOverview",components:{Hero:St,LearningPath:He,Nav:rt},mixins:[ct["a"]],constants:{SectionKind:Ke},inject:{isTargetIDE:{default:!1}},props:{metadata:{type:Object,default:()=>({})},references:{type:Object,default:()=>({})},sections:{type:Array,default:()=>[],validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(Ke,t.kind))}},computed:{pageTitle:({title:t})=>[t,"Tutorials"].filter(Boolean).join(" "),pageDescription:({heroSection:t,extractFirstParagraphText:e})=>t?e(t.content):null,partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===Ke.hero?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),heroSections:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1],heroSection:({heroSections:t})=>t[0],store:()=>m,title:({metadata:{category:t=""}})=>t},provide(){return{references:this.references,store:this.store}},created(){this.store.reset()}},Ze=Ue,Je=(n("b347"),Object(S["a"])(Ze,l,u,!1,null,"2d1816cc",null)),Qe=Je.exports,We=n("146e"),Xe={name:"TutorialsOverview",components:{Overview:Qe},mixins:[c["a"],We["a"]],data(){return{topicData:null}},computed:{overviewProps:({topicData:{metadata:t,references:e,sections:n}})=>({metadata:t,references:e,sections:n}),topicKey:({$route:t,topicData:e})=>[t.path,e.identifier.interfaceLanguage].join()},beforeRouteEnter(t,e,n){t.meta.skipFetchingData?n(t=>t.newContentMounted()):Object(r["b"])(t,e,n).then(t=>n(e=>{e.topicData=t})).catch(n)},beforeRouteUpdate(t,e,n){Object(r["d"])(t,e)?Object(r["b"])(t,e,n).then(t=>{this.topicData=t,n()}).catch(n):n()},mounted(){this.$bridge.on("contentUpdate",this.handleContentUpdateFromBridge)},beforeDestroy(){this.$bridge.off("contentUpdate",this.handleContentUpdateFromBridge)},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},Ye=Xe,tn=Object(S["a"])(Ye,s,o,!1,null,null,null);e["default"]=tn.exports},f0ca:function(t,e,n){"use strict";n("8f86")},f1e6:function(t,e,n){"use strict";n("a0d4")},f68c:function(t,e,n){"use strict";n("2c95")}}]); \ No newline at end of file diff --git a/docs/metadata.json b/docs/metadata.json index 07b1d8e..e55b636 100644 --- a/docs/metadata.json +++ b/docs/metadata.json @@ -1 +1 @@ -{"bundleDisplayName":"CoreBluetoothMock","bundleIdentifier":"CoreBluetoothMock","schemaVersion":{"major":0,"minor":1,"patch":0}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":1,"major":0},"bundleDisplayName":"CoreBluetoothMock","bundleIdentifier":"CoreBluetoothMock"} \ No newline at end of file From 430d94be5d3f1ce60575f4aaf0f56c53d7737342 Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 16:50:39 +0100 Subject: [PATCH 12/14] PrivacyInfo moved to root folder --- CoreBluetoothMock.podspec | 3 +- .../CoreBluetoothMock.podspec.json | 5 +- Example/Pods/Pods.xcodeproj/project.pbxproj | 433 +++++++++--------- .../PrivacyInfo.xcprivacy | 0 Example/nRFBlinky.xcodeproj/project.pbxproj | 2 + PrivacyInfo.xcprivacy | 10 + 6 files changed, 238 insertions(+), 215 deletions(-) rename {CoreBluetoothMock => Example}/PrivacyInfo.xcprivacy (100%) create mode 100644 PrivacyInfo.xcprivacy diff --git a/CoreBluetoothMock.podspec b/CoreBluetoothMock.podspec index b9d5020..ab63857 100644 --- a/CoreBluetoothMock.podspec +++ b/CoreBluetoothMock.podspec @@ -21,8 +21,7 @@ device and test the app on simulator. s.watchos.deployment_target = '4.0' s.source_files = 'CoreBluetoothMock/**/*' - s.exclude_files = [ 'CoreBluetoothMock/PrivacyInfo.xcprivacy' ] s.resource_bundles = { - 'PrivacyInfo' => ['CoreBluetoothMock/PrivacyInfo.xcprivacy'] + 'PrivacyInfo' => ['PrivacyInfo.xcprivacy'] } end diff --git a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json index 592dfba..acb8e5e 100644 --- a/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json +++ b/Example/Pods/Local Podspecs/CoreBluetoothMock.podspec.json @@ -36,12 +36,9 @@ "watchos": "4.0" }, "source_files": "CoreBluetoothMock/**/*", - "exclude_files": [ - "CoreBluetoothMock/PrivacyInfo.xcprivacy" - ], "resource_bundles": { "PrivacyInfo": [ - "CoreBluetoothMock/PrivacyInfo.xcprivacy" + "PrivacyInfo.xcprivacy" ] }, "swift_version": "5.9" diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index c9587b5..b4a6acf 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -9,131 +9,133 @@ /* Begin PBXBuildFile section */ 0A32CB89E41E0E0D13A3550DF7B41CB5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 0AE9EC811537AF361F3CB7C782473473 /* Pods-nRFBlinky_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 258D14F03E5A6413193BAC7C1007AF66 /* Pods-nRFBlinky_Tests-dummy.m */; }; - 0F83C34F8007A2C0491B834BC1683BAF /* CBMPeripheralDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 497DF3AD9669BF1549CED977CA2D20E1 /* CBMPeripheralDelegate.swift */; }; - 164F0570F03B92E344CB080009697F42 /* CBMPeer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DB8905E80B68966A6DA835964160C5C /* CBMPeer.swift */; }; - 1A4878A38EC2838E2CF72A428EAD75C8 /* CoreBluetoothMock-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05408ECF6BA08BD901BC5C7A186412BF /* CoreBluetoothMock-dummy.m */; }; + 0F83C34F8007A2C0491B834BC1683BAF /* CBMPeripheralDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42AC9ADF91E5BC810AF572410E6070D3 /* CBMPeripheralDelegate.swift */; }; + 164F0570F03B92E344CB080009697F42 /* CBMPeer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FCCC16F0D3CC2FCEAE812C67DDFF53B /* CBMPeer.swift */; }; + 1A4878A38EC2838E2CF72A428EAD75C8 /* CoreBluetoothMock-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B6CCA3A0DF8FDEE940D69990F8E7CEDC /* CoreBluetoothMock-dummy.m */; }; 1D0C61DB8642B5DFF28353C4E32831DA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; - 37DC2723452C022949DCFAE6C1A2123F /* CBMPeripheralPreview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FAACC70E95BA885EB8F23C856AC2F03 /* CBMPeripheralPreview.swift */; }; - 389E191EB10C2588918B28FE6B80F53E /* CBMCentralManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5732EE2493F5254DC73FAF4AEFB4355F /* CBMCentralManagerDelegate.swift */; }; - 43FA03536E1A7D57B751480D0C380DA6 /* CBMPeripheralSpecDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEC16A2E868E9BC166B87037D65E8120 /* CBMPeripheralSpecDelegate.swift */; }; - 464E5DBC8E72E10CB1FFF49CF8DF1DB6 /* CBMCentralManagerMock.swift in Sources */ = {isa = PBXBuildFile; fileRef = C53EE2B1C373C6D868B5708A78D94375 /* CBMCentralManagerMock.swift */; }; - 48E12CE03EFDE5EE32325AD1A726786C /* CoreBluetoothMock-PrivacyInfo in Resources */ = {isa = PBXBuildFile; fileRef = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* CoreBluetoothMock-PrivacyInfo */; }; + 37DC2723452C022949DCFAE6C1A2123F /* CBMPeripheralPreview.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4178F40549F22C4475037DED5A7CC8B /* CBMPeripheralPreview.swift */; }; + 389E191EB10C2588918B28FE6B80F53E /* CBMCentralManagerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21BC0E586969BFECA1BDE56710D5D7A2 /* CBMCentralManagerDelegate.swift */; }; + 43FA03536E1A7D57B751480D0C380DA6 /* CBMPeripheralSpecDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 830AC593E67DED08E9D9FF26DAFFDA72 /* CBMPeripheralSpecDelegate.swift */; }; + 464E5DBC8E72E10CB1FFF49CF8DF1DB6 /* CBMCentralManagerMock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60CEB51D5A55C5C699C2A32E2ED57499 /* CBMCentralManagerMock.swift */; }; + 48E12CE03EFDE5EE32325AD1A726786C /* PrivacyInfo.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */; }; 58442FE5272883F9A5AD75D7F454B587 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; - 7705DA0457D1282EA86F07AA6A370B41 /* CBMPeripheral.swift in Sources */ = {isa = PBXBuildFile; fileRef = 184F4CE9B2340161CE21318FB75FC431 /* CBMPeripheral.swift */; }; - 83C9D70917968828934D5285C036350F /* CBMCentralManagerFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03923AB8A466287408CFDD8E586EAAD1 /* CBMCentralManagerFactory.swift */; }; - 87A1A40A1E0C43A9C4E66B434C9B8F86 /* CBMAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F652B68A215DC05E41E421B437AA58F /* CBMAttributes.swift */; }; + 5AFC4A98AFC1C02D54EF6C1743E58B8F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EE9DDFB07A0F1E00A5F0A477D6C4BD3D /* PrivacyInfo.xcprivacy */; }; + 7705DA0457D1282EA86F07AA6A370B41 /* CBMPeripheral.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48A08BE206CD7A691CD80A7741A8BF56 /* CBMPeripheral.swift */; }; + 83C9D70917968828934D5285C036350F /* CBMCentralManagerFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 494B06EBC549969B4761FA181E857BBA /* CBMCentralManagerFactory.swift */; }; + 87A1A40A1E0C43A9C4E66B434C9B8F86 /* CBMAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 303A0613E639CEB5337DBE7927F7FC66 /* CBMAttributes.swift */; }; A5424F98A4506A84409281CF9DCB5E50 /* Pods-nRFBlinky-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E184D822F902304BAA7F65D6A90587B /* Pods-nRFBlinky-dummy.m */; }; - A6980110A0540347283B5EA504CA6E56 /* CBMManagerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12DA96F64B212590545643E03EB75E6D /* CBMManagerTypes.swift */; }; + A6980110A0540347283B5EA504CA6E56 /* CBMManagerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD37111C06BB3CF0243604AEFC8220EA /* CBMManagerTypes.swift */; }; B558667EDB25B2544F7DBEAF79FE7E2D /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 136AD593F202ACE109B877B06A30F9B3 /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BCDF8FBE308885D4504E63C4F8870FD2 /* CBMPeripheralSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3537DE15F30A5E5E68346B456C032F1C /* CBMPeripheralSpec.swift */; }; - C2CBD808636E7B5517CE192B426CFB78 /* CBMCentralManagerNative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB5EA764F851D6A9FB5A6F76FE1713B /* CBMCentralManagerNative.swift */; }; + BCDF8FBE308885D4504E63C4F8870FD2 /* CBMPeripheralSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9AAF042AF2E06A65602A34C0EE4244E /* CBMPeripheralSpec.swift */; }; + C2CBD808636E7B5517CE192B426CFB78 /* CBMCentralManagerNative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 240E3C19E3C08EF7CD1DCBCBD0353182 /* CBMCentralManagerNative.swift */; }; C7BD3CB2879758D1502CBACD88395B1A /* Pods-nRFBlinky-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C5B2698EFAB36B4C94DDBD6245C469 /* Pods-nRFBlinky-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CC79345874A5D851719587482FD53039 /* Documentation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 8AA965671A4B327091BBFEE5BB792FA7 /* Documentation.docc */; }; - D38C80C6B9801478ACBE49C9EEA36EBB /* CoreBluetoothMock-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E61F49B07A003DEE8BFB8CD31B4A471A /* CoreBluetoothMock-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CC79345874A5D851719587482FD53039 /* Documentation.docc in Sources */ = {isa = PBXBuildFile; fileRef = 2BA575142836EA7ED8DF16937D6C196D /* Documentation.docc */; }; + D38C80C6B9801478ACBE49C9EEA36EBB /* CoreBluetoothMock-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 36D92078C53773B420D98F60BC7877D6 /* CoreBluetoothMock-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; DB1D7F4C9BE1D6FDCF0A220A342702B5 /* Pods-nRFBlinky_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A61BDF33ED282A7D748B4FC5DAE523 /* Pods-nRFBlinky_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; EDFF1483173947D4DF125CBA02BFF9EA /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05A53FE949257853F7E3939C9F803937 /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m */; }; F47928F5B82D2134B9A82C308779EB00 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; - F681F449BB935B07971654FCE06E106C /* CBMCentralManagerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B51C7BF996DE72681B2080563911F45 /* CBMCentralManagerDelegateProxy.swift */; }; - F80CC7A453546E5C2295024F41EECA4D /* CBMPeripheralDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20240FE702F5810BB0281322EB659697 /* CBMPeripheralDelegateProxy.swift */; }; - F84A3E5690BB9CAFD7EB1961397E9B91 /* CBMCentralManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E13B2D971184F621D9E21667DA6FA1D4 /* CBMCentralManager.swift */; }; + F681F449BB935B07971654FCE06E106C /* CBMCentralManagerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB4C7573F504FA323CAF4BD51AE968EF /* CBMCentralManagerDelegateProxy.swift */; }; + F80CC7A453546E5C2295024F41EECA4D /* CBMPeripheralDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43206976A9E5376B8CAB9E2F137101D9 /* CBMPeripheralDelegateProxy.swift */; }; + F84A3E5690BB9CAFD7EB1961397E9B91 /* CBMCentralManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E6EFC54FDD0EFD423CB5FC3A5ADF1FC /* CBMCentralManager.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 1CF75A301DD37C73A59CD58F7A633D76 /* PBXContainerItemProxy */ = { + 0DEF4D1DDE8B74B16291B1E214E53CD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; - remoteInfo = CoreBluetoothMock; + remoteGlobalIDString = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589; + remoteInfo = "CoreBluetoothMock-PrivacyInfo"; }; - 5BAC23A6401ED7FD6A908144BC52289D /* PBXContainerItemProxy */ = { + 2796844FFE55C8A053ACC8E2DB835503 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; - remoteInfo = CoreBluetoothMock; + remoteGlobalIDString = D8DA31B307E5478D785EED0F0F084E24; + remoteInfo = "Pods-nRFBlinky"; }; - 67E4B48132FC1F42996283728E109E49 /* PBXContainerItemProxy */ = { + 7ACEB9113DE9EE191C645BDD80AAB5FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D8DA31B307E5478D785EED0F0F084E24; - remoteInfo = "Pods-nRFBlinky"; + remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; + remoteInfo = CoreBluetoothMock; }; - BE75C12FBB0956B1942D41A58A6580E6 /* PBXContainerItemProxy */ = { + FE9350EF4CCC6E8D75BDCDB384FC1432 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589; - remoteInfo = "CoreBluetoothMock-PrivacyInfo"; + remoteGlobalIDString = 5647B3702CC9BCAD6F81C5D3E7417452; + remoteInfo = CoreBluetoothMock; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 03923AB8A466287408CFDD8E586EAAD1 /* CBMCentralManagerFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerFactory.swift; path = CoreBluetoothMock/CBMCentralManagerFactory.swift; sourceTree = ""; }; - 04D9EA8C73EABB8E0BF81D113DF79EE5 /* CoreBluetoothMock-PrivacyInfo */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "CoreBluetoothMock-PrivacyInfo"; path = PrivacyInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 05408ECF6BA08BD901BC5C7A186412BF /* CoreBluetoothMock-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CoreBluetoothMock-dummy.m"; sourceTree = ""; }; + 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PrivacyInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 05A53FE949257853F7E3939C9F803937 /* Pods-nRFBlinky-nRFBlinky_UITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky-nRFBlinky_UITests-dummy.m"; sourceTree = ""; }; - 0B8F33B0490E8B2934B94E30C462FB2C /* CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CoreBluetoothMock-Info.plist"; sourceTree = ""; }; - 0FB5EA764F851D6A9FB5A6F76FE1713B /* CBMCentralManagerNative.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerNative.swift; path = CoreBluetoothMock/CBMCentralManagerNative.swift; sourceTree = ""; }; - 12DA96F64B212590545643E03EB75E6D /* CBMManagerTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMManagerTypes.swift; path = CoreBluetoothMock/CBMManagerTypes.swift; sourceTree = ""; }; 136AD593F202ACE109B877B06A30F9B3 /* Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky-nRFBlinky_UITests-umbrella.h"; sourceTree = ""; }; - 184F4CE9B2340161CE21318FB75FC431 /* CBMPeripheral.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheral.swift; path = CoreBluetoothMock/CBMPeripheral.swift; sourceTree = ""; }; 186005ABF43807617B23120BFEDA9F21 /* Pods-nRFBlinky-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-nRFBlinky-frameworks.sh"; sourceTree = ""; }; - 1B51C7BF996DE72681B2080563911F45 /* CBMCentralManagerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegateProxy.swift; path = CoreBluetoothMock/CBMCentralManagerDelegateProxy.swift; sourceTree = ""; }; - 1DFCEBC6EC2184F171BCAF734E8340DB /* CoreBluetoothMock.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.debug.xcconfig; sourceTree = ""; }; + 1AEE16136FD9875BBFF10BF7DB30FA51 /* CoreBluetoothMock.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.release.xcconfig; sourceTree = ""; }; + 1CFFAB3F8E6071278F2219BE51661B5C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 1F92E40BA4B115F4A8FF31133C71E5C9 /* Pods-nRFBlinky-nRFBlinky_UITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky-nRFBlinky_UITests.modulemap"; sourceTree = ""; }; - 20240FE702F5810BB0281322EB659697 /* CBMPeripheralDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegateProxy.swift; path = CoreBluetoothMock/CBMPeripheralDelegateProxy.swift; sourceTree = ""; }; + 1FCCC16F0D3CC2FCEAE812C67DDFF53B /* CBMPeer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeer.swift; path = CoreBluetoothMock/CBMPeer.swift; sourceTree = ""; }; + 21BC0E586969BFECA1BDE56710D5D7A2 /* CBMCentralManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegate.swift; path = CoreBluetoothMock/CBMCentralManagerDelegate.swift; sourceTree = ""; }; 23DDBE0DFE085AC6F53CE75068F0E893 /* Pods-nRFBlinky.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky.modulemap"; sourceTree = ""; }; + 240E3C19E3C08EF7CD1DCBCBD0353182 /* CBMCentralManagerNative.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerNative.swift; path = CoreBluetoothMock/CBMCentralManagerNative.swift; sourceTree = ""; }; 258D14F03E5A6413193BAC7C1007AF66 /* Pods-nRFBlinky_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky_Tests-dummy.m"; sourceTree = ""; }; - 265C6A36C39714F7F14D77D413A95779 /* CoreBluetoothMock-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-prefix.pch"; sourceTree = ""; }; - 2CDE2AD4B2D29899C20C92B124CF41DC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 2DB8905E80B68966A6DA835964160C5C /* CBMPeer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeer.swift; path = CoreBluetoothMock/CBMPeer.swift; sourceTree = ""; }; - 3537DE15F30A5E5E68346B456C032F1C /* CBMPeripheralSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpec.swift; path = CoreBluetoothMock/CBMPeripheralSpec.swift; sourceTree = ""; }; - 3F652B68A215DC05E41E421B437AA58F /* CBMAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMAttributes.swift; path = CoreBluetoothMock/CBMAttributes.swift; sourceTree = ""; }; - 497DF3AD9669BF1549CED977CA2D20E1 /* CBMPeripheralDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegate.swift; path = CoreBluetoothMock/CBMPeripheralDelegate.swift; sourceTree = ""; }; + 2BA575142836EA7ED8DF16937D6C196D /* Documentation.docc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.documentationcatalog; name = Documentation.docc; path = CoreBluetoothMock/Documentation.docc; sourceTree = ""; }; + 2F3A1CBC108E531C4A62A39835A9262F /* CoreBluetoothMock.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CoreBluetoothMock.modulemap; sourceTree = ""; }; + 303A0613E639CEB5337DBE7927F7FC66 /* CBMAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMAttributes.swift; path = CoreBluetoothMock/CBMAttributes.swift; sourceTree = ""; }; + 36D92078C53773B420D98F60BC7877D6 /* CoreBluetoothMock-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-umbrella.h"; sourceTree = ""; }; + 42AC9ADF91E5BC810AF572410E6070D3 /* CBMPeripheralDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegate.swift; path = CoreBluetoothMock/CBMPeripheralDelegate.swift; sourceTree = ""; }; + 43206976A9E5376B8CAB9E2F137101D9 /* CBMPeripheralDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralDelegateProxy.swift; path = CoreBluetoothMock/CBMPeripheralDelegateProxy.swift; sourceTree = ""; }; + 48A08BE206CD7A691CD80A7741A8BF56 /* CBMPeripheral.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheral.swift; path = CoreBluetoothMock/CBMPeripheral.swift; sourceTree = ""; }; + 494B06EBC549969B4761FA181E857BBA /* CBMCentralManagerFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerFactory.swift; path = CoreBluetoothMock/CBMCentralManagerFactory.swift; sourceTree = ""; }; 49C5B2698EFAB36B4C94DDBD6245C469 /* Pods-nRFBlinky-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky-umbrella.h"; sourceTree = ""; }; 4E184D822F902304BAA7F65D6A90587B /* Pods-nRFBlinky-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-nRFBlinky-dummy.m"; sourceTree = ""; }; - 5732EE2493F5254DC73FAF4AEFB4355F /* CBMCentralManagerDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegate.swift; path = CoreBluetoothMock/CBMCentralManagerDelegate.swift; sourceTree = ""; }; + 4E6EFC54FDD0EFD423CB5FC3A5ADF1FC /* CBMCentralManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManager.swift; path = CoreBluetoothMock/CBMCentralManager.swift; sourceTree = ""; }; 574235F7BEB93EAB469098C7D5C07A8C /* Pods-nRFBlinky_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky_Tests-acknowledgements.markdown"; sourceTree = ""; }; 58D566B721898E1D43CFE4A9BFB4EA88 /* Pods-nRFBlinky.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky.debug.xcconfig"; sourceTree = ""; }; - 5A0CE30D3AC9BD23A8A74D32AED42170 /* CoreBluetoothMock.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CoreBluetoothMock.modulemap; sourceTree = ""; }; - 5F8BCEACA87669F54C01A8A8171F9436 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 601EB604CAC3ECACFB55BDBEDB2B2FF8 /* Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-nRFBlinky-nRFBlinky_UITests-frameworks.sh"; sourceTree = ""; }; + 60CEB51D5A55C5C699C2A32E2ED57499 /* CBMCentralManagerMock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerMock.swift; path = CoreBluetoothMock/CBMCentralManagerMock.swift; sourceTree = ""; }; 60EDDADB5A72F73CE358CC9DD73E6E4D /* Pods-nRFBlinky-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-Info.plist"; sourceTree = ""; }; - 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky_Tests"; path = Pods_nRFBlinky_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods_nRFBlinky_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_nRFBlinky_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 72D8941B2D1FDDEABD4AE7C02FED240C /* Pods-nRFBlinky_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky_Tests.debug.xcconfig"; sourceTree = ""; }; 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 73F49D0D11CA3BC68F1FFF1BB879E869 /* Pods-nRFBlinky_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky_Tests.release.xcconfig"; sourceTree = ""; }; 75DD36E0C1A14D8060C2AF6DFF30D574 /* Pods-nRFBlinky-nRFBlinky_UITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-nRFBlinky_UITests-Info.plist"; sourceTree = ""; }; - 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CoreBluetoothMock; path = CoreBluetoothMock.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CoreBluetoothMock.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 77A61BDF33ED282A7D748B4FC5DAE523 /* Pods-nRFBlinky_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-nRFBlinky_Tests-umbrella.h"; sourceTree = ""; }; + 830AC593E67DED08E9D9FF26DAFFDA72 /* CBMPeripheralSpecDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpecDelegate.swift; path = CoreBluetoothMock/CBMPeripheralSpecDelegate.swift; sourceTree = ""; }; + 8409362064B12D6ECCC60CBD78FAC959 /* CoreBluetoothMock.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.debug.xcconfig; sourceTree = ""; }; 841F4A2347EB60F32CD0D3903EA8A854 /* Pods-nRFBlinky-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-acknowledgements.plist"; sourceTree = ""; }; 88D27FB2652F32CA77F55A6A7C490761 /* Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.markdown"; sourceTree = ""; }; - 8AA965671A4B327091BBFEE5BB792FA7 /* Documentation.docc */ = {isa = PBXFileReference; includeInIndex = 1; name = Documentation.docc; path = CoreBluetoothMock/Documentation.docc; sourceTree = ""; }; 8E090B58AD04F7215131769994A091A3 /* Pods-nRFBlinky-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-nRFBlinky-acknowledgements.markdown"; sourceTree = ""; }; 8E161584725FCAD8B1A028E8DEB9486A /* Pods-nRFBlinky_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky_Tests-Info.plist"; sourceTree = ""; }; + 92C77BC249F2CF6F3ED1BD34736FA8BF /* CoreBluetoothMock-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-prefix.pch"; sourceTree = ""; }; 9C5103A94668BA93B8DCDBD27491209F /* Pods-nRFBlinky.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky.release.xcconfig"; sourceTree = ""; }; - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9E47724F38F58189A2FC36C853941E76 /* Pods-nRFBlinky_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky_Tests-acknowledgements.plist"; sourceTree = ""; }; - 9FAACC70E95BA885EB8F23C856AC2F03 /* CBMPeripheralPreview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralPreview.swift; path = CoreBluetoothMock/CBMPeripheralPreview.swift; sourceTree = ""; }; - B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky"; path = Pods_nRFBlinky.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9EE83D757C45D5DDD00091BEF2116C64 /* CoreBluetoothMock.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = CoreBluetoothMock.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_nRFBlinky.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B6CCA3A0DF8FDEE940D69990F8E7CEDC /* CoreBluetoothMock-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CoreBluetoothMock-dummy.m"; sourceTree = ""; }; + BB4C7573F504FA323CAF4BD51AE968EF /* CBMCentralManagerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerDelegateProxy.swift; path = CoreBluetoothMock/CBMCentralManagerDelegateProxy.swift; sourceTree = ""; }; C348C9192BF2799624BD1BAAF5DFED0C /* Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky-nRFBlinky_UITests.debug.xcconfig"; sourceTree = ""; }; C366D985CC68EF9A7B5BBB3186F44D2D /* Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig"; sourceTree = ""; }; - C53EE2B1C373C6D868B5708A78D94375 /* CBMCentralManagerMock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManagerMock.swift; path = CoreBluetoothMock/CBMCentralManagerMock.swift; sourceTree = ""; }; C6B191FE01870F950E66F66A65810125 /* Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-nRFBlinky-nRFBlinky_UITests-acknowledgements.plist"; sourceTree = ""; }; - CDBD69D471972AD7E7D575A6DBD62E8A /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; sourceTree = ""; }; - E13B2D971184F621D9E21667DA6FA1D4 /* CBMCentralManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMCentralManager.swift; path = CoreBluetoothMock/CBMCentralManager.swift; sourceTree = ""; }; + C936547D94B750C41ABB15E437D0617B /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; sourceTree = ""; }; + CF4A46E2C6444F7530CA2CD035D4BB54 /* CoreBluetoothMock-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CoreBluetoothMock-Info.plist"; sourceTree = ""; }; + D4178F40549F22C4475037DED5A7CC8B /* CBMPeripheralPreview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralPreview.swift; path = CoreBluetoothMock/CBMPeripheralPreview.swift; sourceTree = ""; }; + D66D01FA65FF21CB8A7FCC902A0C7BF8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + DD37111C06BB3CF0243604AEFC8220EA /* CBMManagerTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMManagerTypes.swift; path = CoreBluetoothMock/CBMManagerTypes.swift; sourceTree = ""; }; E51C3B2EBE3D334E3BD361653A43734F /* Pods-nRFBlinky_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-nRFBlinky_Tests.modulemap"; sourceTree = ""; }; - E61F49B07A003DEE8BFB8CD31B4A471A /* CoreBluetoothMock-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CoreBluetoothMock-umbrella.h"; sourceTree = ""; }; - EEC16A2E868E9BC166B87037D65E8120 /* CBMPeripheralSpecDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpecDelegate.swift; path = CoreBluetoothMock/CBMPeripheralSpecDelegate.swift; sourceTree = ""; }; - F3119999274AEE51571CCA4BF17A7D5F /* CoreBluetoothMock.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CoreBluetoothMock.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods-nRFBlinky-nRFBlinky_UITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-nRFBlinky-nRFBlinky_UITests"; path = Pods_nRFBlinky_nRFBlinky_UITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FE1D04C54765744955007ABBF063D0A6 /* CoreBluetoothMock.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CoreBluetoothMock.release.xcconfig; sourceTree = ""; }; + EE9DDFB07A0F1E00A5F0A477D6C4BD3D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = ""; }; + F9AAF042AF2E06A65602A34C0EE4244E /* CBMPeripheralSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CBMPeripheralSpec.swift; path = CoreBluetoothMock/CBMPeripheralSpec.swift; sourceTree = ""; }; + FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods_nRFBlinky_nRFBlinky_UITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_nRFBlinky_nRFBlinky_UITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 30C6A085E2B969E98C36A861AE777176 /* Frameworks */ = { + 44A644D2F0C492AC207567E343C90D32 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -178,11 +180,11 @@ 088E62683BA657E94911AE22A17008AB /* Products */ = { isa = PBXGroup; children = ( - 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */, - 04D9EA8C73EABB8E0BF81D113DF79EE5 /* CoreBluetoothMock-PrivacyInfo */, - B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */, - FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods-nRFBlinky-nRFBlinky_UITests */, - 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */, + 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */, + 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */, + B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */, + FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods_nRFBlinky_nRFBlinky_UITests.framework */, + 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods_nRFBlinky_Tests.framework */, ); name = Products; sourceTree = ""; @@ -203,6 +205,16 @@ path = "Target Support Files/Pods-nRFBlinky_Tests"; sourceTree = ""; }; + 3180A4C9F0291B551FEE58CE19613A76 /* Pod */ = { + isa = PBXGroup; + children = ( + 9EE83D757C45D5DDD00091BEF2116C64 /* CoreBluetoothMock.podspec */, + 1CFFAB3F8E6071278F2219BE51661B5C /* LICENSE */, + D66D01FA65FF21CB8A7FCC902A0C7BF8 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; 3A45CAB5CC6B1759026B856C4F9A8654 /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -213,30 +225,28 @@ name = "Targets Support Files"; sourceTree = ""; }; - 3B0204A897C299BFDCC217D0DE5D142C /* CoreBluetoothMock */ = { + 3E19703E7C77FDA1AC9857C1714E06E8 /* Development Pods */ = { isa = PBXGroup; children = ( - 3F652B68A215DC05E41E421B437AA58F /* CBMAttributes.swift */, - E13B2D971184F621D9E21667DA6FA1D4 /* CBMCentralManager.swift */, - 5732EE2493F5254DC73FAF4AEFB4355F /* CBMCentralManagerDelegate.swift */, - 1B51C7BF996DE72681B2080563911F45 /* CBMCentralManagerDelegateProxy.swift */, - 03923AB8A466287408CFDD8E586EAAD1 /* CBMCentralManagerFactory.swift */, - C53EE2B1C373C6D868B5708A78D94375 /* CBMCentralManagerMock.swift */, - 0FB5EA764F851D6A9FB5A6F76FE1713B /* CBMCentralManagerNative.swift */, - 12DA96F64B212590545643E03EB75E6D /* CBMManagerTypes.swift */, - 2DB8905E80B68966A6DA835964160C5C /* CBMPeer.swift */, - 184F4CE9B2340161CE21318FB75FC431 /* CBMPeripheral.swift */, - 497DF3AD9669BF1549CED977CA2D20E1 /* CBMPeripheralDelegate.swift */, - 20240FE702F5810BB0281322EB659697 /* CBMPeripheralDelegateProxy.swift */, - 9FAACC70E95BA885EB8F23C856AC2F03 /* CBMPeripheralPreview.swift */, - 3537DE15F30A5E5E68346B456C032F1C /* CBMPeripheralSpec.swift */, - EEC16A2E868E9BC166B87037D65E8120 /* CBMPeripheralSpecDelegate.swift */, - 8AA965671A4B327091BBFEE5BB792FA7 /* Documentation.docc */, - E598FFDCCD4F2DAA0917532355D635E5 /* Pod */, - E73480A85C9A4BEDF95120F01A83FD16 /* Support Files */, + D534C77DD5406B89BBC223A47B98A4A7 /* CoreBluetoothMock */, ); - name = CoreBluetoothMock; - path = ../..; + name = "Development Pods"; + sourceTree = ""; + }; + 4FB1FC872F3A00EB64B69C746334758C /* Support Files */ = { + isa = PBXGroup; + children = ( + 2F3A1CBC108E531C4A62A39835A9262F /* CoreBluetoothMock.modulemap */, + B6CCA3A0DF8FDEE940D69990F8E7CEDC /* CoreBluetoothMock-dummy.m */, + CF4A46E2C6444F7530CA2CD035D4BB54 /* CoreBluetoothMock-Info.plist */, + 92C77BC249F2CF6F3ED1BD34736FA8BF /* CoreBluetoothMock-prefix.pch */, + 36D92078C53773B420D98F60BC7877D6 /* CoreBluetoothMock-umbrella.h */, + 8409362064B12D6ECCC60CBD78FAC959 /* CoreBluetoothMock.debug.xcconfig */, + 1AEE16136FD9875BBFF10BF7DB30FA51 /* CoreBluetoothMock.release.xcconfig */, + C936547D94B750C41ABB15E437D0617B /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/CoreBluetoothMock"; sourceTree = ""; }; 578452D2E740E91742655AC8F1636D1F /* iOS */ = { @@ -268,7 +278,7 @@ isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - E2A03D30817A86394041E2695AB26222 /* Development Pods */, + 3E19703E7C77FDA1AC9857C1714E06E8 /* Development Pods */, D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 088E62683BA657E94911AE22A17008AB /* Products */, 3A45CAB5CC6B1759026B856C4F9A8654 /* Targets Support Files */, @@ -283,38 +293,31 @@ name = Frameworks; sourceTree = ""; }; - E2A03D30817A86394041E2695AB26222 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 3B0204A897C299BFDCC217D0DE5D142C /* CoreBluetoothMock */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - E598FFDCCD4F2DAA0917532355D635E5 /* Pod */ = { - isa = PBXGroup; - children = ( - F3119999274AEE51571CCA4BF17A7D5F /* CoreBluetoothMock.podspec */, - 2CDE2AD4B2D29899C20C92B124CF41DC /* LICENSE */, - 5F8BCEACA87669F54C01A8A8171F9436 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - E73480A85C9A4BEDF95120F01A83FD16 /* Support Files */ = { + D534C77DD5406B89BBC223A47B98A4A7 /* CoreBluetoothMock */ = { isa = PBXGroup; children = ( - 5A0CE30D3AC9BD23A8A74D32AED42170 /* CoreBluetoothMock.modulemap */, - 05408ECF6BA08BD901BC5C7A186412BF /* CoreBluetoothMock-dummy.m */, - 0B8F33B0490E8B2934B94E30C462FB2C /* CoreBluetoothMock-Info.plist */, - 265C6A36C39714F7F14D77D413A95779 /* CoreBluetoothMock-prefix.pch */, - E61F49B07A003DEE8BFB8CD31B4A471A /* CoreBluetoothMock-umbrella.h */, - 1DFCEBC6EC2184F171BCAF734E8340DB /* CoreBluetoothMock.debug.xcconfig */, - FE1D04C54765744955007ABBF063D0A6 /* CoreBluetoothMock.release.xcconfig */, - CDBD69D471972AD7E7D575A6DBD62E8A /* ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist */, + 303A0613E639CEB5337DBE7927F7FC66 /* CBMAttributes.swift */, + 4E6EFC54FDD0EFD423CB5FC3A5ADF1FC /* CBMCentralManager.swift */, + 21BC0E586969BFECA1BDE56710D5D7A2 /* CBMCentralManagerDelegate.swift */, + BB4C7573F504FA323CAF4BD51AE968EF /* CBMCentralManagerDelegateProxy.swift */, + 494B06EBC549969B4761FA181E857BBA /* CBMCentralManagerFactory.swift */, + 60CEB51D5A55C5C699C2A32E2ED57499 /* CBMCentralManagerMock.swift */, + 240E3C19E3C08EF7CD1DCBCBD0353182 /* CBMCentralManagerNative.swift */, + DD37111C06BB3CF0243604AEFC8220EA /* CBMManagerTypes.swift */, + 1FCCC16F0D3CC2FCEAE812C67DDFF53B /* CBMPeer.swift */, + 48A08BE206CD7A691CD80A7741A8BF56 /* CBMPeripheral.swift */, + 42AC9ADF91E5BC810AF572410E6070D3 /* CBMPeripheralDelegate.swift */, + 43206976A9E5376B8CAB9E2F137101D9 /* CBMPeripheralDelegateProxy.swift */, + D4178F40549F22C4475037DED5A7CC8B /* CBMPeripheralPreview.swift */, + F9AAF042AF2E06A65602A34C0EE4244E /* CBMPeripheralSpec.swift */, + 830AC593E67DED08E9D9FF26DAFFDA72 /* CBMPeripheralSpecDelegate.swift */, + 2BA575142836EA7ED8DF16937D6C196D /* Documentation.docc */, + EE9DDFB07A0F1E00A5F0A477D6C4BD3D /* PrivacyInfo.xcprivacy */, + 3180A4C9F0291B551FEE58CE19613A76 /* Pod */, + 4FB1FC872F3A00EB64B69C746334758C /* Support Files */, ); - name = "Support Files"; - path = "Example/Pods/Target Support Files/CoreBluetoothMock"; + name = CoreBluetoothMock; + path = ../..; sourceTree = ""; }; F63676E082B6EC6B5406B878027370CC /* Pods-nRFBlinky */ = { @@ -384,11 +387,11 @@ buildRules = ( ); dependencies = ( - 65E8E4856ACF72404679D66A8B91741D /* PBXTargetDependency */, + FF2239BBD198EAEFE5DF17455C909EEF /* PBXTargetDependency */, ); name = CoreBluetoothMock; productName = CoreBluetoothMock; - productReference = 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock */; + productReference = 779567A4B02AC0655BAD2A631CED3E38 /* CoreBluetoothMock.framework */; productType = "com.apple.product-type.framework"; }; 7AC722D61390476FAC05FA5E388C0381 /* Pods-nRFBlinky_Tests */ = { @@ -403,20 +406,20 @@ buildRules = ( ); dependencies = ( - 980D16D16C8AC372F1EA5F17B005F34C /* PBXTargetDependency */, + 6964A461E8DB61E4424FC6F4350B68D6 /* PBXTargetDependency */, ); name = "Pods-nRFBlinky_Tests"; productName = Pods_nRFBlinky_Tests; - productReference = 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods-nRFBlinky_Tests */; + productReference = 69DE65DBE26968A43D4675CCB5B8F1E4 /* Pods_nRFBlinky_Tests.framework */; productType = "com.apple.product-type.framework"; }; A9A5DBAF5BD0A85F5EAAC4F6C8CAE589 /* CoreBluetoothMock-PrivacyInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = D5E525E2DFE7EE98800D3CECC12556D7 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */; + buildConfigurationList = E30989980184E8B263CDC652759B48CA /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */; buildPhases = ( - FF442FAD91F4F7C50E10EC2304B47C62 /* Sources */, - 30C6A085E2B969E98C36A861AE777176 /* Frameworks */, - 76CB1E443ED1DC1147E883629F5A282A /* Resources */, + E3A01817681CA4C53912A4AF40A744CF /* Sources */, + 44A644D2F0C492AC207567E343C90D32 /* Frameworks */, + 05C9BBCA883D5452E77A6A3CF2D3B664 /* Resources */, ); buildRules = ( ); @@ -424,7 +427,7 @@ ); name = "CoreBluetoothMock-PrivacyInfo"; productName = PrivacyInfo; - productReference = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* CoreBluetoothMock-PrivacyInfo */; + productReference = 04D9EA8C73EABB8E0BF81D113DF79EE5 /* PrivacyInfo.bundle */; productType = "com.apple.product-type.bundle"; }; CD3FFBF5C2F9F871EAF22AF6B1B85B05 /* Pods-nRFBlinky-nRFBlinky_UITests */ = { @@ -439,11 +442,11 @@ buildRules = ( ); dependencies = ( - 648B37818036CCEB33F6483656845F90 /* PBXTargetDependency */, + 9D84E0272A46153BC850099359727015 /* PBXTargetDependency */, ); name = "Pods-nRFBlinky-nRFBlinky_UITests"; productName = Pods_nRFBlinky_nRFBlinky_UITests; - productReference = FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods-nRFBlinky-nRFBlinky_UITests */; + productReference = FA11D9D2A8BE1D25698FC4DB8F16C15D /* Pods_nRFBlinky_nRFBlinky_UITests.framework */; productType = "com.apple.product-type.framework"; }; D8DA31B307E5478D785EED0F0F084E24 /* Pods-nRFBlinky */ = { @@ -458,11 +461,11 @@ buildRules = ( ); dependencies = ( - 42002777112D44E6D1C3A8DDDACB5C0E /* PBXTargetDependency */, + 5AA5A3F03E35E2C7FDE1C3E70273E2E9 /* PBXTargetDependency */, ); name = "Pods-nRFBlinky"; productName = Pods_nRFBlinky; - productReference = B5ECDC42B563CFCA3D95087F11E165C9 /* Pods-nRFBlinky */; + productReference = B5ECDC42B563CFCA3D95087F11E165C9 /* Pods_nRFBlinky.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -471,8 +474,9 @@ BFDFE7DC352907FC980B868725387E98 /* Project object */ = { isa = PBXProject; attributes = { + BuildIndependentTargetsInParallel = YES; LastSwiftUpdateCheck = 1500; - LastUpgradeCheck = 1500; + LastUpgradeCheck = 1520; }; buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 12.0"; @@ -497,21 +501,22 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 116210F056F9B9E99EF787E2CF94E94C /* Resources */ = { + 05C9BBCA883D5452E77A6A3CF2D3B664 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 5AFC4A98AFC1C02D54EF6C1743E58B8F /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3077089641459C362C40B95FA05627BC /* Resources */ = { + 116210F056F9B9E99EF787E2CF94E94C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 76CB1E443ED1DC1147E883629F5A282A /* Resources */ = { + 3077089641459C362C40B95FA05627BC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -529,7 +534,7 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 48E12CE03EFDE5EE32325AD1A726786C /* CoreBluetoothMock-PrivacyInfo in Resources */, + 48E12CE03EFDE5EE32325AD1A726786C /* PrivacyInfo.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -560,6 +565,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E3A01817681CA4C53912A4AF40A744CF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; F298D8940C09A2FECD7DEABB49A891BC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -584,39 +596,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FF442FAD91F4F7C50E10EC2304B47C62 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 42002777112D44E6D1C3A8DDDACB5C0E /* PBXTargetDependency */ = { + 5AA5A3F03E35E2C7FDE1C3E70273E2E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CoreBluetoothMock; target = 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */; - targetProxy = 5BAC23A6401ED7FD6A908144BC52289D /* PBXContainerItemProxy */; + targetProxy = 7ACEB9113DE9EE191C645BDD80AAB5FB /* PBXContainerItemProxy */; + }; + 6964A461E8DB61E4424FC6F4350B68D6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-nRFBlinky"; + target = D8DA31B307E5478D785EED0F0F084E24 /* Pods-nRFBlinky */; + targetProxy = 2796844FFE55C8A053ACC8E2DB835503 /* PBXContainerItemProxy */; }; - 648B37818036CCEB33F6483656845F90 /* PBXTargetDependency */ = { + 9D84E0272A46153BC850099359727015 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CoreBluetoothMock; target = 5647B3702CC9BCAD6F81C5D3E7417452 /* CoreBluetoothMock */; - targetProxy = 1CF75A301DD37C73A59CD58F7A633D76 /* PBXContainerItemProxy */; + targetProxy = FE9350EF4CCC6E8D75BDCDB384FC1432 /* PBXContainerItemProxy */; }; - 65E8E4856ACF72404679D66A8B91741D /* PBXTargetDependency */ = { + FF2239BBD198EAEFE5DF17455C909EEF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "CoreBluetoothMock-PrivacyInfo"; target = A9A5DBAF5BD0A85F5EAAC4F6C8CAE589 /* CoreBluetoothMock-PrivacyInfo */; - targetProxy = BE75C12FBB0956B1942D41A58A6580E6 /* PBXContainerItemProxy */; - }; - 980D16D16C8AC372F1EA5F17B005F34C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-nRFBlinky"; - target = D8DA31B307E5478D785EED0F0F084E24 /* Pods-nRFBlinky */; - targetProxy = 67E4B48132FC1F42996283728E109E49 /* PBXContainerItemProxy */; + targetProxy = 0DEF4D1DDE8B74B16291B1E214E53CD3 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -627,14 +632,13 @@ buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGN_IDENTITY = ""; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -645,6 +649,8 @@ ); MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.modulemap"; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -665,14 +671,13 @@ buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGN_IDENTITY = ""; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -683,6 +688,8 @@ ); MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.modulemap"; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -701,6 +708,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; @@ -732,6 +740,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -755,7 +764,6 @@ MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; @@ -763,19 +771,35 @@ }; name = Debug; }; + 31EE782AED39690B59D9D8D3CA0AE960 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1AEE16136FD9875BBFF10BF7DB30FA51 /* CoreBluetoothMock.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CoreBluetoothMock"; + IBSC_MODULE = CoreBluetoothMock; + INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = PrivacyInfo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 54314D8EBB50D0FC917541C7D8126BEA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE1D04C54765744955007ABBF063D0A6 /* CoreBluetoothMock.release.xcconfig */; + baseConfigurationReference = 1AEE16136FD9875BBFF10BF7DB30FA51 /* CoreBluetoothMock.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGN_IDENTITY = ""; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -786,6 +810,8 @@ "@loader_path/Frameworks", ); MODULEMAP_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock.modulemap"; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; PRODUCT_MODULE_NAME = CoreBluetoothMock; PRODUCT_NAME = CoreBluetoothMock; SDKROOT = iphoneos; @@ -805,14 +831,13 @@ buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGN_IDENTITY = ""; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -823,6 +848,8 @@ ); MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests.modulemap"; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -839,17 +866,16 @@ }; 58D7002EDCE537470D44D0E6C1599012 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1DFCEBC6EC2184F171BCAF734E8340DB /* CoreBluetoothMock.debug.xcconfig */; + baseConfigurationReference = 8409362064B12D6ECCC60CBD78FAC959 /* CoreBluetoothMock.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGN_IDENTITY = ""; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; GCC_PREFIX_HEADER = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-prefix.pch"; INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -860,6 +886,8 @@ "@loader_path/Frameworks", ); MODULEMAP_FILE = "Target Support Files/CoreBluetoothMock/CoreBluetoothMock.modulemap"; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; PRODUCT_MODULE_NAME = CoreBluetoothMock; PRODUCT_NAME = CoreBluetoothMock; SDKROOT = iphoneos; @@ -876,6 +904,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; @@ -907,6 +936,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -926,7 +956,6 @@ MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 5.0; @@ -940,14 +969,13 @@ buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGN_IDENTITY = ""; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -958,6 +986,8 @@ ); MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky/Pods-nRFBlinky.modulemap"; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -971,9 +1001,9 @@ }; name = Debug; }; - 763E125DBB71B90FDEBF11399AA69072 /* Release */ = { + 6E0EF63D247435D4F3D3EB2B0B3B3EFB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE1D04C54765744955007ABBF063D0A6 /* CoreBluetoothMock.release.xcconfig */; + baseConfigurationReference = 8409362064B12D6ECCC60CBD78FAC959 /* CoreBluetoothMock.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CoreBluetoothMock"; @@ -986,7 +1016,7 @@ TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; CD60B9732E551D51A077B7142F4DE277 /* Debug */ = { isa = XCBuildConfiguration; @@ -994,14 +1024,13 @@ buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGN_IDENTITY = ""; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -1012,6 +1041,8 @@ ); MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky_Tests/Pods-nRFBlinky_Tests.modulemap"; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -1031,14 +1062,13 @@ buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGN_IDENTITY = ""; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; INFOPLIST_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; @@ -1049,6 +1079,8 @@ ); MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.modulemap"; + MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -1062,23 +1094,6 @@ }; name = Debug; }; - DB0731AD9A8296D014878ED72BCD170C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1DFCEBC6EC2184F171BCAF734E8340DB /* CoreBluetoothMock.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CoreBluetoothMock"; - IBSC_MODULE = CoreBluetoothMock; - INFOPLIST_FILE = "Target Support Files/CoreBluetoothMock/ResourceBundle-PrivacyInfo-CoreBluetoothMock-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = PrivacyInfo; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -1127,11 +1142,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D5E525E2DFE7EE98800D3CECC12556D7 /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */ = { + E30989980184E8B263CDC652759B48CA /* Build configuration list for PBXNativeTarget "CoreBluetoothMock-PrivacyInfo" */ = { isa = XCConfigurationList; buildConfigurations = ( - DB0731AD9A8296D014878ED72BCD170C /* Debug */, - 763E125DBB71B90FDEBF11399AA69072 /* Release */, + 6E0EF63D247435D4F3D3EB2B0B3B3EFB /* Debug */, + 31EE782AED39690B59D9D8D3CA0AE960 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/CoreBluetoothMock/PrivacyInfo.xcprivacy b/Example/PrivacyInfo.xcprivacy similarity index 100% rename from CoreBluetoothMock/PrivacyInfo.xcprivacy rename to Example/PrivacyInfo.xcprivacy diff --git a/Example/nRFBlinky.xcodeproj/project.pbxproj b/Example/nRFBlinky.xcodeproj/project.pbxproj index faf00f0..1fe4bb2 100644 --- a/Example/nRFBlinky.xcodeproj/project.pbxproj +++ b/Example/nRFBlinky.xcodeproj/project.pbxproj @@ -130,6 +130,7 @@ DE38B9C36EDC9D3F334FA8B0 /* Pods_nRFBlinky_nRFBlinky_UITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_nRFBlinky_nRFBlinky_UITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; DF2A391A629B418AF377967D /* CoreBluetoothMock.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CoreBluetoothMock.podspec; path = ../CoreBluetoothMock.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; EF952C1221D6FC1BB09999FC /* Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig"; path = "Target Support Files/Pods-nRFBlinky-nRFBlinky_UITests/Pods-nRFBlinky-nRFBlinky_UITests.release.xcconfig"; sourceTree = ""; }; + F04F4A2C2B839E67004E7942 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = ""; }; F0A6C9F129A9100200FA75EB /* AdvertisingTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdvertisingTest.swift; sourceTree = ""; }; F0A6C9F329ACA59A00FA75EB /* nRFBlinky.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = nRFBlinky.entitlements; path = nRFBlinky/nRFBlinky.entitlements; sourceTree = ""; }; /* End PBXFileReference section */ @@ -264,6 +265,7 @@ isa = PBXGroup; children = ( F0A6C9F329ACA59A00FA75EB /* nRFBlinky.entitlements */, + F04F4A2C2B839E67004E7942 /* PrivacyInfo.xcprivacy */, 607FACF51AFB993E008FA782 /* Podspec Metadata */, 607FACD21AFB9204008FA782 /* nRF Blinky Example */, 52A648EF240E83F000817F2F /* Tests */, diff --git a/PrivacyInfo.xcprivacy b/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..e4eb420 --- /dev/null +++ b/PrivacyInfo.xcprivacy @@ -0,0 +1,10 @@ + + + + + NSPrivacyAccessedAPITypes + + NSPrivacyTracking + + + From 1bafe329c9f1fce9a77972999f879032d932239e Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 16:51:27 +0100 Subject: [PATCH 13/14] Pod update --- Example/Podfile.lock | 2 +- Example/Pods/Manifest.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 746b13f..55a0b02 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - CoreBluetoothMock: 75689dc1f4e77eacc2aa1444cf2fe73ba8485e77 + CoreBluetoothMock: 9de570a29520ea4b1201b8d23a228fb950d12b61 PODFILE CHECKSUM: 0b65d3eb5c3b8364e0e8c102ccc0cee2258c07fb diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 746b13f..55a0b02 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - CoreBluetoothMock: 75689dc1f4e77eacc2aa1444cf2fe73ba8485e77 + CoreBluetoothMock: 9de570a29520ea4b1201b8d23a228fb950d12b61 PODFILE CHECKSUM: 0b65d3eb5c3b8364e0e8c102ccc0cee2258c07fb From 71bc15db739e8efe1e8d2206965781aeca459ee1 Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Mon, 19 Feb 2024 16:52:36 +0100 Subject: [PATCH 14/14] nRF Blinky version set to 1.5.0 --- Example/nRFBlinky.xcodeproj/project.pbxproj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Example/nRFBlinky.xcodeproj/project.pbxproj b/Example/nRFBlinky.xcodeproj/project.pbxproj index 1fe4bb2..33f383d 100644 --- a/Example/nRFBlinky.xcodeproj/project.pbxproj +++ b/Example/nRFBlinky.xcodeproj/project.pbxproj @@ -986,7 +986,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = nRFBlinky/nRFBlinky.entitlements; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = P3R8YQEV4L; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)"; @@ -998,7 +998,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.4.1; + MARKETING_VERSION = 1.5.0; MODULE_NAME = ExampleApp; PRODUCT_BUNDLE_IDENTIFIER = "com.nordicsemi.nrf-blinky"; PRODUCT_NAME = "nRF Blinky"; @@ -1018,7 +1018,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = nRFBlinky/nRFBlinky.entitlements; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = P3R8YQEV4L; ENABLE_USER_SCRIPT_SANDBOXING = NO; INFOPLIST_FILE = nRFBlinky/Info.plist; @@ -1029,7 +1029,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.4.1; + MARKETING_VERSION = 1.5.0; MODULE_NAME = ExampleApp; PRODUCT_BUNDLE_IDENTIFIER = "com.nordicsemi.nrf-blinky"; PRODUCT_NAME = "nRF Blinky";